fdroiddata/metadata/com.tmarki.comicmaker.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

46 lines
1.4 KiB
YAML

AntiFeatures:
- UpstreamNonFree
Categories:
- Graphics
License: GPL-3.0-only
WebSite: http://www.tmarki.com/apps
SourceCode: https://github.com/tmarki/android-rage-maker
IssueTracker: https://github.com/tmarki/android-rage-maker/issues
AutoName: Rage Maker
Description: |-
See the <a href="https://github.com/tmarki/android-rage-maker/blob/wiki/readme.md">README</a> about usage.
* Flexible number of panels (1-20)
* Pan and zoom the comic canvas, as well as image elements
* Undo and redo your moves
* Different text styles and sizes
* Save and share your creations
* Use drafts to save comics in progress
* Draw straight lines or free curves with different brush sizes and colors
* Keyboard shortcuts
* Over 200 built-in rage/meme faces
RepoType: git
Repo: https://github.com/tmarki/android-rage-maker
Builds:
- versionName: 1.5.4
versionCode: 33
commit: 320cd3606747
srclibs:
- MobAdMob@2d5736
- FinfAgent@v0.1
prebuild:
- echo "android.library.reference.1=$$FinfAgent$$" >> project.properties
- echo "android.library.reference.2=$$MobAdMob$$" >> project.properties
MaintainerNotes: |-
Commits seem to have little connection to versions. Currently there is a 1.5.6
on Google Play, no source code, and a 1.5.5 in git that materially changes
nothing since 1.5.4.
AutoUpdateMode: None
UpdateCheckMode: Static
CurrentVersion: 1.5.4
CurrentVersionCode: 33