fdroiddata/metadata/com.syncedsynapse.kore2.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

61 lines
1.6 KiB
YAML

AntiFeatures:
- NonFreeDep
Categories:
- Multimedia
License: Apache-2.0
WebSite: http://syncedsynapse.com/kore
SourceCode: https://github.com/SyncedSynapse/Kore
IssueTracker: https://github.com/SyncedSynapse/Kore/issues
Name: Kore (old version)
AutoName: Kore
Summary: Remote control for Kodi (XBMC)
Description: |-
Simple remote control for <a href="http://kodi.tv">Kodi</a>. In-app purchases (e.g. for
themes) are broken, since they require proprietary play- services to be
installed on the device and a special API key, which F-Droid cannot include.
This app wont see any updates because upstream switched it's package id to
https://f-droid.org/packages/org.xbmc.kore.
RepoType: git
Repo: https://github.com/SyncedSynapse/Kore
Builds:
- versionName: 0.9.1
versionCode: 3
commit: 7791f45829f6ced1562eb677e76f8a5ade86c1ad
subdir: app
gradle:
- yes
prebuild: echo "IAP_KEY 'foo'" >> ../gradle.properties
- versionName: 0.9.2
versionCode: 4
commit: 399d0db2ec835a61d8c747e6c197443b97c5c8a4
subdir: app
gradle:
- yes
prebuild: echo "IAP_KEY 'foo'" >> ../gradle.properties
- versionName: 1.0.0
versionCode: 5
commit: v1.0.0
subdir: app
gradle:
- yes
prebuild: echo "IAP_KEY 'foo'" >> ../gradle.properties
- versionName: 1.1.0
versionCode: 7
commit: v1.1.0
subdir: app
gradle:
- yes
prebuild: echo "IAP_KEY 'foo'" >> ../gradle.properties
ArchivePolicy: 0 versions
AutoUpdateMode: None
UpdateCheckMode: Static
CurrentVersion: 1.1.0
CurrentVersionCode: 7