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
37 lines
934 B
YAML
37 lines
934 B
YAML
Categories:
|
|
- Security
|
|
License: GPL-3.0-only
|
|
WebSite: https://android.ginkel.com
|
|
SourceCode: https://github.com/ginkel/hashit
|
|
IssueTracker: https://github.com/ginkel/hashit/issues
|
|
|
|
AutoName: Hash It!
|
|
Description: |-
|
|
Makes passwords based on a combination of the website address and a master key
|
|
so that every password is different. Using the share menu, the app either
|
|
creates or retrieves the password.
|
|
|
|
Compatible with the
|
|
<a href="https://addons.mozilla.org/en-US/firefox/addon/password-hasher">Password Hasher</a>
|
|
Firefox extension (licensed under MPL1.1)
|
|
|
|
RepoType: git
|
|
Repo: https://github.com/ginkel/hashit.git
|
|
|
|
Builds:
|
|
- versionName: 1.7.1
|
|
versionCode: 24
|
|
commit: v1.7.1
|
|
prebuild: mv lib/ libs/
|
|
|
|
- versionName: 1.7.2
|
|
versionCode: 25
|
|
commit: v1.7.2
|
|
maven: 'yes'
|
|
rm:
|
|
- lib/*
|
|
|
|
AutoUpdateMode: None
|
|
UpdateCheckMode: Tags
|
|
CurrentVersion: 1.7.2
|
|
CurrentVersionCode: 25
|