mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-22 13:48:58 +00:00
```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
44 lines
1.3 KiB
YAML
44 lines
1.3 KiB
YAML
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, there’s 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
|