Commit graph

7 commits

Author SHA1 Message Date
Licaon_Kter
6fd76db1f0 antiFeatures.yml - update texts 2024-07-22 16:05:37 +00:00
Alexander Ivanov
bf0c9e88ae Translated using Weblate (Ukrainian)
Currently translated at 100.0% (34 of 34 strings)

Translated using Weblate (Russian)

Currently translated at 100.0% (34 of 34 strings)

Translated using Weblate (English (United Kingdom))

Currently translated at 97.0% (33 of 34 strings)

Translated using Weblate (Ukrainian)

Currently translated at 97.0% (33 of 34 strings)

Translated using Weblate (Russian)

Currently translated at 100.0% (34 of 34 strings)

Translated using Weblate (English (United States))

Currently translated at 100.0% (34 of 34 strings)

Co-authored-by: Alexander Ivanov <saiv46.dev@gmail.com>
Translate-URL: https://hosted.weblate.org/projects/f-droid/anti-features/en_GB/
Translate-URL: https://hosted.weblate.org/projects/f-droid/anti-features/en_US/
Translate-URL: https://hosted.weblate.org/projects/f-droid/anti-features/ru/
Translate-URL: https://hosted.weblate.org/projects/f-droid/anti-features/uk/
Translation: F-Droid/Anti-Features
2024-03-07 14:54:25 +00:00
Nitai Sasson
e22b08ad27 add 'non-changeable' to NonFreeNet description 2024-02-21 12:02:01 +00:00
linsui
a83f50c352 add TetheredNet AF 2023-06-21 09:51:34 +00:00
Jochen Sprickerhof
4a18a6f361 Change antifeature icons to png 2023-05-16 14:11:53 +00:00
Hans-Christoph Steiner
29a3c9229f
standardize data formats for config/*.yml
This means mostly sorting by key:

for f in sorted(glob.glob('*.yml')) + sorted(glob.glob('[a-z]*/*.yml')):
    print(f)
    with open(f) as fp:
        data = yaml.safe_load(fp)
    with open(f, 'w') as fp:
        yaml.dump(data, fp, default_flow_style=False, sort_keys=True, allow_unicode=True)
2022-12-23 16:53:03 -08:00
Jochen Sprickerhof
1756265c0d
Add config data from Client for index-v2
With index-v2 we can configure a lot of data through the fdroiddata repo
that was hard coded in the client before. This is:

- anti features
- categories
- release channels
- name, description, icon of repo and archive

This is automatically converted with:

https://gitlab.com/jspricke/index-v2-convert/-/blob/main/convert_meta.py
2022-09-16 12:53:21 +02:00