mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-04-14 19:46:54 +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
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
Categories:
|
|
- Phone & SMS
|
|
- System
|
|
License: GPL-2.0-only
|
|
AuthorName: Sergey Yeriomin
|
|
SourceCode: https://github.com/yeriomin/DumbphoneAssistant
|
|
IssueTracker: https://github.com/yeriomin/DumbphoneAssistant/issues
|
|
Changelog: https://github.com/yeriomin/DumbphoneAssistant/releases
|
|
LiberapayID: '34895'
|
|
Bitcoin: 14HvYHKe6joHbQjVdAPd1Ha1yXaGS2pVTW
|
|
|
|
AutoName: Dumbphone Assistant
|
|
Description: |-
|
|
An android app which lets you copy contacts to your SIM card
|
|
|
|
Sometimes due to an emergency or simply because you are tired of the constant
|
|
pressure of a smartphone permanently connected to the internet, you need to use
|
|
an old phone. It is likely that the only way to move the contacts to it is the
|
|
SIM card storage. But built-in android contact manager lacks the ability to
|
|
write contacts to the SIM card. Thats when the Dumbphone Assistant comes in.
|
|
|
|
Dumbphone Assistant lets you copy contacts from phone to SIM card and vice-versa
|
|
in bulk and individually.
|
|
|
|
This app is a rewrite of <a href="https://code.google.com/p/simsalabim/">simsalabim</a>. It
|
|
was last updated in 2010, when Android 2.0 came out. Now it supports Android 1.5
|
|
through Android 6.0.
|
|
|
|
RepoType: git
|
|
Repo: https://github.com/yeriomin/DumbphoneAssistant
|
|
|
|
Builds:
|
|
- versionName: '0.1'
|
|
versionCode: 1
|
|
commit: v0.1
|
|
subdir: app
|
|
gradle:
|
|
- yes
|
|
|
|
- versionName: '0.11'
|
|
versionCode: 2
|
|
commit: v0.11
|
|
subdir: app
|
|
gradle:
|
|
- yes
|
|
|
|
- versionName: '0.3'
|
|
versionCode: 3
|
|
commit: v0.3
|
|
subdir: app
|
|
gradle:
|
|
- yes
|
|
|
|
- versionName: '0.4'
|
|
versionCode: 4
|
|
commit: v0.4
|
|
subdir: app
|
|
gradle:
|
|
- yes
|
|
|
|
- versionName: '0.5'
|
|
versionCode: 5
|
|
commit: v0.5
|
|
subdir: app
|
|
gradle:
|
|
- yes
|
|
|
|
AutoUpdateMode: Version v%v
|
|
UpdateCheckMode: Tags
|
|
CurrentVersion: '0.5'
|
|
CurrentVersionCode: 5
|