fdroiddata/metadata/com.gacode.relaunchx.yml
Hans-Christoph Steiner cf4e8a40ff convert all MediaWiki links to HTML links
```python
import yaml, glob, re, os
from fdroidserver import metadata

pat = re.compile(r'\[(https?://[^ \]]+)\s+([^\]]+)\]')

for f in glob.glob('metadata/*.yml'):
    with open(f) as fp:
        data = yaml.load(fp)
    description = data.get('Description', '')
    for m in pat.finditer(data.get('Description', '')):
        link = m.group(1)
        text = m.group(2)
        print(f, link, text, flush=True)
        description = description.replace(m.group(), '<a href="%s">%s</a>' % (link, text))
    data['Description'] = description
    app = metadata.App(data)
    metadata.write_metadata(f, app)
```

```
sed -i 's,^      - true,      - yes,' metadata/*.yml
sed -i 's,^      - false,      - no,' metadata/*.yml
```

closes fdroid-website#510
2020-12-09 19:10:44 +01:00

72 lines
1.8 KiB
YAML

Categories:
- System
License: GPL-2.0-only
SourceCode: https://github.com/Leszek111/ReLaunchX
IssueTracker: https://github.com/Leszek111/ReLaunchX/issues
Changelog: https://github.com/Leszek111/ReLaunchX#changelog
AutoName: ReLaunchX
Description: |-
Monochrome Launcher primarily intended for eInk and eBook devices. Can work as a
system launcher or a normal app. Includes file manager, text file viewer, editor
and some system functionality. It is a fork of https://f-droid.org/packages/com.harasoft.relaunch project
rebranded to avoid confusion. Tested on and developed for Onyx Boox Max, but
many other e-readers are supported as well. Discussion goes on the forum
<a href="https://www.mobileread.com/forums/showthread.php?t=284418">mobileread</a>.
RepoType: git
Repo: https://github.com/Leszek111/ReLaunchX.git
Builds:
- versionName: 1.3.1
versionCode: 100301000
commit: ReLaunchX_1.3.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.2
versionCode: 100302000
commit: ReLaunchX_1.3.2
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.0.0
versionCode: 200000000
commit: ReLaunchX_2.0.0
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.1.2
versionCode: 200102000
commit: ReLaunchX_2.1.2
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.1.3
versionCode: 200103000
commit: ReLaunchX_2.1.3
subdir: app
submodules: true
gradle:
- yes
- versionName: 2.1.5
versionCode: 200105000
commit: ReLaunchX_2.1.5
subdir: app
submodules: true
gradle:
- yes
AutoUpdateMode: Version ReLaunchX_%v
UpdateCheckMode: Tags ^ReLaunchX_
CurrentVersion: 2.1.5
CurrentVersionCode: 200105000