fdroiddata/metadata/amirz.rootless.nexuslauncher.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

44 lines
1.3 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Categories:
- System
- Theming
License: Apache-2.0
AuthorName: Amir Zaidi
AuthorEmail: azaidi@live.nl
WebSite: http://www.reddit.com/u/AmirZ
SourceCode: https://github.com/amirzaidi/Launcher3
IssueTracker: https://github.com/amirzaidi/Launcher3/issues
Changelog: https://github.com/amirzaidi/Launcher3/releases
AutoName: Rootless Pixel Launcher
Description: |-
''Pixel Launcher'' is a close to AOSP launcher that only changes the
necessary code to allow for small extensions and backporting to older
Android versions. If you want a more feature packed launcher use Nova,
Action or Lawnchair. ''Pixel Launcher'' is focused on simplicity and rock
solid stability.
Features include:
* Search bar at the bottom
* Wallpaper based theme selection
* Regular Icon Packs
* Adaptive Icon Packs, such as my Google Icons
* Icon Shape selection on Android 8.0
For Pixel users, theres also a
<a href="https://github.com/amirzaidi/launcher3magisk/releases">Magisk version</a>.
RepoType: git
Repo: https://github.com/amirzaidi/Launcher3.git
Builds:
- versionName: 3.9.1
versionCode: 30911
commit: Pixel-v3.9.1
gradle:
- aosp
AutoUpdateMode: Version Pixel-v%v
UpdateCheckMode: Tags Pixel-v.*[0-9]$
CurrentVersion: 3.9.1
CurrentVersionCode: 30911