- 09 Dec, 2020 1 commit
-
-
Hans-Christoph Steiner authored
```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
-
- 12 Nov, 2020 1 commit
-
-
Marcus authored
r12b has been forever the default. Let's explicitly request that version where we know we need it. Note; there's other builds that still implicitly rely on that version that don't use the buildjni flag. We don't really have a good way of finding those, except manually.
-
- 06 Nov, 2019 1 commit
-
-
Izzy authored
-
- 03 Oct, 2019 1 commit
-
-
Hans-Christoph Steiner authored
-
- 28 Sep, 2019 2 commits