From a9538bff375e299cdb2cb56e9d220be6585fd1df Mon Sep 17 00:00:00 2001 From: fossdd Date: Sat, 6 Mar 2021 18:58:08 +0000 Subject: [PATCH 001/103] Add check-fastlane-as-fallback tool --- tools/check-fastlane-as-fallback.py | 73 +++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 tools/check-fastlane-as-fallback.py diff --git a/tools/check-fastlane-as-fallback.py b/tools/check-fastlane-as-fallback.py new file mode 100644 index 000000000000..69f562018600 --- /dev/null +++ b/tools/check-fastlane-as-fallback.py @@ -0,0 +1,73 @@ +#!/usr/bin/env python3 +# pylint: disable=invalid-name + +""" +Check for every metadata if upstream provides fastlane metadata at the latest specified commit +If yes then remove description and summary from app metadata +""" + +import os +import re +import glob +import requests +import yaml + +for f in glob.glob("metadata/*.yml"): + with open(f) as fp: + data = yaml.safe_load(fp) + + if "Builds" not in data: + continue + if "Summary" not in data: + if "Description" not in data: + continue + if "Description" not in data: + if "Summary" not in data: + continue + + builds = data["Builds"] + latest_build = builds[len(builds) - 1] + if "commit" not in latest_build: + continue + latest_commit = latest_build["commit"] + if "Repo" not in data: + continue + repo = data["Repo"] + repo_domain_search = re.search( + r"([a-z0-9A-Z]\.)*[a-z0-9-]+\.([a-z0-9]{2,24})+(\.co\.([a-z0-9]{2,24})|\.([a-z0-9]{2,24}))*", # pylint: disable=line-too-long + repo, + ) + if not repo_domain_search: + continue + repo_domain = repo_domain_search.group() + + if repo_domain == "github.com": + check_url = ( + repo.replace(".git", "") + + "/tree/" + + latest_commit + + "/fastlane/metadata/android/en-US" + ) + + if repo_domain == "gitlab.com": + check_url = ( + repo.replace(".git", "") + + "/-/raw/" + + latest_commit + + "/fastlane/metadata/android/en-US" + ) + + if not check_url: + continue + + request = requests.get(check_url) + + if request.status_code == 200: + print(f) + with open(f, "w") as output: + if "Description" in data: + del data["Description"] + if "Summary" in data: + del data["Summary"] + output.write(yaml.dump(data)) + os.system("fdroid rewritemeta " + f[9:][:-4]) -- GitLab From 28383143e00a7dc6a5c48a09a58caa3e589b339b Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 10:56:27 +0000 Subject: [PATCH 002/103] check-fastlane-as-fallback: Check if full_description.txt exists instead of the fastlane folder Sometimes app only offers a fastlane dir with a icon, and not the description. --- tools/check-fastlane-as-fallback.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/check-fastlane-as-fallback.py b/tools/check-fastlane-as-fallback.py index 69f562018600..6dc3b1b64ad2 100644 --- a/tools/check-fastlane-as-fallback.py +++ b/tools/check-fastlane-as-fallback.py @@ -44,9 +44,9 @@ for f in glob.glob("metadata/*.yml"): if repo_domain == "github.com": check_url = ( repo.replace(".git", "") - + "/tree/" + + "/raw/" + latest_commit - + "/fastlane/metadata/android/en-US" + + "/fastlane/metadata/android/en-US/full_description.txt" ) if repo_domain == "gitlab.com": @@ -54,7 +54,7 @@ for f in glob.glob("metadata/*.yml"): repo.replace(".git", "") + "/-/raw/" + latest_commit - + "/fastlane/metadata/android/en-US" + + "/fastlane/metadata/android/en-US/full_description.txt" ) if not check_url: -- GitLab From 77e7b00853ba75dee1a285ebd4d101541d17ab54 Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 10:58:24 +0000 Subject: [PATCH 003/103] Make check-fastlane-as-fallback tool executable --- tools/check-fastlane-as-fallback.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 tools/check-fastlane-as-fallback.py diff --git a/tools/check-fastlane-as-fallback.py b/tools/check-fastlane-as-fallback.py old mode 100644 new mode 100755 -- GitLab From a4eeb5f521abbf8c8427b87cac963616360b3315 Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 15:59:00 +0000 Subject: [PATCH 004/103] check-fastlane-as-fallback: Also accept 302 as successfull answer --- tools/check-fastlane-as-fallback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-fastlane-as-fallback.py b/tools/check-fastlane-as-fallback.py index 6dc3b1b64ad2..4965765394ef 100755 --- a/tools/check-fastlane-as-fallback.py +++ b/tools/check-fastlane-as-fallback.py @@ -62,7 +62,7 @@ for f in glob.glob("metadata/*.yml"): request = requests.get(check_url) - if request.status_code == 200: + if (request.status_code == 200) or (request.status_code == 302): print(f) with open(f, "w") as output: if "Description" in data: -- GitLab From 00b02767a808bfbe7dc01931f6d3eef3d7d2aaed Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 15:59:59 +0000 Subject: [PATCH 005/103] check-fastlane-as-fallback: Fix check if check_url is None --- tools/check-fastlane-as-fallback.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/check-fastlane-as-fallback.py b/tools/check-fastlane-as-fallback.py index 4965765394ef..c36c0e638555 100755 --- a/tools/check-fastlane-as-fallback.py +++ b/tools/check-fastlane-as-fallback.py @@ -15,7 +15,7 @@ import yaml for f in glob.glob("metadata/*.yml"): with open(f) as fp: data = yaml.safe_load(fp) - + if "Builds" not in data: continue if "Summary" not in data: @@ -41,6 +41,8 @@ for f in glob.glob("metadata/*.yml"): continue repo_domain = repo_domain_search.group() + check_url = None + if repo_domain == "github.com": check_url = ( repo.replace(".git", "") -- GitLab From 545b91cceccab6164c9bed6410967d166774b333 Mon Sep 17 00:00:00 2001 From: Remmer Wilts Date: Fri, 5 Mar 2021 19:11:53 +0000 Subject: [PATCH 006/103] New App : Thor Browser --- metadata/threads.thor.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 metadata/threads.thor.yml diff --git a/metadata/threads.thor.yml b/metadata/threads.thor.yml new file mode 100644 index 000000000000..dc64a8af41fb --- /dev/null +++ b/metadata/threads.thor.yml @@ -0,0 +1,23 @@ +Categories: + - Connectivity +License: GPL-3.0-or-later +SourceCode: https://gitlab.com/remmer.wilts/thor +IssueTracker: https://gitlab.com/remmer.wilts/thor/issues + +AutoName: Thor Browser + +RepoType: git +Repo: https://gitlab.com/remmer.wilts/thor.git + +Builds: + - versionName: 0.6.9 + versionCode: 69 + commit: 0.6.9 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 0.6.9 +CurrentVersionCode: 69 -- GitLab From 2edd8e97ef79515ba66db61a366f051907b1e56e Mon Sep 17 00:00:00 2001 From: Redd Date: Fri, 5 Mar 2021 10:37:23 +0000 Subject: [PATCH 007/103] Change Changelog link from https://github.com/MarcusWolschon/osmeditor4android/blob/HEAD/CHANGELOG.txt to https://github.com/MarcusWolschon/osmeditor4android/releases --- metadata/de.blau.android.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/de.blau.android.yml b/metadata/de.blau.android.yml index cdd96251cca4..60d7ad61ecba 100644 --- a/metadata/de.blau.android.yml +++ b/metadata/de.blau.android.yml @@ -4,7 +4,7 @@ License: Apache-2.0 WebSite: http://vespucci.io/ SourceCode: https://github.com/MarcusWolschon/osmeditor4android IssueTracker: https://github.com/MarcusWolschon/osmeditor4android/issues -Changelog: https://github.com/MarcusWolschon/osmeditor4android/blob/HEAD/CHANGELOG.txt +Changelog: https://github.com/MarcusWolschon/osmeditor4android/releases AutoName: Vespucci Description: |- -- GitLab From c7ee9af909085d0c837f0ec7f5898004a2d409fe Mon Sep 17 00:00:00 2001 From: Michael Totschnig Date: Fri, 5 Mar 2021 13:41:13 +0100 Subject: [PATCH 008/103] Bug fix release 3.2.4.2 --- metadata/org.totschnig.myexpenses.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/metadata/org.totschnig.myexpenses.yml b/metadata/org.totschnig.myexpenses.yml index 73054b753fea..09b40253ecd8 100644 --- a/metadata/org.totschnig.myexpenses.yml +++ b/metadata/org.totschnig.myexpenses.yml @@ -1522,9 +1522,20 @@ Builds: prebuild: echo 'org.gradle.jvmargs=-Xmx1g' >> ../gradle.properties build: gradle :myExpenses:packageConscriptExternReleaseUniversalApk + - versionName: 3.2.4.2 + versionCode: 466 + commit: r466 + subdir: myExpenses + output: build/outputs/universal_apk/conscriptExternRelease/myExpenses-conscript-extern-release-universal-unsigned.apk + rm: + - mlkit + - tests + prebuild: echo 'org.gradle.jvmargs=-Xmx1g' >> ../gradle.properties + build: gradle :myExpenses:packageConscriptExternReleaseUniversalApk + MaintainerNotes: '* Ads: https://github.com/mtotschnig/MyExpenses/tree/b4237aabf8924614251d14fb18ce274ec0f934f7/myExpenses/src/main/java/org/totschnig/myexpenses/util/ads' AutoUpdateMode: None UpdateCheckMode: None -CurrentVersion: 3.2.4.1 -CurrentVersionCode: 465 +CurrentVersion: 3.2.4.2 +CurrentVersionCode: 466 -- GitLab From dae53cf6257202295867c3453d5b3eed53f4b59b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20Br=C3=BCckmann?= <64bit@posteo.de> Date: Mon, 22 Feb 2021 09:36:11 +0100 Subject: [PATCH 009/103] Please don't commit directly on master --- CONTRIBUTING.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fc2a9eb80790..b42371c7a152 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -95,6 +95,8 @@ to appear in our repository. * Check for CI errors once you have opened your Merge Request +* Please don't commit directly onto your `master` branch. Use a new branch instead. This makes merging much more easy and the correct jobs in CI will run. + ### After You Added Your App -- GitLab From 39aa5fd48d679de12e0b6b1bdc4fb4dd0afca381 Mon Sep 17 00:00:00 2001 From: FestplattenSchnitzel Date: Mon, 15 Feb 2021 18:07:43 +0000 Subject: [PATCH 010/103] Add ademar.textlauncher.yml --- metadata/ademar.textlauncher.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 metadata/ademar.textlauncher.yml diff --git a/metadata/ademar.textlauncher.yml b/metadata/ademar.textlauncher.yml new file mode 100644 index 000000000000..f826102dee51 --- /dev/null +++ b/metadata/ademar.textlauncher.yml @@ -0,0 +1,24 @@ +Categories: + - Theming +License: MIT +AuthorName: Ademar Alves de Oliveira +SourceCode: https://gitlab.com/ademar111190/textlauncher +IssueTracker: https://gitlab.com/ademar111190/textlauncher/-/issues + +AutoName: TextLauncher + +RepoType: git +Repo: https://gitlab.com/ademar111190/textlauncher.git + +Builds: + - versionName: 1.3.1 + versionCode: 7 + commit: 1.3.1 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 1.3.1 +CurrentVersionCode: 7 -- GitLab From 6ddb907957e7e770d3742842228721bd9bea8b78 Mon Sep 17 00:00:00 2001 From: Pierre Duchemin Date: Sat, 13 Feb 2021 15:41:31 -0500 Subject: [PATCH 011/103] improve sms forward description now using fastlane description --- metadata/com.pierreduchemin.smsforward.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/metadata/com.pierreduchemin.smsforward.yml b/metadata/com.pierreduchemin.smsforward.yml index b7725236d023..0d1c1cb06ee7 100644 --- a/metadata/com.pierreduchemin.smsforward.yml +++ b/metadata/com.pierreduchemin.smsforward.yml @@ -1,19 +1,11 @@ Categories: - Phone & SMS License: GPL-3.0-only +AuthorName: Pierre Duchemin SourceCode: https://gitlab.com/pierreduchemin/smsforward IssueTracker: https://gitlab.com/pierreduchemin/smsforward/issues AutoName: SMS Forward -Description: |- - SMS Forward is a simple app that allows you to redirect SMS. - - This application have been developed to bypass regional limitations. For - example, a service in country A requires a phone number from country A, - but your phone number is from country B. You ask a friend from country A - to install this app and you will be able to receive SMS from the service - in country B. However, since this is a pretty simple application, it can - also serve other purposes. RepoType: git Repo: https://gitlab.com/pierreduchemin/smsforward.git -- GitLab From 2fa68c42d0c49a8df987e32ae3e94c41cfbde1da Mon Sep 17 00:00:00 2001 From: fossdd Date: Sat, 13 Feb 2021 15:32:13 +0000 Subject: [PATCH 012/103] Add ua.bossly.tools.translit --- metadata/ua.bossly.tools.translit.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 metadata/ua.bossly.tools.translit.yml diff --git a/metadata/ua.bossly.tools.translit.yml b/metadata/ua.bossly.tools.translit.yml new file mode 100644 index 000000000000..94b43fbda2dc --- /dev/null +++ b/metadata/ua.bossly.tools.translit.yml @@ -0,0 +1,24 @@ +Categories: + - Internet +License: MIT +AuthorName: Oleg Baidalka +SourceCode: https://github.com/bossly/uaTranslit +IssueTracker: https://github.com/bossly/uaTranslit/issues + +AutoName: uaTranslit + +RepoType: git +Repo: https://github.com/bossly/uaTranslit.git + +Builds: + - versionName: 1.2.1 + versionCode: 1 + commit: v1.2.1 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags +CurrentVersion: 1.2.1 +CurrentVersionCode: 1 -- GitLab From 09f47dee619dc3afd9c08dcd4473203b0f4f93d8 Mon Sep 17 00:00:00 2001 From: fossdd Date: Tue, 26 Jan 2021 18:31:59 +0000 Subject: [PATCH 013/103] Fix commenting full Template --- templates/app-full | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/app-full b/templates/app-full index 7b5b76bd25ec..1b56823507c5 100644 --- a/templates/app-full +++ b/templates/app-full @@ -8,7 +8,7 @@ # # Single-line fields start right after the colon (with a whitespace). -Categories: (use those which apply) +Categories: # Use those which apply - Connectivity - Development - Games -- GitLab From 343d581a1daab8b23ed8efa1cbcb6a1e282b61cb Mon Sep 17 00:00:00 2001 From: fossdd Date: Tue, 26 Jan 2021 16:24:18 +0000 Subject: [PATCH 014/103] Fix url of changelog --- metadata/de.drhoffmannsoftware.calcvac.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/de.drhoffmannsoftware.calcvac.yml b/metadata/de.drhoffmannsoftware.calcvac.yml index 3549f367777e..7530b3c47fca 100644 --- a/metadata/de.drhoffmannsoftware.calcvac.yml +++ b/metadata/de.drhoffmannsoftware.calcvac.yml @@ -3,7 +3,7 @@ Categories: License: GPL-2.0-only SourceCode: https://codeberg.org/kollo/Calcvac-Android IssueTracker: https://codeberg.org/kollo/Calcvac-Android/issues -Changelog: https://codeberg.org/kollo/Calcvac-Android/blob/HEAD/CHANGELOG +Changelog: https://codeberg.org/kollo/Calcvac-Android/src/branch/master/CHANGELOG AutoName: Calcvac Description: |- -- GitLab From b57412b4e8a75e4047218588fac34e0e99961877 Mon Sep 17 00:00:00 2001 From: david-allison-1 Date: Fri, 22 Jan 2021 06:19:44 +0000 Subject: [PATCH 015/103] Add Open Collective link The link is the same as displayed in upstream GitHub repository --- metadata/com.ichi2.anki.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata/com.ichi2.anki.yml b/metadata/com.ichi2.anki.yml index 8935b6f786c5..3756486aa9ff 100644 --- a/metadata/com.ichi2.anki.yml +++ b/metadata/com.ichi2.anki.yml @@ -10,6 +10,7 @@ SourceCode: https://github.com/ankidroid/Anki-Android IssueTracker: https://github.com/ankidroid/Anki-Android/issues Translation: http://crowdin.net/project/ankidroid Changelog: https://ankidroid.org/docs/changelog.html +OpenCollective: ankidroid AutoName: AnkiDroid Description: |- -- GitLab From 757f95256159aa26e913681b467d00d8b4d31690 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:41:54 +0000 Subject: [PATCH 016/103] Update PCAPdroid to 1.3.0 (20) --- metadata/com.emanuelef.remote_capture.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/metadata/com.emanuelef.remote_capture.yml b/metadata/com.emanuelef.remote_capture.yml index d6b18e2cdd62..0fd8c8ab82d6 100644 --- a/metadata/com.emanuelef.remote_capture.yml +++ b/metadata/com.emanuelef.remote_capture.yml @@ -66,7 +66,20 @@ Builds: output: app/build/outputs/apk/release/app-release-unsigned.apk ndk: r22 + - versionName: 1.3.0 + versionCode: 20 + commit: v1.3.0 + submodules: true + sudo: + - apt-get update || apt-get update + - apt-get install -y build-essential libpcap-dev autogen libjson-c-dev libnuma-dev + libpcre2-dev + gradle: + - yes + output: app/build/outputs/apk/release/app-release-unsigned.apk + ndk: r22 + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 1.2.16 -CurrentVersionCode: 19 +CurrentVersion: 1.3.0 +CurrentVersionCode: 20 -- GitLab From ceb4ae2f8a2f4f91798c4607f15c11d7ad8f95e5 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:51:53 +0000 Subject: [PATCH 017/103] Update Converter NOW to 2.5.0 (26) --- metadata/com.ferrarid.converterpro.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/metadata/com.ferrarid.converterpro.yml b/metadata/com.ferrarid.converterpro.yml index 9bf0ef78029f..8160b09bf0d9 100644 --- a/metadata/com.ferrarid.converterpro.yml +++ b/metadata/com.ferrarid.converterpro.yml @@ -48,8 +48,19 @@ Builds: - $$flutter$$/bin/flutter config --no-analytics - $$flutter$$/bin/flutter build apk + - versionName: 2.5.0 + versionCode: 26 + commit: v2.5.0 + output: build/app/outputs/flutter-apk/app-release.apk + srclibs: + - flutter@1.22.5 + prebuild: sed -i -e 's/signingConfig signingConfigs.release//' android/app/build.gradle + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter build apk + AutoUpdateMode: Version v%v UpdateCheckMode: HTTP UpdateCheckData: https://github.com/ferraridamiano/ConverterNOW/raw/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ -CurrentVersion: 2.4.3 -CurrentVersionCode: 25 +CurrentVersion: 2.5.0 +CurrentVersionCode: 26 -- GitLab From 3f3fd1329761b69a4484e54ec57f532bc9a0fe21 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:18:36 +0000 Subject: [PATCH 018/103] Update Yaga to 0.22.3 (2203) --- metadata/com.github.vauvenal5.yaga.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/metadata/com.github.vauvenal5.yaga.yml b/metadata/com.github.vauvenal5.yaga.yml index 5de8054254de..899cb3a63b0d 100644 --- a/metadata/com.github.vauvenal5.yaga.yml +++ b/metadata/com.github.vauvenal5.yaga.yml @@ -194,8 +194,21 @@ Builds: - $$flutter$$/bin/flutter pub run build_runner build --delete-conflicting-outputs - $$flutter$$/bin/flutter build apk --flavor fdroid + - versionName: 0.22.3 + versionCode: 2203 + commit: v0.22.3 + output: build/app/outputs/flutter-apk/app-fdroid-release.apk + srclibs: + - flutter@1.22.4 + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter pub get + - $$flutter$$/bin/flutter pub run flutter_launcher_icons:main + - $$flutter$$/bin/flutter pub run build_runner build --delete-conflicting-outputs + - $$flutter$$/bin/flutter build apk --flavor fdroid + AutoUpdateMode: Version v%v UpdateCheckMode: HTTP UpdateCheckData: https://raw.githubusercontent.com/vauvenal5/yaga/master/pubspec.yaml|version:\s\d+\.\d+\.\d+\+(\d+)|.|version:\s(\d+\.\d+\.\d+)\+\d+ -CurrentVersion: 0.22.2 -CurrentVersionCode: 2202 +CurrentVersion: 0.22.3 +CurrentVersionCode: 2203 -- GitLab From 1ae2be691f851b545a908713833db0ad7058164f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:31:06 +0000 Subject: [PATCH 019/103] Update Pulse Music to 4.1.0 (210040100) --- metadata/com.hardcodecoder.pulsemusic.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.hardcodecoder.pulsemusic.yml b/metadata/com.hardcodecoder.pulsemusic.yml index 935e1f4e5ec9..d4241b81affc 100644 --- a/metadata/com.hardcodecoder.pulsemusic.yml +++ b/metadata/com.hardcodecoder.pulsemusic.yml @@ -26,7 +26,14 @@ Builds: gradle: - yes + - versionName: 4.1.0 + versionCode: 210040100 + commit: v4.1.0 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 4.0.6 -CurrentVersionCode: 210040006 +CurrentVersion: 4.1.0 +CurrentVersionCode: 210040100 -- GitLab From cc17f2f77cbad2861b64b1119b9d16d9ff4f4b14 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:11:17 +0000 Subject: [PATCH 020/103] Set autoname of Text Launcher --- metadata/ademar.textlauncher.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/ademar.textlauncher.yml b/metadata/ademar.textlauncher.yml index f826102dee51..6d1164b867ed 100644 --- a/metadata/ademar.textlauncher.yml +++ b/metadata/ademar.textlauncher.yml @@ -5,7 +5,7 @@ AuthorName: Ademar Alves de Oliveira SourceCode: https://gitlab.com/ademar111190/textlauncher IssueTracker: https://gitlab.com/ademar111190/textlauncher/-/issues -AutoName: TextLauncher +AutoName: Text Launcher RepoType: git Repo: https://gitlab.com/ademar111190/textlauncher.git -- GitLab From e4a868d23a4019738848fcf662e1d566eb8bfcae Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:02:05 +0000 Subject: [PATCH 021/103] Update LBRY to 0.16.15 (16153) --- metadata/io.lbry.browser.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/metadata/io.lbry.browser.yml b/metadata/io.lbry.browser.yml index 92994041ada8..b19a9986615f 100644 --- a/metadata/io.lbry.browser.yml +++ b/metadata/io.lbry.browser.yml @@ -229,6 +229,17 @@ Builds: prebuild: sed -r "s:29.0.1:29.0.2:" -i build.gradle ndk: r21d + - versionName: 0.16.15 + versionCode: 16153 + commit: v0.16.15-fdroid + subdir: app + gradle: + - __32bit + rm: + - .gitsecret/keys/random_seed + prebuild: sed -r "s:29.0.1:29.0.2:" -i build.gradle + ndk: r21d + MaintainerNotes: |- +0: - (upstream) +1: armv7 (CV) @@ -239,4 +250,4 @@ AutoUpdateMode: Version v%v-fdroid UpdateCheckMode: Tags v\d+.\d+.\d+[a-z]?-fdroid VercodeOperation: '%c*10 + 3' CurrentVersion: 0.16.15 -CurrentVersionCode: 16151 +CurrentVersionCode: 16153 -- GitLab From 717527f8967653c2fbcaa910192b9a51497d60b0 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:07:05 +0000 Subject: [PATCH 022/103] Update Treehouses Remote to 6072 (6072) --- metadata/io.treehouses.remote.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/io.treehouses.remote.yml b/metadata/io.treehouses.remote.yml index a4e561f6a6b6..bd0b73703312 100644 --- a/metadata/io.treehouses.remote.yml +++ b/metadata/io.treehouses.remote.yml @@ -515,10 +515,18 @@ Builds: output: app/build/outputs/apk/release/remote-$$VERSION$$.apk ndk: r21d + - versionName: '6072' + versionCode: 6072 + commit: fdroid-6072 + gradle: + - yes + output: app/build/outputs/apk/release/remote-$$VERSION$$.apk + ndk: r21d + MaintainerNotes: The root build.gradle contains custom code that uses relative paths. Thus we cannot apply subdir. AutoUpdateMode: Version fdroid-%v UpdateCheckMode: Tags fdroid-[0-9]+ -CurrentVersion: '6071' -CurrentVersionCode: 6071 +CurrentVersion: '6072' +CurrentVersionCode: 6072 -- GitLab From a76d2ce90e449182c5caed02fa92617c0a21fd31 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:32:09 +0000 Subject: [PATCH 023/103] Update Feeder to 1.10.14 (94) --- metadata/com.nononsenseapps.feeder.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/metadata/com.nononsenseapps.feeder.yml b/metadata/com.nononsenseapps.feeder.yml index 13caa6488e1d..58cedd871da2 100644 --- a/metadata/com.nononsenseapps.feeder.yml +++ b/metadata/com.nononsenseapps.feeder.yml @@ -789,7 +789,18 @@ Builds: - graphics prebuild: echo 'org.gradle.jvmargs=-Xmx1g' >> ../gradle.properties + - versionName: 1.10.14 + versionCode: 94 + commit: 1.10.14 + subdir: app + submodules: true + gradle: + - yes + rm: + - graphics + prebuild: echo 'org.gradle.jvmargs=-Xmx1g' >> ../gradle.properties + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.10.13 -CurrentVersionCode: 93 +CurrentVersion: 1.10.14 +CurrentVersionCode: 94 -- GitLab From a5d41070a41657f6f757a42598fa0d68594cea49 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:52:17 +0000 Subject: [PATCH 024/103] Update CurrentVersion of Podverse to 2.9.3 (1) --- metadata/com.podverse.fdroid.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/metadata/com.podverse.fdroid.yml b/metadata/com.podverse.fdroid.yml index 116e9ba4fdcf..d83351d5f392 100644 --- a/metadata/com.podverse.fdroid.yml +++ b/metadata/com.podverse.fdroid.yml @@ -126,5 +126,5 @@ Builds: AutoUpdateMode: None UpdateCheckMode: Tags -CurrentVersion: 3.0.2 -CurrentVersionCode: 3 +CurrentVersion: 2.9.3 +CurrentVersionCode: 1 -- GitLab From 78c9be89d4b42404fa29b311326a096c7b849ab5 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:17:14 +0000 Subject: [PATCH 025/103] Update beat-game to 0.4.0 (4) --- metadata/com.serwylo.beatgame.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.serwylo.beatgame.yml b/metadata/com.serwylo.beatgame.yml index 91a90a7e22f9..3e9d4841cb1f 100644 --- a/metadata/com.serwylo.beatgame.yml +++ b/metadata/com.serwylo.beatgame.yml @@ -31,7 +31,14 @@ Builds: gradle: - yes + - versionName: 0.4.0 + versionCode: 4 + commit: v0.4.0 + subdir: android + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 0.3.0 -CurrentVersionCode: 3 +CurrentVersion: 0.4.0 +CurrentVersionCode: 4 -- GitLab From 993f77dab21be47e82ad849c6cbf2b6559dbde3f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:24:23 +0000 Subject: [PATCH 026/103] Update Simple File Manager Pro to 6.8.7 (102) --- metadata/com.simplemobiletools.filemanager.pro.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/metadata/com.simplemobiletools.filemanager.pro.yml b/metadata/com.simplemobiletools.filemanager.pro.yml index 924b24e3101e..435b6bfb3950 100644 --- a/metadata/com.simplemobiletools.filemanager.pro.yml +++ b/metadata/com.simplemobiletools.filemanager.pro.yml @@ -316,7 +316,16 @@ Builds: gradle: - yes + - versionName: 6.8.7 + versionCode: 102 + commit: 6.8.7 + subdir: app + patch: + - build.patch + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 6.8.6 -CurrentVersionCode: 101 +CurrentVersion: 6.8.7 +CurrentVersionCode: 102 -- GitLab From 767eb9eed6f23037211f0c5f27a5a28968978272 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:27:47 +0000 Subject: [PATCH 027/103] Update Voice Recorder to 5.5.0 (12) --- metadata/com.simplemobiletools.voicerecorder.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/com.simplemobiletools.voicerecorder.yml b/metadata/com.simplemobiletools.voicerecorder.yml index 515ecc7a528e..a2f891533a0f 100644 --- a/metadata/com.simplemobiletools.voicerecorder.yml +++ b/metadata/com.simplemobiletools.voicerecorder.yml @@ -89,7 +89,15 @@ Builds: - yes prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle + - versionName: 5.5.0 + versionCode: 12 + commit: 5.5.0 + subdir: app + gradle: + - yes + prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 5.4.1 -CurrentVersionCode: 11 +CurrentVersion: 5.5.0 +CurrentVersionCode: 12 -- GitLab From f183979e793010da4e5b3cf67169069c5bab2046 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:31:00 +0000 Subject: [PATCH 028/103] Update Greentooth to 1.12 (5) --- metadata/com.smilla.greentooth.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.smilla.greentooth.yml b/metadata/com.smilla.greentooth.yml index 1fab4d2d396a..fb72399fc937 100644 --- a/metadata/com.smilla.greentooth.yml +++ b/metadata/com.smilla.greentooth.yml @@ -40,7 +40,14 @@ Builds: gradle: - yes + - versionName: '1.12' + versionCode: 5 + commit: v1.12 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? -CurrentVersion: '1.11' -CurrentVersionCode: 4 +CurrentVersion: '1.12' +CurrentVersionCode: 5 -- GitLab From e2806679a91b5f43ac0c8489ff296caf97a909a4 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:49:45 +0000 Subject: [PATCH 029/103] Update com.swordfish.lemuroid to 1.9.1 (114) --- metadata/com.swordfish.lemuroid.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/com.swordfish.lemuroid.yml b/metadata/com.swordfish.lemuroid.yml index 2199b8e728b7..dac6e086d1c5 100644 --- a/metadata/com.swordfish.lemuroid.yml +++ b/metadata/com.swordfish.lemuroid.yml @@ -48,7 +48,17 @@ Builds: scandelete: - lemuroid-cores/src/main/jniLibs + - versionName: 1.9.1 + versionCode: 114 + commit: 1.9.1 + subdir: lemuroid-app + submodules: true + gradle: + - free + scandelete: + - lemuroid-cores/src/main/jniLibs + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.9.0 -CurrentVersionCode: 110 +CurrentVersion: 1.9.1 +CurrentVersionCode: 114 -- GitLab From 97739c8d32cad03564539294808e9288ca069a0a Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:53:44 +0000 Subject: [PATCH 030/103] Update AG Store to 0.2.1 (3) --- metadata/org.strawberryforum.argentum.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/org.strawberryforum.argentum.yml b/metadata/org.strawberryforum.argentum.yml index e43cf133e0d9..ff32c8899ffc 100644 --- a/metadata/org.strawberryforum.argentum.yml +++ b/metadata/org.strawberryforum.argentum.yml @@ -21,7 +21,14 @@ Builds: gradle: - yes + - versionName: 0.2.1 + versionCode: 3 + commit: 0.2.1 + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: '0.2' -CurrentVersionCode: 2 +CurrentVersion: 0.2.1 +CurrentVersionCode: 3 -- GitLab From 9b1b88831d198c30bb6c1dd9583251b462ba928f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:30:18 +0000 Subject: [PATCH 031/103] Update de.corona.tracing to 1.13.2.0 (1130200) --- metadata/de.corona.tracing.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/metadata/de.corona.tracing.yml b/metadata/de.corona.tracing.yml index 3c2fa921bf7b..d7c141efdf2c 100644 --- a/metadata/de.corona.tracing.yml +++ b/metadata/de.corona.tracing.yml @@ -108,6 +108,20 @@ Builds: - protobuf/build ndk: r21d + - versionName: 1.13.2.0 + versionCode: 1130200 + commit: v1.13.2.0 + subdir: Corona-Warn-App + gradle: + - device + prebuild: sed -i -e 's/21.2.6472646/21.3.6528147/' build.gradle + scanignore: + - Corona-Warn-App/src/main/assets/default_app_config.bin + - Corona-Warn-App/src/main/assets/default_app_config_android.bin + scandelete: + - protobuf/build + ndk: r21d + MaintainerNotes: |- scanignored are some protobuf encoded config files, view them with: protoc --decode de.rki.coronawarnapp.server.protocols.internal.ApplicationConfiguration Server-Protocol-Buffer/src/main/proto/internal/app_config.proto \ @@ -118,5 +132,5 @@ MaintainerNotes: |- AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+\.\d+\.\d+$ -CurrentVersion: 1.12.0.0 -CurrentVersionCode: 1120005 +CurrentVersion: 1.13.2.0 +CurrentVersionCode: 1130200 -- GitLab From ca62de6d11e2fa844dd78350b61d4aa5923988db Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:32:16 +0000 Subject: [PATCH 032/103] Update Tasks to 11.6 (110602) --- metadata/org.tasks.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/metadata/org.tasks.yml b/metadata/org.tasks.yml index b5ba036e80d0..7d2876f4b819 100644 --- a/metadata/org.tasks.yml +++ b/metadata/org.tasks.yml @@ -1935,10 +1935,25 @@ Builds: gradleprops: - tasks_mapbox_key="pk.eyJ1IjoiYmFrZXJiYSIsImEiOiJjanUxZG51dDUwMGttNDlvN3p3cHZzaXB3In0.1UWYV5dhTKiw_MkHNkA1jA" + - versionName: '11.6' + versionCode: 110602 + commit: '11.6' + subdir: app + submodules: true + gradle: + - generic + prebuild: + - sed -i -e '/com.google.gms/d' -e '/firebase-crashlytics-gradle/d' ../build.gradle.kts + - sed -i -e '/com.google.firebase.crashlytics/d' -e '/googleplayImplementation(.*) + {/,/}/d; /googleplayImplementation/d' -e '/com.google.gms/d' -e '/signingConfig + =/d' -e '/firebaseCrashlytics {/,/}/d;' build.gradle.kts + gradleprops: + - tasks_mapbox_key="pk.eyJ1IjoiYmFrZXJiYSIsImEiOiJjanUxZG51dDUwMGttNDlvN3p3cHZzaXB3In0.1UWYV5dhTKiw_MkHNkA1jA" + MaintainerNotes: Upstream releases multiple version with changed vercode. Looks like repushing tags. AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 11.5.1 -CurrentVersionCode: 110501 +CurrentVersion: '11.6' +CurrentVersionCode: 110602 -- GitLab From 051aff4410d4e9889c26e29dcb2e3a49d1af02f4 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:34:29 +0000 Subject: [PATCH 033/103] Update Your local weather to 5.7.1 (140) --- metadata/org.thosp.yourlocalweather.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/org.thosp.yourlocalweather.yml b/metadata/org.thosp.yourlocalweather.yml index 6d4d7e2f4a0c..c1ae5ed43538 100644 --- a/metadata/org.thosp.yourlocalweather.yml +++ b/metadata/org.thosp.yourlocalweather.yml @@ -716,7 +716,14 @@ Builds: gradle: - yes + - versionName: 5.7.1 + versionCode: 140 + commit: v5.7.1 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 5.7.0 -CurrentVersionCode: 139 +CurrentVersion: 5.7.1 +CurrentVersionCode: 140 -- GitLab From 55673093a0757d8411c955b90092a5d834490516 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:40:17 +0000 Subject: [PATCH 034/103] Set autoname of NoProvider2Push --- metadata/org.unifiedpush.distributor.noprovider2push.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata/org.unifiedpush.distributor.noprovider2push.yml b/metadata/org.unifiedpush.distributor.noprovider2push.yml index 46d937f3005e..68f4cbcd0311 100644 --- a/metadata/org.unifiedpush.distributor.noprovider2push.yml +++ b/metadata/org.unifiedpush.distributor.noprovider2push.yml @@ -10,6 +10,7 @@ Changelog: https://github.com/NoProvider2Push/android/releases Liberapay: S1m Name: NoProvider2Push +AutoName: NoProvider2Push RepoType: git Repo: https://github.com/NoProvider2Push/android.git -- GitLab From 77e887fca8651d98c165667673c1cf032ea228db Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:33:36 +0000 Subject: [PATCH 035/103] Update Manyverse to 0.2103.5-beta-fdroid (96) --- metadata/se.manyver.yml | 49 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/metadata/se.manyver.yml b/metadata/se.manyver.yml index 63bdfb8ccb3c..e436806040dd 100644 --- a/metadata/se.manyver.yml +++ b/metadata/se.manyver.yml @@ -1545,11 +1545,56 @@ Builds: - npm run build-android-assets ndk: r21d + - versionName: 0.2103.5-beta-fdroid-fdroid + versionCode: 96 + commit: v0.2103.5-beta-fdroid + timeout: 30000 + subdir: android/app + sudo: + - apt-get update || apt-get update + - apt-get install -y --no-install-recommends g++ lib32stdc++-6-dev libc6-dev-i386 + ninja-build linux-libc-dev linux-libc-dev:i386 + - curl -Lo node.tar.xz https://nodejs.org/dist/v12.16.3/node-v12.16.3-linux-x64.tar.xz + - echo "1956e196e3c3c8ef5f0c45db76d7c1245af4ccdda2b7ab30a57ce91d6e165caa node.tar.xz" + | sha256sum -c - + - tar xJf node.tar.xz + - cp -a node-v12.16.3-linux-x64/. /usr/local/ + - npm install -g react-native-cli + init: npm install --no-optional + patch: + - build.patch + gradle: + - fdroid + srclibs: + - NodejsMobile@nodejs-mobile-v0.3.1 + rm: + - node_modules/react-native/ReactAndroid/src/main/third-party/java/buck-android-support/buck-android-support.jar + - node_modules/react-native/template/ + - e2e/apple-app-store-demo + prebuild: sed -i -e '/lifecycle/d' ../build.gradle + scanignore: + - android/build.gradle + - node_modules/@react-native-community/async-storage/android/build.gradle + - node_modules/react-native-localize/android/build.gradle + - node_modules/react-native/android + - node_modules/jsc-android + scandelete: + - node_modules + build: + - pushd $$NodejsMobile$$ + - ./tools/android_build.sh $$NDK$$ arm + - ./tools/android_build.sh $$NDK$$ arm64 + - popd + - mv $$NodejsMobile$$/out_android/armeabi-v7a/libnode.so ../../node_modules/nodejs-mobile-react-native/android/libnode/bin/armeabi-v7a/libnode.so + - mv $$NodejsMobile$$/out_android/arm64-v8a/libnode.so ../../node_modules/nodejs-mobile-react-native/android/libnode/bin/arm64-v8a/libnode.so + - npm run build-android-assets + ndk: r21d + MaintainerNotes: scanignore is used to allow the "node_modules/react-native/android" local Maven repository which contains the prebuilt react-native library which we get from npm. AutoUpdateMode: Version +-fdroid v%v UpdateCheckMode: Tags -CurrentVersion: 0.2101.5-beta-fdroid -CurrentVersionCode: 95 +CurrentVersion: 0.2103.5-beta-fdroid +CurrentVersionCode: 96 -- GitLab From 3b3102786447ef2480811de54b9c5a909620a24b Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:44:34 +0000 Subject: [PATCH 036/103] Update Thor to 0.7.0 (70) --- metadata/threads.thor.yml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/metadata/threads.thor.yml b/metadata/threads.thor.yml index dc64a8af41fb..a326c9ee2cde 100644 --- a/metadata/threads.thor.yml +++ b/metadata/threads.thor.yml @@ -4,7 +4,7 @@ License: GPL-3.0-or-later SourceCode: https://gitlab.com/remmer.wilts/thor IssueTracker: https://gitlab.com/remmer.wilts/thor/issues -AutoName: Thor Browser +AutoName: Thor RepoType: git Repo: https://gitlab.com/remmer.wilts/thor.git @@ -17,7 +17,14 @@ Builds: gradle: - yes + - versionName: 0.7.0 + versionCode: 70 + commit: 0.7.0 + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 0.6.9 -CurrentVersionCode: 69 +CurrentVersion: 0.7.0 +CurrentVersionCode: 70 -- GitLab From fc6770d3d6b443afe151c6d97f99fd2f96c457cf Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:49:37 +0000 Subject: [PATCH 037/103] =?UTF-8?q?Set=20autoname=20of=20=D0=A2=D1=80?= =?UTF-8?q?=D0=B0=D0=BD=D1=81=D0=BB=D1=96=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- metadata/ua.bossly.tools.translit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/ua.bossly.tools.translit.yml b/metadata/ua.bossly.tools.translit.yml index 94b43fbda2dc..5ffba36986b8 100644 --- a/metadata/ua.bossly.tools.translit.yml +++ b/metadata/ua.bossly.tools.translit.yml @@ -5,7 +5,7 @@ AuthorName: Oleg Baidalka SourceCode: https://github.com/bossly/uaTranslit IssueTracker: https://github.com/bossly/uaTranslit/issues -AutoName: uaTranslit +AutoName: Трансліт RepoType: git Repo: https://github.com/bossly/uaTranslit.git -- GitLab From 5ed07a9a03192f7d6f6b4772a77daf1ac571a29f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:59:12 +0000 Subject: [PATCH 038/103] Update OSM Dashboard for OpenTracks to 2.10.0 (22) --- metadata/de.storchp.opentracks.osmplugin.offline.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/metadata/de.storchp.opentracks.osmplugin.offline.yml b/metadata/de.storchp.opentracks.osmplugin.offline.yml index 45e9e10352f2..336a451118b3 100644 --- a/metadata/de.storchp.opentracks.osmplugin.offline.yml +++ b/metadata/de.storchp.opentracks.osmplugin.offline.yml @@ -38,7 +38,13 @@ Builds: gradle: - offline + - versionName: 2.10.0 + versionCode: 22 + commit: v2.10.0 + gradle: + - offline + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 2.9.0 -CurrentVersionCode: 21 +CurrentVersion: 2.10.0 +CurrentVersionCode: 22 -- GitLab From e73e36eaa277169ade403f02f4d0248e48ba0afd Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:59:26 +0000 Subject: [PATCH 039/103] Update OSM Dashboard for OpenTracks to 2.10.0 (22) --- metadata/de.storchp.opentracks.osmplugin.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/metadata/de.storchp.opentracks.osmplugin.yml b/metadata/de.storchp.opentracks.osmplugin.yml index 0beecd8cdedf..2fd62dd04002 100644 --- a/metadata/de.storchp.opentracks.osmplugin.yml +++ b/metadata/de.storchp.opentracks.osmplugin.yml @@ -134,7 +134,13 @@ Builds: gradle: - full + - versionName: 2.10.0 + versionCode: 22 + commit: v2.10.0 + gradle: + - full + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 2.9.0 -CurrentVersionCode: 21 +CurrentVersion: 2.10.0 +CurrentVersionCode: 22 -- GitLab From 678b31d7ca1b3a91fbfe2b3f9ea1b90fadd7f751 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 04:14:42 +0000 Subject: [PATCH 040/103] Update dev.lucanlm.antimine to 9.1.1 (901011) --- metadata/dev.lucanlm.antimine.yml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/metadata/dev.lucanlm.antimine.yml b/metadata/dev.lucanlm.antimine.yml index 8d0682246fb0..f3ff97e19616 100644 --- a/metadata/dev.lucanlm.antimine.yml +++ b/metadata/dev.lucanlm.antimine.yml @@ -414,7 +414,20 @@ Builds: - sed -i -e "s/':proprietary', //; s/':wear', //" ../settings.gradle - sed -i -e "/':proprietary'/d" build.gradle + - versionName: 9.1.1 + versionCode: 901011 + commit: 9.1.1 + subdir: app + gradle: + - foss + rm: + - proprietary + - wear + prebuild: + - sed -i -e "s/':proprietary', //; s/':wear', //" ../settings.gradle + - sed -i -e "/':proprietary'/d" build.gradle + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 9.1.0 -CurrentVersionCode: 901001 +CurrentVersion: 9.1.1 +CurrentVersionCode: 901011 -- GitLab From 75205e2742e9b3b49bd36fdc1bede1ec524b5d06 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sat, 6 Mar 2021 03:44:13 +0000 Subject: [PATCH 041/103] Update Price Per Unit to 1.3.8 (14) --- metadata/net.nitratine.priceperunit.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/net.nitratine.priceperunit.yml b/metadata/net.nitratine.priceperunit.yml index a2a9486fca98..642e97b3e66d 100644 --- a/metadata/net.nitratine.priceperunit.yml +++ b/metadata/net.nitratine.priceperunit.yml @@ -21,7 +21,14 @@ Builds: gradle: - yes + - versionName: 1.3.8 + versionCode: 14 + commit: v1.3.8 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 1.3.7 -CurrentVersionCode: 13 +CurrentVersion: 1.3.8 +CurrentVersionCode: 14 -- GitLab From f7b6e25a28141744337555977e447180e1d5e708 Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 10:30:40 +0300 Subject: [PATCH 042/103] Barinsta: skip pre-release versions --- metadata/me.austinhuang.instagrabber.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/metadata/me.austinhuang.instagrabber.yml b/metadata/me.austinhuang.instagrabber.yml index 25f2edee5199..40506b529560 100644 --- a/metadata/me.austinhuang.instagrabber.yml +++ b/metadata/me.austinhuang.instagrabber.yml @@ -91,14 +91,7 @@ Builds: gradle: - yes - - versionName: 19.1.0-a1 - versionCode: 58 - commit: v19.1.0-a1 - subdir: app - gradle: - - yes - AutoUpdateMode: Version v%v -UpdateCheckMode: Tags -CurrentVersion: 19.1.0-a1 -CurrentVersionCode: 58 +UpdateCheckMode: Tags ^v +CurrentVersion: 19.0.5 +CurrentVersionCode: 57 -- GitLab From 9e974bdc725d1bdad74a2d83e632730bbf7b875a Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 10:33:54 +0300 Subject: [PATCH 043/103] Kid3: disable 3.8.6 (22) --- metadata/net.sourceforge.kid3.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata/net.sourceforge.kid3.yml b/metadata/net.sourceforge.kid3.yml index a70e9604689a..05d1dc8b943a 100644 --- a/metadata/net.sourceforge.kid3.yml +++ b/metadata/net.sourceforge.kid3.yml @@ -212,6 +212,7 @@ Builds: - versionName: 3.8.6 versionCode: 22 + disable: no tag commit: v3.8.6 sudo: - apt-get update || apt-get update -- GitLab From 1531a7aa3fee3d4d1f7a3edc6c40dc5903153694 Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 11:36:49 +0300 Subject: [PATCH 044/103] Bitmask: fix 1.0.7 (151) --- metadata/se.leap.bitmaskclient.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/metadata/se.leap.bitmaskclient.yml b/metadata/se.leap.bitmaskclient.yml index 26be85d986d8..794d58196248 100644 --- a/metadata/se.leap.bitmaskclient.yml +++ b/metadata/se.leap.bitmaskclient.yml @@ -236,6 +236,8 @@ Builds: gradle: - normalProductionFat rm: + - bitmask-core/*.?ar + - bitmask-web-core/*.?ar - go/src/github.com/agl/ed25519/testdata/sign.input.gz - go/src/github.com/shadowsocks/shadowsocks-go/script/shadowsocks.exe - go/src/golang.org/x/crypto/ed25519/testdata/sign.input.gz @@ -248,12 +250,13 @@ Builds: - go/src/golang.org/x/tools/go/packages/testdata/TestName_ModulesDedup/pkg/mod/cache/download/github.com/heschik/tools-testrepo/v2/@v/*.zip - ics-openvpn/main/src/main/cpp/mbedtls/programs/fuzz/corpuses/* - ics-openvpn/main/src/main/cpp/mbedtls/tests - - shapeshifter/*.?ar + - ics-openvpn/main/src/main/cpp/openvpn3/test/unittests/comp-testdata prebuild: sed -i -e "/^task updateSdkLicences/,/^}/d; /commandLine 'git'/d" build.gradle build: - cd ../go - - curl -o go.tar.gz https://dl.google.com/go/go1.12.7.linux-amd64.tar.gz - - echo 'b6f9db387340e24f5623e6de0b8aa1387d103277 go.tar.gz' | shasum -c + - curl -o go.tar.gz https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz + - echo '6272d6e940ecb71ea5636ddb5fab3933e087c1356173c61f4a803895e947ebb3 go.tar.gz' + | shasum -c - mkdir -p golang - tar -C golang -xzf go.tar.gz - export GOPATH="$PWD" @@ -262,7 +265,8 @@ Builds: - export PATH="$GO_LANG:$GO_COMPILED:$PATH" - ./golang/go/bin/go get golang.org/x/mobile/cmd/gomobile - ./bin/gomobile init - - ./android_build_shapeshifter.sh createLibrary + - ./android_build_web_core.sh + - ./android_build_core.sh - cd ../ics-openvpn - gradle main:externalNativeBuildCleanSkeletonRelease main:externalNativeBuildSkeletonRelease ndk: r20b -- GitLab From 3e49628fc5fca03f4ed76ad3c33a65e0091ff47a Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 11:43:03 +0300 Subject: [PATCH 045/103] NC Passwords: disable 21.2.4 (17) --- metadata/de.jbservices.nc_passwords_app.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata/de.jbservices.nc_passwords_app.yml b/metadata/de.jbservices.nc_passwords_app.yml index e8a6ec6552aa..3489850c7539 100644 --- a/metadata/de.jbservices.nc_passwords_app.yml +++ b/metadata/de.jbservices.nc_passwords_app.yml @@ -63,6 +63,7 @@ Builds: - versionName: 21.2.4 versionCode: 17 + disable: dependencies resolution fails commit: v21.2.4 subdir: android/app output: ../../build/app/outputs/apk/fdroid/release/app-fdroid-release.apk -- GitLab From bf18af5e3d08b5e8ebe1d562cfccd9d65260179d Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 11:51:17 +0300 Subject: [PATCH 046/103] pretixSCAN: disable 1.9.2 (35) Also disable AUM because of JARs in the source code tree. --- metadata/eu.pretix.pretixscan.droid.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/metadata/eu.pretix.pretixscan.droid.yml b/metadata/eu.pretix.pretixscan.droid.yml index e5ec28e740d7..23518479946d 100644 --- a/metadata/eu.pretix.pretixscan.droid.yml +++ b/metadata/eu.pretix.pretixscan.droid.yml @@ -142,14 +142,15 @@ Builds: - versionName: 1.9.2 versionCode: 35 - commit: v1.9.2 + disable: JARs in pretixscan/libpretixui-repo + commit: 1.9.2 subdir: pretixscan/app submodules: true gradle: - yes output: build/outputs/apk/pretix/release/app-pretix-release-unsigned.apk -AutoUpdateMode: Version v%v +AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: 1.9.2 CurrentVersionCode: 35 -- GitLab From 89722b77eabd09a0b2955927dd130c2f53356013 Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 11:57:27 +0300 Subject: [PATCH 047/103] Fruit Radar: remove v1.236 (237) Also disable AUM because of JARs in the source code tree. --- metadata/eu.quelltext.mundraub.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/metadata/eu.quelltext.mundraub.yml b/metadata/eu.quelltext.mundraub.yml index dfc3b8cfa4c0..378e598f6a37 100644 --- a/metadata/eu.quelltext.mundraub.yml +++ b/metadata/eu.quelltext.mundraub.yml @@ -436,24 +436,13 @@ Builds: - versionName: v1.234 versionCode: 235 - disable: Failed to transform file 'commons-lang3-3.7.jar' to match attributes + disable: JARs in app/libs commit: v1.234 subdir: app gradle: - yes - rm: - - app/libs/*.jar - - versionName: v1.236 - versionCode: 237 - commit: v1.236 - subdir: app - gradle: - - yes - rm: - - app/libs/*.jar - -AutoUpdateMode: Version %v +AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: v1.236 CurrentVersionCode: 237 -- GitLab From 9f6e386147a042a2cb0a95e486e6ab0be853eda9 Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 12:01:01 +0300 Subject: [PATCH 048/103] NClientV2: disable 2.7.7-beta (277) and 2.7.8-beta (278) --- metadata/com.dar.nclientv2.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metadata/com.dar.nclientv2.yml b/metadata/com.dar.nclientv2.yml index 73544aa6f65b..00776a3ed12d 100644 --- a/metadata/com.dar.nclientv2.yml +++ b/metadata/com.dar.nclientv2.yml @@ -206,6 +206,7 @@ Builds: - versionName: 2.7.7-beta versionCode: 277 + disable: pre-release commit: 2.7.7-beta subdir: app gradle: @@ -214,6 +215,7 @@ Builds: - versionName: 2.7.8-beta versionCode: 278 + disable: pre-release commit: 2.7.8-beta subdir: app gradle: -- GitLab From dfae74a15d7aeaad595bbc608b15a169a0299627 Mon Sep 17 00:00:00 2001 From: relan Date: Sat, 6 Mar 2021 12:05:57 +0300 Subject: [PATCH 049/103] Nextcloud Talk: disable 12.0.0 Alpha 1 (120000001) --- metadata/com.nextcloud.talk2.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata/com.nextcloud.talk2.yml b/metadata/com.nextcloud.talk2.yml index a2acabe6ec12..25f4fb8e0bcf 100644 --- a/metadata/com.nextcloud.talk2.yml +++ b/metadata/com.nextcloud.talk2.yml @@ -513,6 +513,7 @@ Builds: - versionName: 12.0.0 Alpha 1 versionCode: 120000001 + disable: pre-release commit: v12.0.0 Alpha 1 subdir: app gradle: -- GitLab From 4260e22c8da293ac67a0d9c9a816d8e2e6da19c6 Mon Sep 17 00:00:00 2001 From: Michael von Glasow Date: Sat, 6 Mar 2021 11:54:12 +0000 Subject: [PATCH 050/103] Navit: update build recipe for upcoming releases Signed-off-by: mvglasow --- metadata/org.navitproject.navit.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/metadata/org.navitproject.navit.yml b/metadata/org.navitproject.navit.yml index 54a9f1c085ed..0c6c1f384a04 100644 --- a/metadata/org.navitproject.navit.yml +++ b/metadata/org.navitproject.navit.yml @@ -807,6 +807,21 @@ Builds: build: scripts/build_android.sh ndk: r20b + - versionName: v0.5.5-74-gc843d5e + versionCode: 2021022870 + disable: not a release version but new build recipe for future versions + commit: c843d5ee6305e2df301e023a80deca937a47876d + gradle: + - yes + output: build/outputs/apk/release/navit-release.apk + rm: + - navit/support/espeak/espeak-data/* + prebuild: + - $$SDK$$/tools/bin/sdkmanager "cmake;3.6.4111459" > /dev/null + - sed -i -e '/gradlew/d' scripts/build_android.sh + build: scripts/build_android.sh + ndk: r20b + MaintainerNotes: |- Found JAR file at navit/android/libs/TTS_library_stub.jar, removed as of v0.5.3-442-g96d9c41. NDK r12b is the minimum required as of v0.5.3, later versions may work but are untested. -- GitLab From da18cff53dfa8422ab27d3f0bff0eb5740498f76 Mon Sep 17 00:00:00 2001 From: Damiano Date: Sat, 6 Mar 2021 08:58:09 +0100 Subject: [PATCH 051/103] Update flutter version of Converter NOW --- metadata/com.ferrarid.converterpro.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/com.ferrarid.converterpro.yml b/metadata/com.ferrarid.converterpro.yml index 8160b09bf0d9..68800e09bb1e 100644 --- a/metadata/com.ferrarid.converterpro.yml +++ b/metadata/com.ferrarid.converterpro.yml @@ -53,7 +53,7 @@ Builds: commit: v2.5.0 output: build/app/outputs/flutter-apk/app-release.apk srclibs: - - flutter@1.22.5 + - flutter@2.0.1 prebuild: sed -i -e 's/signingConfig signingConfigs.release//' android/app/build.gradle build: - $$flutter$$/bin/flutter config --no-analytics -- GitLab From 30ae76504b402bd15bb907161ccdeb3e2236458c Mon Sep 17 00:00:00 2001 From: fossdd Date: Sat, 6 Mar 2021 12:51:13 +0000 Subject: [PATCH 052/103] Add unmaintained notice to de.baumann.sieben --- metadata/de.baumann.sieben.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/metadata/de.baumann.sieben.yml b/metadata/de.baumann.sieben.yml index ac60f97bfcc9..024e34209a72 100644 --- a/metadata/de.baumann.sieben.yml +++ b/metadata/de.baumann.sieben.yml @@ -8,6 +8,8 @@ Changelog: https://github.com/scoute-dich/Sieben/blob/HEAD/CHANGELOG.md Name: Sieben AutoName: Seven Description: |- + Note: This app is unmaintained and won't receive updates. + Companion app that helps you to perform the seven minutes workout. It's very basic: @@ -180,6 +182,9 @@ Builds: gradle: - yes +MaintainerNotes: App is unmaintained and archived, see GitHub repo. + +ArchivePolicy: 0 versions AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '2.3' -- GitLab From 861655bfc4a6238c85095dd05add5fa5d0704666 Mon Sep 17 00:00:00 2001 From: Eskild Hustvedt Date: Sat, 6 Mar 2021 14:39:51 +0000 Subject: [PATCH 053/103] Added Migraine Log --- metadata/org.zerodogg.migraineLog.yml | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 metadata/org.zerodogg.migraineLog.yml diff --git a/metadata/org.zerodogg.migraineLog.yml b/metadata/org.zerodogg.migraineLog.yml new file mode 100644 index 000000000000..900f057a6066 --- /dev/null +++ b/metadata/org.zerodogg.migraineLog.yml @@ -0,0 +1,38 @@ +Categories: + - Sports & Health +License: GPL-3.0-or-later +AuthorName: Eskild Hustvedt +AuthorWebSite: https://www.zerodogg.org/ +SourceCode: https://gitlab.com/zerodogg/org.zerodogg.migraineLog +IssueTracker: https://gitlab.com/zerodogg/org.zerodogg.migraineLog/issues + +AutoName: MigraineLog + +RepoType: git +Repo: https://gitlab.com/zerodogg/org.zerodogg.migraineLog.git + +Builds: + - versionName: 0.3.1 + versionCode: 311 + commit: v0.3.1 + output: build/app/outputs/flutter-apk/app-release.apk + srclibs: + - flutter@1.22.6 + rm: + - ios + - test + - scripts + prebuild: + - echo "sdk.dir=$$SDK$$" > android/local.properties + - echo "flutter.sdk=$$flutter$$" >> android/local.properties + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter pub get + - PATH=$$flutter$$/bin:$$flutter$$/bin/cache/dart-sdk/bin/:$PATH make setRelVariant + fatapk BUILD_NO=$$VERCODE$$ + +AutoUpdateMode: Version v%v +UpdateCheckMode: HTTP +UpdateCheckData: https://zerodogg.gitlab.io/org.zerodogg.migraineLog/latest.yml|versionCode:\s(\d+)|.|version:\s(.+) +CurrentVersion: 0.3.1 +CurrentVersionCode: 311 -- GitLab From de3437a403162731288fabf019e7b043a2798337 Mon Sep 17 00:00:00 2001 From: FestplattenSchnitzel Date: Mon, 1 Mar 2021 13:09:39 +0000 Subject: [PATCH 054/103] Add fr.odrevet.bide_et_musique.yml --- metadata/fr.odrevet.bide_et_musique.yml | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 metadata/fr.odrevet.bide_et_musique.yml diff --git a/metadata/fr.odrevet.bide_et_musique.yml b/metadata/fr.odrevet.bide_et_musique.yml new file mode 100644 index 000000000000..6fe6f1a0b226 --- /dev/null +++ b/metadata/fr.odrevet.bide_et_musique.yml @@ -0,0 +1,33 @@ +Categories: + - Multimedia +License: GPL-3.0-only +AuthorName: Olivier Drevet +AuthorEmail: odrevet@gmail.com +AuthorWebSite: http://olivier.drevet.free.fr +SourceCode: https://github.com/odrevet/bide_et_musique_flutter +IssueTracker: https://github.com/odrevet/bide_et_musique_flutter/issues +Changelog: https://github.com/odrevet/bide_et_musique_flutter/releases + +AutoName: Bide et Musique + +RepoType: git +Repo: https://github.com/odrevet/bide_et_musique_flutter + +Builds: + - versionName: 3.3.6 + versionCode: 45 + commit: v3.3.6 + output: build/app/outputs/flutter-apk/app-release.apk + srclibs: + - flutter@1.22.6 + rm: + - ios + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter build apk + +AutoUpdateMode: Version v%v +UpdateCheckMode: HTTP +UpdateCheckData: https://raw.githubusercontent.com/odrevet/bide_et_musique_flutter/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ +CurrentVersion: 3.3.6 +CurrentVersionCode: 45 -- GitLab From bf6d644ca2cab6c543526de5d9f3dec03836614a Mon Sep 17 00:00:00 2001 From: "Felix C. Stegerman" Date: Fri, 4 Sep 2020 22:57:50 +0200 Subject: [PATCH 055/103] New app: Sokoban(g) (dev.obfusk.sokobang) --- metadata/dev.obfusk.sokobang.yml | 57 ++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 metadata/dev.obfusk.sokobang.yml diff --git a/metadata/dev.obfusk.sokobang.yml b/metadata/dev.obfusk.sokobang.yml new file mode 100644 index 000000000000..9069aa449345 --- /dev/null +++ b/metadata/dev.obfusk.sokobang.yml @@ -0,0 +1,57 @@ +Categories: + - Games +License: AGPL-3.0-or-later +WebSite: https://github.com/obfusk/sokobang +SourceCode: https://github.com/obfusk/sokobang +IssueTracker: https://github.com/obfusk/sokobang/issues +Donate: https://ko-fi.com/obfusk + +Name: Sokoban(g) + +RepoType: git +Repo: https://github.com/obfusk/sokobang + +Builds: + - versionName: 0.2.2 + versionCode: 1000202001 + commit: v0.2.2 + sudo: + - ( apt-get update || apt-get update ) + - apt-get install -y build-essential git + - apt-get install -y openjdk-11-jdk-headless + - apt-get install -y zlib1g-dev zip unzip pkg-config libffi-dev + - apt-get install -y libltdl-dev + - apt-get install -y libsqlite3-dev + - apt-get install -y lld-7 + - ln -fs lld-7 /usr/bin/lld + - cd build/srclib/cpython + - ./configure --enable-loadable-sqlite-extensions + - make -j`nproc` + - make altinstall + output: bin/sokobang-$$VERSION$$-armeabi-v7a-release-unsigned.apk + srclibs: + - cpython@v3.7.8 + - buildozer@1.2.0 + - python-for-android@7a934f3 + prebuild: + - python3.7 -mvenv ../../env + - source ../../env/bin/activate + - sed -r "s:#?android.sdk_path =.*:android.sdk_path = $$SDK$$:" -i buildozer.spec + - sed -r "s:#?android.ndk_path =.*:android.ndk_path = $$NDK$$:" -i buildozer.spec + - sed -r "s:#?android.accept_sdk_license =.*:android.accept_sdk_license = False:" + -i buildozer.spec + - sed -r "s:#?p4a.source_dir =.*:p4a.source_dir = $$python-for-android$$:" -i + buildozer.spec + - make _android_setup_user BUILDOZER="$$buildozer$$" + build: + - source ../../env/bin/activate + - make android-release-armeabi-v7a + ndk: r20b + +AutoUpdateMode: Version v%v +UpdateCheckMode: HTTP +VercodeOperation: '%c - 1' +UpdateCheckData: https://raw.githubusercontent.com/obfusk/sokobang/master/buildozer.spec|android.numeric_version + *= *([0-9]+)|.|version *= *([0-9.a-g-]+) +CurrentVersion: 0.2.2 +CurrentVersionCode: 1000202001 -- GitLab From 87f89095285aa47a4da56b6380dfb950d9bed6dc Mon Sep 17 00:00:00 2001 From: F-Droid Builder Date: Sat, 6 Mar 2021 21:22:41 +0000 Subject: [PATCH 056/103] Update known apks --- stats/known_apks.txt | 75 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) diff --git a/stats/known_apks.txt b/stats/known_apks.txt index dc08a1f02b85..ee7f9f61163c 100644 --- a/stats/known_apks.txt +++ b/stats/known_apks.txt @@ -1826,6 +1826,10 @@ co.appreactor.news_6.apk co.appreactor.news 2020-12-07 co.appreactor.news_7.apk co.appreactor.news 2020-12-16 co.appreactor.news_8.apk co.appreactor.news 2020-12-18 co.appreactor.news_9.apk co.appreactor.news 2021-01-09 +co.appreactor.news_10.apk co.appreactor.news 2021-03-06 +co.appreactor.news_11.apk co.appreactor.news 2021-03-06 +co.appreactor.news_12.apk co.appreactor.news 2021-03-06 +co.appreactor.news_13.apk co.appreactor.news 2021-03-06 co.epitre.aelf_lectures_51.apk co.epitre.aelf_lectures 2019-05-25 co.epitre.aelf_lectures_52.apk co.epitre.aelf_lectures 2019-05-25 co.epitre.aelf_lectures_54.apk co.epitre.aelf_lectures 2020-01-05 @@ -1840,6 +1844,7 @@ co.loubo.icicle_3.apk co.loubo.icicle 2015-03-18 co.loubo.icicle_4.apk co.loubo.icicle 2015-08-12 co.prestosole.clima_3.apk co.prestosole.clima 2021-01-01 co.prestosole.clima_4.apk co.prestosole.clima 2021-01-09 +co.prestosole.clima_5.apk co.prestosole.clima 2021-03-06 co.pxhouse.sas_1.apk co.pxhouse.sas 2018-03-26 co.pxhouse.sas_6.apk co.pxhouse.sas 2018-04-03 co.timsmart.vouchervault_1.apk co.timsmart.vouchervault 2020-12-20 @@ -1848,6 +1853,7 @@ co.timsmart.vouchervault_4.apk co.timsmart.vouchervault 2021-01-09 co.timsmart.vouchervault_6.apk co.timsmart.vouchervault 2021-01-14 co.timsmart.vouchervault_8.apk co.timsmart.vouchervault 2021-02-24 co.timsmart.vouchervault_9.apk co.timsmart.vouchervault 2021-02-24 +co.timsmart.vouchervault_10.apk co.timsmart.vouchervault 2021-03-06 co.wakarimasen.chanexplorer_63.apk co.wakarimasen.chanexplorer 2014-02-12 com.Bisha.TI89EmuDonation_1133.apk com.Bisha.TI89EmuDonation 2014-07-20 com.DartChecker_2.apk com.DartChecker 2019-02-05 @@ -2067,6 +2073,7 @@ com.aefyr.sai.fdroid_55.apk com.aefyr.sai.fdroid 2020-06-15 com.aefyr.sai.fdroid_56.apk com.aefyr.sai.fdroid 2020-06-20 com.aefyr.sai.fdroid_57.apk com.aefyr.sai.fdroid 2020-06-20 com.aefyr.sai.fdroid_58.apk com.aefyr.sai.fdroid 2021-02-03 +com.aefyr.sai.fdroid_60.apk com.aefyr.sai.fdroid 2021-03-06 com.afollestad.cabinet_71.apk com.afollestad.cabinet 2014-10-23 com.afollestad.cabinet_74.apk com.afollestad.cabinet 2014-10-27 com.afollestad.cabinet_75.apk com.afollestad.cabinet 2014-10-29 @@ -2593,6 +2600,7 @@ com.asdoi.gymwen_120.apk com.asdoi.gymwen 2020-04-21 com.asdoi.gymwen_121.apk com.asdoi.gymwen 2020-06-02 com.asdoi.gymwen_122.apk com.asdoi.gymwen 2020-10-20 com.asdoi.gymwen_123.apk com.asdoi.gymwen 2021-02-17 +com.asdoi.gymwen_124.apk com.asdoi.gymwen 2021-03-06 com.asdoi.mebis_130.apk com.asdoi.mebis 2021-01-31 com.asdoi.mebis_150.apk com.asdoi.mebis 2021-01-31 com.asdoi.quicktiles_12.apk com.asdoi.quicktiles 2020-11-12 @@ -2665,6 +2673,7 @@ com.averi.worldscribe_23.apk com.averi.worldscribe 2020-03-08 com.averi.worldscribe_24.apk com.averi.worldscribe 2020-08-21 com.averi.worldscribe_25.apk com.averi.worldscribe 2020-11-22 com.averi.worldscribe_26.apk com.averi.worldscribe 2020-12-29 +com.averi.worldscribe_27.apk com.averi.worldscribe 2021-03-06 com.axelby.podax_12.apk com.axelby.podax 2012-01-21 com.axelby.podax_14.apk com.axelby.podax 2012-03-20 com.axelby.podax_15.apk com.axelby.podax 2012-04-05 @@ -2903,6 +2912,8 @@ com.blockbasti.justanotherworkouttimer_20210127.apk com.blockbasti.justanotherwo com.blockbasti.justanotherworkouttimer_20210205.apk com.blockbasti.justanotherworkouttimer 2021-03-01 com.blockbasti.justanotherworkouttimer_20210209.apk com.blockbasti.justanotherworkouttimer 2021-03-01 com.blockbasti.justanotherworkouttimer_20210221.apk com.blockbasti.justanotherworkouttimer 2021-03-01 +com.blockbasti.justanotherworkouttimer_20210226.apk com.blockbasti.justanotherworkouttimer 2021-03-06 +com.blockbasti.justanotherworkouttimer_20210227.apk com.blockbasti.justanotherworkouttimer 2021-03-06 com.blogspot.developersu.ns_usbloader_7.apk com.blogspot.developersu.ns_usbloader 2020-12-29 com.blogspot.e_kanivets.moneytracker_33.apk com.blogspot.e_kanivets.moneytracker 2020-07-16 com.blogspot.e_kanivets.moneytracker_34.apk com.blogspot.e_kanivets.moneytracker 2020-09-18 @@ -3176,6 +3187,7 @@ com.cg.lrceditor_52.apk com.cg.lrceditor 2020-09-24 com.cg.lrceditor_53.apk com.cg.lrceditor 2020-10-13 com.cg.lrceditor_54.apk com.cg.lrceditor 2021-02-03 com.cg.lrceditor_55.apk com.cg.lrceditor 2021-03-03 +com.cg.lrceditor_56.apk com.cg.lrceditor 2021-03-06 com.cgogolin.library_24.apk com.cgogolin.library 2017-01-24 com.cgogolin.library_27.apk com.cgogolin.library 2017-04-13 com.cgogolin.library_31.apk com.cgogolin.library 2017-05-27 @@ -4234,6 +4246,7 @@ com.example.barcodescanner_5.apk com.example.barcodescanner 2020-10-02 com.example.barcodescanner_6.apk com.example.barcodescanner 2020-10-03 com.example.barcodescanner_7.apk com.example.barcodescanner 2020-10-23 com.example.barcodescanner_9.apk com.example.barcodescanner 2020-11-14 +com.example.barcodescanner_10.apk com.example.barcodescanner 2021-03-06 com.example.booklistingapk_1.apk com.example.booklistingapk 2020-12-07 com.example.booklistingapk_2.apk com.example.booklistingapk 2020-12-13 com.example.dozenalclock_2.apk com.example.dozenalclock 2019-10-29 @@ -4602,6 +4615,8 @@ com.forrestguice.suntimeswidget_68.apk com.forrestguice.suntimeswidget 2020-11-2 com.forrestguice.suntimeswidget_69.apk com.forrestguice.suntimeswidget 2020-12-09 com.forrestguice.suntimeswidget_70.apk com.forrestguice.suntimeswidget 2021-01-07 com.forrestguice.suntimeswidget_71.apk com.forrestguice.suntimeswidget 2021-01-31 +com.forrestguice.suntimeswidget_72.apk com.forrestguice.suntimeswidget 2021-03-06 +com.forrestguice.suntimeswidget_73.apk com.forrestguice.suntimeswidget 2021-03-06 com.foxykeep.lifecounter_2.apk com.foxykeep.lifecounter 2015-08-14 com.fproject.cryptolitycs_1.apk com.fproject.cryptolitycs 2018-10-08 com.fr3ts0n.androbd.plugin.gpsprovider_10003.apk com.fr3ts0n.androbd.plugin.gpsprovider 2019-09-19 @@ -4675,6 +4690,7 @@ com.freerdp.afreerdp_11.apk com.freerdp.afreerdp 2018-02-16 com.freerdp.afreerdp_12.apk com.freerdp.afreerdp 2018-09-15 com.freerdp.afreerdp_14.apk com.freerdp.afreerdp 2018-12-15 com.freerdp.afreerdp_19.apk com.freerdp.afreerdp 2020-11-24 +com.freerdp.afreerdp_21.apk com.freerdp.afreerdp 2021-03-06 com.freezingwind.animereleasenotifier_6.apk com.freezingwind.animereleasenotifier 2015-03-04 com.freezingwind.animereleasenotifier_7.apk com.freezingwind.animereleasenotifier 2015-03-15 com.freezingwind.animereleasenotifier_8.apk com.freezingwind.animereleasenotifier 2015-03-17 @@ -6483,6 +6499,7 @@ com.gmail.anubhavdas54.whatsdeleted_1.apk com.gmail.anubhavdas54.whatsdeleted 20 com.gmail.anubhavdas54.whatsdeleted_2.apk com.gmail.anubhavdas54.whatsdeleted 2020-06-20 com.gmail.anubhavdas54.whatsdeleted_3.apk com.gmail.anubhavdas54.whatsdeleted 2020-09-07 com.gmail.anubhavdas54.whatsdeleted_4.apk com.gmail.anubhavdas54.whatsdeleted 2021-01-12 +com.gmail.anubhavdas54.whatsdeleted_5.apk com.gmail.anubhavdas54.whatsdeleted 2021-03-06 com.gmail.charleszq_19.apk com.gmail.charleszq 2012-09-07 com.gmail.jerickson314.sdscanner_8.apk com.gmail.jerickson314.sdscanner 2014-03-15 com.gmail.jerickson314.sdscanner_10.apk com.gmail.jerickson314.sdscanner 2014-11-25 @@ -7198,6 +7215,8 @@ com.iven.iconify_44.apk com.iven.iconify 2020-11-22 com.iven.iconify_45.apk com.iven.iconify 2020-12-10 com.iven.iconify_46.apk com.iven.iconify 2020-12-16 com.iven.iconify_49.apk com.iven.iconify 2021-01-12 +com.iven.iconify_50.apk com.iven.iconify 2021-03-06 +com.iven.iconify_51.apk com.iven.iconify 2021-03-06 com.iven.lfflfeedreader_1.apk com.iven.lfflfeedreader 2015-01-05 com.iven.lfflfeedreader_10.apk com.iven.lfflfeedreader 2015-01-07 com.iven.lfflfeedreader_11.apk com.iven.lfflfeedreader 2015-03-14 @@ -7278,6 +7297,8 @@ com.iven.musicplayergo_159.apk com.iven.musicplayergo 2020-12-18 com.iven.musicplayergo_160.apk com.iven.musicplayergo 2020-12-29 com.iven.musicplayergo_161.apk com.iven.musicplayergo 2020-12-29 com.iven.musicplayergo_162.apk com.iven.musicplayergo 2021-01-01 +com.iven.musicplayergo_163.apk com.iven.musicplayergo 2021-03-06 +com.iven.musicplayergo_164.apk com.iven.musicplayergo 2021-03-06 com.iven.xdafeedreader_5.apk com.iven.xdafeedreader 2015-01-07 com.jadn.cc_129.apk com.jadn.cc 2012-01-07 com.jadn.cc_143.apk com.jadn.cc 2013-03-04 @@ -7513,6 +7534,7 @@ com.jellyshack.block6_6.apk com.jellyshack.block6 2019-09-25 com.jellyshack.block6_7.apk com.jellyshack.block6 2019-09-28 com.jereksel.libresubstratum_1.apk com.jereksel.libresubstratum 2017-11-17 com.jereksel.libresubstratum_3.apk com.jereksel.libresubstratum 2017-12-15 +com.jeroen1602.lighthouse_pm_7.apk com.jeroen1602.lighthouse_pm 2021-03-06 com.jeyries.quake2_21.apk com.jeyries.quake2 2012-12-14 com.jforce.chapelhillnextbus_2.apk com.jforce.chapelhillnextbus 2014-10-27 com.jim.sharetocomputer_1000.apk com.jim.sharetocomputer 2019-06-14 @@ -9412,6 +9434,8 @@ com.nextcloud.android.beta_20210224.apk com.nextcloud.android.beta 2021-02-26 com.nextcloud.android.beta_20210225.apk com.nextcloud.android.beta 2021-03-01 com.nextcloud.android.beta_20210226.apk com.nextcloud.android.beta 2021-03-01 com.nextcloud.android.beta_20210227.apk com.nextcloud.android.beta 2021-03-03 +com.nextcloud.android.beta_20210303.apk com.nextcloud.android.beta 2021-03-06 +com.nextcloud.android.beta_20210304.apk com.nextcloud.android.beta 2021-03-06 com.nextcloud.client_10000000.apk com.nextcloud.client 2016-06-17 com.nextcloud.client_10000100.apk com.nextcloud.client 2016-06-21 com.nextcloud.client_10010099.apk com.nextcloud.client 2016-07-07 @@ -10228,6 +10252,7 @@ com.palliser.nztides_12.apk com.palliser.nztides 2019-01-04 com.palliser.nztides_14.apk com.palliser.nztides 2020-10-18 com.paranoid.ParanoidWallpapers_1.apk com.paranoid.ParanoidWallpapers 2013-06-13 com.parishod.watomatic_10.apk com.parishod.watomatic 2021-03-03 +com.parishod.watomatic_11.apk com.parishod.watomatic 2021-03-06 com.passcard_1.apk com.passcard 2014-04-29 com.passcard_2.apk com.passcard 2016-03-11 com.passcard_4.apk com.passcard 2016-04-07 @@ -10793,6 +10818,7 @@ com.rtbishop.look4sat_18.apk com.rtbishop.look4sat 2020-09-24 com.rtbishop.look4sat_200.apk com.rtbishop.look4sat 2020-12-05 com.rtbishop.look4sat_201.apk com.rtbishop.look4sat 2020-12-07 com.rtbishop.look4sat_210.apk com.rtbishop.look4sat 2021-03-03 +com.rtbishop.look4sat_211.apk com.rtbishop.look4sat 2021-03-06 com.rubenroy.minimaltodo_3.apk com.rubenroy.minimaltodo 2015-11-26 com.rubenwardy.minetestmodmanager_5.apk com.rubenwardy.minetestmodmanager 2016-04-10 com.rubenwardy.minetestmodmanager_6.apk com.rubenwardy.minetestmodmanager 2016-04-10 @@ -11041,6 +11067,7 @@ com.servoz.appsdisabler_18.apk com.servoz.appsdisabler 2020-08-22 com.servoz.appsdisabler_19.apk com.servoz.appsdisabler 2020-08-31 com.servoz.appsdisabler_120.apk com.servoz.appsdisabler 2020-11-27 com.servoz.appsdisabler_121.apk com.servoz.appsdisabler 2021-03-01 +com.servoz.appsdisabler_122.apk com.servoz.appsdisabler 2021-03-06 com.serwylo.babydots_10000.apk com.serwylo.babydots 2020-10-13 com.serwylo.babydots_10100.apk com.serwylo.babydots 2020-10-18 com.serwylo.babydots_10200.apk com.serwylo.babydots 2020-10-31 @@ -11050,6 +11077,7 @@ com.serwylo.babydots_10402.apk com.serwylo.babydots 2021-01-23 com.serwylo.babydots_10403.apk com.serwylo.babydots 2021-03-01 com.serwylo.beatgame_1.apk com.serwylo.beatgame 2021-02-17 com.serwylo.beatgame_2.apk com.serwylo.beatgame 2021-03-01 +com.serwylo.beatgame_3.apk com.serwylo.beatgame 2021-03-06 com.serwylo.lexica_901.apk com.serwylo.lexica 2016-01-11 com.serwylo.lexica_902.apk com.serwylo.lexica 2016-01-18 com.serwylo.lexica_903.apk com.serwylo.lexica 2016-01-26 @@ -11981,6 +12009,8 @@ com.simplemobiletools.musicplayer_77.apk com.simplemobiletools.musicplayer 2020- com.simplemobiletools.musicplayer_78.apk com.simplemobiletools.musicplayer 2021-01-07 com.simplemobiletools.musicplayer_79.apk com.simplemobiletools.musicplayer 2021-01-07 com.simplemobiletools.musicplayer_80.apk com.simplemobiletools.musicplayer 2021-02-15 +com.simplemobiletools.musicplayer_81.apk com.simplemobiletools.musicplayer 2021-03-06 +com.simplemobiletools.musicplayer_82.apk com.simplemobiletools.musicplayer 2021-03-06 com.simplemobiletools.notes.pro_55.apk com.simplemobiletools.notes.pro 2018-11-16 com.simplemobiletools.notes.pro_56.apk com.simplemobiletools.notes.pro 2018-11-25 com.simplemobiletools.notes.pro_57.apk com.simplemobiletools.notes.pro 2018-12-14 @@ -12118,6 +12148,7 @@ com.smartpack.packagemanager_33.apk com.smartpack.packagemanager 2021-02-19 com.smartpack.packagemanager_34.apk com.smartpack.packagemanager 2021-02-24 com.smartpack.packagemanager_35.apk com.smartpack.packagemanager 2021-02-26 com.smartpack.packagemanager_36.apk com.smartpack.packagemanager 2021-03-03 +com.smartpack.packagemanager_37.apk com.smartpack.packagemanager 2021-03-06 com.smartpack.scriptmanager_35.apk com.smartpack.scriptmanager 2021-01-23 com.smartpack.scriptmanager_36.apk com.smartpack.scriptmanager 2021-02-03 com.smartpack.scriptmanager_37.apk com.smartpack.scriptmanager 2021-02-19 @@ -12812,6 +12843,7 @@ com.tutpro.baresip.plus_30.apk com.tutpro.baresip.plus 2021-02-15 com.tutpro.baresip.plus_31.apk com.tutpro.baresip.plus 2021-02-15 com.tutpro.baresip.plus_32.apk com.tutpro.baresip.plus 2021-03-01 com.tutpro.baresip.plus_33.apk com.tutpro.baresip.plus 2021-03-01 +com.tutpro.baresip.plus_34.apk com.tutpro.baresip.plus 2021-03-06 com.tutpro.baresip_28.apk com.tutpro.baresip 2018-10-28 com.tutpro.baresip_29.apk com.tutpro.baresip 2018-10-28 com.tutpro.baresip_31.apk com.tutpro.baresip 2018-11-07 @@ -12903,6 +12935,7 @@ com.tutpro.baresip_155.apk com.tutpro.baresip 2021-02-03 com.tutpro.baresip_156.apk com.tutpro.baresip 2021-02-15 com.tutpro.baresip_157.apk com.tutpro.baresip 2021-03-01 com.tutpro.baresip_158.apk com.tutpro.baresip 2021-03-01 +com.tutpro.baresip_159.apk com.tutpro.baresip 2021-03-06 com.twidere.twiderex_15.apk com.twidere.twiderex 2021-02-03 com.twinone.locker_2501.apk com.twinone.locker 2015-03-16 com.twinone.locker_2600.apk com.twinone.locker 2015-06-17 @@ -12931,6 +12964,7 @@ com.ubergeek42.WeechatAndroid_1300.apk com.ubergeek42.WeechatAndroid 2020-11-22 com.ubergeek42.WeechatAndroid_10301.apk com.ubergeek42.WeechatAndroid 2020-11-27 com.ubergeek42.WeechatAndroid_10400.apk com.ubergeek42.WeechatAndroid 2020-12-18 com.ubergeek42.WeechatAndroid_10401.apk com.ubergeek42.WeechatAndroid 2020-12-29 +com.ubergeek42.WeechatAndroid_10500.apk com.ubergeek42.WeechatAndroid 2021-03-06 com.uberspot.a2048_9.apk com.uberspot.a2048 2014-03-30 com.uberspot.a2048_16.apk com.uberspot.a2048 2014-06-14 com.uberspot.a2048_17.apk com.uberspot.a2048 2014-08-22 @@ -13137,6 +13171,8 @@ com.unciv.app_532.apk com.unciv.app 2021-02-24 com.unciv.app_533.apk com.unciv.app 2021-02-24 com.unciv.app_534.apk com.unciv.app 2021-03-01 com.unciv.app_536.apk com.unciv.app 2021-03-03 +com.unciv.app_537.apk com.unciv.app 2021-03-06 +com.unciv.app_538.apk com.unciv.app 2021-03-06 com.unitedcoders.android.gpodroid_12.apk com.unitedcoders.android.gpodroid 2012-01-08 com.unleashyouradventure.swaccess_14.apk com.unleashyouradventure.swaccess 2014-01-29 com.unleashyouradventure.swaccess_15.apk com.unleashyouradventure.swaccess 2015-01-18 @@ -13843,6 +13879,7 @@ com.zell_mbc.medilog_5323.apk com.zell_mbc.medilog 2020-12-27 com.zell_mbc.medilog_5325.apk com.zell_mbc.medilog 2021-01-12 com.zell_mbc.medilog_5326.apk com.zell_mbc.medilog 2021-02-17 com.zell_mbc.medilog_5327.apk com.zell_mbc.medilog 2021-02-21 +com.zell_mbc.medilog_5331.apk com.zell_mbc.medilog 2021-03-06 com.zeusln.zeus_7.apk com.zeusln.zeus 2019-04-06 com.zeusln.zeus_8.apk com.zeusln.zeus 2019-04-06 com.zeusln.zeus_10.apk com.zeusln.zeus 2019-10-03 @@ -14905,6 +14942,7 @@ de.dennisguse.opentracks_3799.apk de.dennisguse.opentracks 2021-01-07 de.dennisguse.opentracks_3823.apk de.dennisguse.opentracks 2021-02-03 de.dennisguse.opentracks_3855.apk de.dennisguse.opentracks 2021-02-26 de.dennisguse.opentracks_3862.apk de.dennisguse.opentracks 2021-03-03 +de.dennisguse.opentracks_3875.apk de.dennisguse.opentracks 2021-03-06 de.determapp.android_4.apk de.determapp.android 2019-05-21 de.determapp.android_5.apk de.determapp.android 2019-06-08 de.determapp.android_6.apk de.determapp.android 2019-09-25 @@ -15225,6 +15263,7 @@ de.hauke_stieler.geonotes_2.apk de.hauke_stieler.geonotes 2020-12-18 de.hauke_stieler.geonotes_1000004.apk de.hauke_stieler.geonotes 2021-01-14 de.hauke_stieler.geonotes_1001000.apk de.hauke_stieler.geonotes 2021-01-25 de.hauke_stieler.geonotes_1002001.apk de.hauke_stieler.geonotes 2021-02-26 +de.hauke_stieler.geonotes_1003000.apk de.hauke_stieler.geonotes 2021-03-06 de.hechler.andfish_20.apk de.hechler.andfish 2013-12-09 de.hechler.andfish_21.apk de.hechler.andfish 2015-08-17 de.hfu.funfpunktnull_12.apk de.hfu.funfpunktnull 2015-01-20 @@ -15712,6 +15751,7 @@ de.markusfisch.android.binaryeye_74.apk de.markusfisch.android.binaryeye 2020-11 de.markusfisch.android.binaryeye_75.apk de.markusfisch.android.binaryeye 2021-01-29 de.markusfisch.android.binaryeye_76.apk de.markusfisch.android.binaryeye 2021-01-29 de.markusfisch.android.binaryeye_77.apk de.markusfisch.android.binaryeye 2021-02-26 +de.markusfisch.android.binaryeye_78.apk de.markusfisch.android.binaryeye 2021-03-06 de.markusfisch.android.shadereditor_12.apk de.markusfisch.android.shadereditor 2015-04-24 de.markusfisch.android.shadereditor_14.apk de.markusfisch.android.shadereditor 2015-12-21 de.markusfisch.android.shadereditor_16.apk de.markusfisch.android.shadereditor 2015-12-26 @@ -15860,6 +15900,7 @@ de.moroway.oc_60402.apk de.moroway.oc 2020-12-07 de.moroway.oc_70000.apk de.moroway.oc 2021-02-17 de.moroway.oc_70003.apk de.moroway.oc 2021-02-26 de.moroway.oc_70100.apk de.moroway.oc 2021-03-01 +de.moroway.oc_70101.apk de.moroway.oc 2021-03-06 de.mreiter.countit_2.apk de.mreiter.countit 2014-02-05 de.msal.muzei.nationalgeographic_3.apk de.msal.muzei.nationalgeographic 2014-03-22 de.msal.muzei.nationalgeographic_6.apk de.msal.muzei.nationalgeographic 2015-02-27 @@ -16658,6 +16699,7 @@ de.storchp.fdroidbuildstatus_7.apk de.storchp.fdroidbuildstatus 2021-02-15 de.storchp.fdroidbuildstatus_9.apk de.storchp.fdroidbuildstatus 2021-02-26 de.storchp.fdroidbuildstatus_10.apk de.storchp.fdroidbuildstatus 2021-02-26 de.storchp.fdroidbuildstatus_11.apk de.storchp.fdroidbuildstatus 2021-03-01 +de.storchp.fdroidbuildstatus_12.apk de.storchp.fdroidbuildstatus 2021-03-06 de.storchp.opentracks.osmplugin.offline_18.apk de.storchp.opentracks.osmplugin.offline 2020-10-13 de.storchp.opentracks.osmplugin.offline_19.apk de.storchp.opentracks.osmplugin.offline 2020-10-19 de.storchp.opentracks.osmplugin.offline_20.apk de.storchp.opentracks.osmplugin.offline 2020-12-24 @@ -16686,6 +16728,7 @@ de.sudoq_10.apk de.sudoq 2015-01-04 de.sudoq_11.apk de.sudoq 2015-01-11 de.sudoq_22.apk de.sudoq 2020-02-26 de.sudoq_26.apk de.sudoq 2020-02-26 +de.sudoq_27.apk de.sudoq 2021-03-06 de.syss.MifareClassicTool_18.apk de.syss.MifareClassicTool 2013-12-09 de.syss.MifareClassicTool_19.apk de.syss.MifareClassicTool 2013-12-27 de.syss.MifareClassicTool_20.apk de.syss.MifareClassicTool 2014-01-15 @@ -16868,6 +16911,7 @@ de.tap.easy_xkcd_163.apk de.tap.easy_xkcd 2019-10-06 de.tap.easy_xkcd_164.apk de.tap.easy_xkcd 2020-04-15 de.tap.easy_xkcd_166.apk de.tap.easy_xkcd 2020-05-06 de.taz.android.app.free_10102900.apk de.taz.android.app.free 2020-12-22 +de.taz.android.app.free_10202900.apk de.taz.android.app.free 2021-03-06 de.tcrass.minos_4099.apk de.tcrass.minos 2020-08-21 de.tcrass.minos_10004.apk de.tcrass.minos 2020-08-22 de.thecode.android.tazreader_3090102.apk de.thecode.android.tazreader 2019-04-17 @@ -17000,6 +17044,7 @@ de.tutao.tutanota_380040.apk de.tutao.tutanota 2021-01-21 de.tutao.tutanota_380050.apk de.tutao.tutanota 2021-01-29 de.tutao.tutanota_381080.apk de.tutao.tutanota 2021-02-26 de.tutao.tutanota_382010.apk de.tutao.tutanota 2021-03-01 +de.tutao.tutanota_382040.apk de.tutao.tutanota 2021-03-06 de.ub0r.android.adBlock_5.apk de.ub0r.android.adBlock 2011-01-23 de.ub0r.android.callmeter_7362000.apk de.ub0r.android.callmeter 2012-10-24 de.ub0r.android.callmeter_7381000.apk de.ub0r.android.callmeter 2013-02-22 @@ -18103,6 +18148,7 @@ eu.faircode.email_1486.apk eu.faircode.email 2021-02-15 eu.faircode.email_1487.apk eu.faircode.email 2021-02-15 eu.faircode.email_1492.apk eu.faircode.email 2021-02-26 eu.faircode.email_1515.apk eu.faircode.email 2021-03-03 +eu.faircode.email_1518.apk eu.faircode.email 2021-03-06 eu.faircode.finegeotag_21.apk eu.faircode.finegeotag 2016-04-15 eu.faircode.finegeotag_2016042701.apk eu.faircode.finegeotag 2016-04-29 eu.faircode.netguard_7.apk eu.faircode.netguard 2015-10-30 @@ -18253,6 +18299,7 @@ eu.faircode.netguard_2020100301.apk eu.faircode.netguard 2020-10-07 eu.faircode.netguard_2020120301.apk eu.faircode.netguard 2020-12-07 eu.faircode.netguard_2021020601.apk eu.faircode.netguard 2021-02-15 eu.faircode.netguard_2021022302.apk eu.faircode.netguard 2021-02-26 +eu.faircode.netguard_2021030201.apk eu.faircode.netguard 2021-03-06 eu.faircode.xlua_112.apk eu.faircode.xlua 2018-04-08 eu.faircode.xlua_113.apk eu.faircode.xlua 2018-04-10 eu.faircode.xlua_114.apk eu.faircode.xlua 2018-04-14 @@ -18656,6 +18703,7 @@ eu.siacs.conversations_403.apk eu.siacs.conversations 2021-01-05 eu.siacs.conversations_404.apk eu.siacs.conversations 2021-01-14 eu.siacs.conversations_405.apk eu.siacs.conversations 2021-01-25 eu.siacs.conversations_407.apk eu.siacs.conversations 2021-01-31 +eu.siacs.conversations_42000.apk eu.siacs.conversations 2021-03-06 eu.siebeck.sipswitch_5.apk eu.siebeck.sipswitch 2013-03-02 eu.siebeck.sipswitch_9.apk eu.siebeck.sipswitch 2014-11-17 eu.siebeck.sipswitch_10.apk eu.siebeck.sipswitch 2015-11-14 @@ -19468,6 +19516,7 @@ fr.neamar.kiss_179.apk fr.neamar.kiss 2020-05-15 fr.neamar.kiss_180.apk fr.neamar.kiss 2020-10-03 fr.neamar.kiss_183.apk fr.neamar.kiss 2021-02-17 fr.neamar.kiss_185.apk fr.neamar.kiss 2021-02-24 +fr.neamar.kiss_186.apk fr.neamar.kiss 2021-03-06 fr.nicopico.dashclock.birthday_10.apk fr.nicopico.dashclock.birthday 2015-10-01 fr.nihilus.music_200206.apk fr.nihilus.music 2021-01-14 fr.nocle.passegares_14.apk fr.nocle.passegares 2017-01-02 @@ -19566,6 +19615,7 @@ fr.ubordeaux.math.paridroid_16.apk fr.ubordeaux.math.paridroid 2019-02-25 fr.ubordeaux.math.paridroid_18.apk fr.ubordeaux.math.paridroid 2019-07-13 fr.ubordeaux.math.paridroid_19.apk fr.ubordeaux.math.paridroid 2020-05-15 fr.ubordeaux.math.paridroid_20.apk fr.ubordeaux.math.paridroid 2020-09-04 +fr.ubordeaux.math.paridroid_21.apk fr.ubordeaux.math.paridroid 2021-03-06 fr.unix_experience.owncloud_sms_17.apk fr.unix_experience.owncloud_sms 2015-01-25 fr.unix_experience.owncloud_sms_18.apk fr.unix_experience.owncloud_sms 2015-02-12 fr.unix_experience.owncloud_sms_19.apk fr.unix_experience.owncloud_sms 2015-03-16 @@ -19773,6 +19823,7 @@ ga.testapp.testapp_40.apk ga.testapp.testapp 2020-02-01 ga.testapp.testapp_42.apk ga.testapp.testapp 2020-02-04 ga.testapp.testapp_48.apk ga.testapp.testapp 2020-04-03 ga.testapp.testapp_57.apk ga.testapp.testapp 2020-06-11 +ga.testapp.testapp_66.apk ga.testapp.testapp 2021-03-06 genius.mohammad.floating.stickies_27.apk genius.mohammad.floating.stickies 2013-06-22 genius.mohammad.floating.stickies_28.apk genius.mohammad.floating.stickies 2014-10-06 gg.mw.passera_1.apk gg.mw.passera 2014-08-09 @@ -19977,6 +20028,7 @@ im.quicksy.client_403.apk im.quicksy.client 2021-01-05 im.quicksy.client_404.apk im.quicksy.client 2021-01-14 im.quicksy.client_405.apk im.quicksy.client 2021-01-25 im.quicksy.client_407.apk im.quicksy.client 2021-01-31 +im.quicksy.client_42000.apk im.quicksy.client 2021-03-06 im.r_c.android.clearweather_2.apk im.r_c.android.clearweather 2016-06-24 im.r_c.android.jigsaw_2.apk im.r_c.android.jigsaw 2016-06-24 im.status.ethereum_2021021509.apk im.status.ethereum 2021-02-24 @@ -20335,6 +20387,8 @@ info.tangential.cone_25.apk info.tangential.cone 2019-10-02 info.tangential.cone_26.apk info.tangential.cone 2019-10-10 info.tangential.cone_28.apk info.tangential.cone 2020-03-12 info.tangential.task_4.apk info.tangential.task 2021-03-03 +info.tangential.task_5.apk info.tangential.task 2021-03-06 +info.tangential.task_6.apk info.tangential.task 2021-03-06 info.toyonos.hfr4droid_51.apk info.toyonos.hfr4droid 2012-08-29 info.toyonos.hfr4droid_61.apk info.toyonos.hfr4droid 2012-08-29 info.varden.hauk_1.apk info.varden.hauk 2019-08-28 @@ -20814,6 +20868,7 @@ io.homeassistant.companion.android.minimal_504.apk io.homeassistant.companion.an io.homeassistant.companion.android.minimal_521.apk io.homeassistant.companion.android.minimal 2020-11-21 io.homeassistant.companion.android.minimal_555.apk io.homeassistant.companion.android.minimal 2021-01-31 io.infinyte7.ankiimageocclusion_14200.apk io.infinyte7.ankiimageocclusion 2021-02-21 +io.infinyte7.ankiimageocclusion_14300.apk io.infinyte7.ankiimageocclusion 2021-03-06 io.kuenzler.whatsappwebtogo_28.apk io.kuenzler.whatsappwebtogo 2020-03-23 io.kuenzler.whatsappwebtogo_29.apk io.kuenzler.whatsappwebtogo 2020-06-20 io.kuenzler.whatsappwebtogo_30.apk io.kuenzler.whatsappwebtogo 2020-07-08 @@ -21012,6 +21067,8 @@ io.treehouses.remote_6062.apk io.treehouses.remote 2021-02-17 io.treehouses.remote_6066.apk io.treehouses.remote 2021-02-21 io.treehouses.remote_6068.apk io.treehouses.remote 2021-02-21 io.treehouses.remote_6069.apk io.treehouses.remote 2021-02-21 +io.treehouses.remote_6070.apk io.treehouses.remote 2021-03-06 +io.treehouses.remote_6071.apk io.treehouses.remote 2021-03-06 io.trezor.app_9.apk io.trezor.app 2017-06-17 io.trezor.app_10.apk io.trezor.app 2017-07-14 io.trezor.app_12.apk io.trezor.app 2017-12-15 @@ -21227,6 +21284,7 @@ it.niedermann.nextcloud.deck_1014001.apk it.niedermann.nextcloud.deck 2021-01-29 it.niedermann.nextcloud.deck_1014003.apk it.niedermann.nextcloud.deck 2021-02-03 it.niedermann.nextcloud.deck_1014005.apk it.niedermann.nextcloud.deck 2021-02-17 it.niedermann.nextcloud.deck_1014006.apk it.niedermann.nextcloud.deck 2021-02-21 +it.niedermann.nextcloud.deck_1015000.apk it.niedermann.nextcloud.deck 2021-03-06 it.niedermann.owncloud.notes_4.apk it.niedermann.owncloud.notes 2016-01-29 it.niedermann.owncloud.notes_5.apk it.niedermann.owncloud.notes 2016-01-30 it.niedermann.owncloud.notes_7.apk it.niedermann.owncloud.notes 2016-01-31 @@ -21310,6 +21368,7 @@ it.niedermann.owncloud.notes_3000001.apk it.niedermann.owncloud.notes 2021-01-14 it.niedermann.owncloud.notes_3001000.apk it.niedermann.owncloud.notes 2021-01-14 it.niedermann.owncloud.notes_3001001.apk it.niedermann.owncloud.notes 2021-01-29 it.niedermann.owncloud.notes_3001003.apk it.niedermann.owncloud.notes 2021-02-21 +it.niedermann.owncloud.notes_3001004.apk it.niedermann.owncloud.notes 2021-03-06 it.reyboz.bustorino_2.apk it.reyboz.bustorino 2014-11-11 it.reyboz.bustorino_3.apk it.reyboz.bustorino 2014-11-15 it.reyboz.bustorino_4.apk it.reyboz.bustorino 2014-11-23 @@ -21468,6 +21527,7 @@ joshuatee.wx_55485.apk joshuatee.wx 2020-06-02 joshuatee.wx_55487.apk joshuatee.wx 2020-06-04 joshuatee.wx_55522.apk joshuatee.wx 2021-03-03 joshuatee.wx_55525.apk joshuatee.wx 2021-03-03 +joshuatee.wx_55529.apk joshuatee.wx 2021-03-06 jp.co.kayo.android.localplayer.ds.ampache_410044.apk jp.co.kayo.android.localplayer.ds.ampache 2012-08-09 jp.co.kayo.android.localplayer.ds.ampache_410047.apk jp.co.kayo.android.localplayer.ds.ampache 2012-10-27 jp.co.kayo.android.localplayer.ds.ampache_410048.apk jp.co.kayo.android.localplayer.ds.ampache 2012-11-12 @@ -21749,6 +21809,7 @@ me.austinhuang.instagrabber_55.apk me.austinhuang.instagrabber 2020-12-27 me.austinhuang.instagrabber_56.apk me.austinhuang.instagrabber 2021-01-03 me.austinhuang.instagrabber_57.apk me.austinhuang.instagrabber 2021-01-09 me.billdietrich.fake_contacts_2.apk me.billdietrich.fake_contacts 2021-02-15 +me.billdietrich.fake_contacts_3.apk me.billdietrich.fake_contacts 2021-03-06 me.blog.korn123.easydiary_135.apk me.blog.korn123.easydiary 2019-02-03 me.blog.korn123.easydiary_136.apk me.blog.korn123.easydiary 2019-02-12 me.blog.korn123.easydiary_155.apk me.blog.korn123.easydiary 2019-08-13 @@ -22071,6 +22132,7 @@ me.phh.superuser_1033.apk me.phh.superuser 2016-01-21 me.ranko.autodark_6.apk me.ranko.autodark 2020-08-22 me.ranko.autodark_9.apk me.ranko.autodark 2020-08-21 me.rosuh.easywatermark_3.apk me.rosuh.easywatermark 2020-10-10 +me.rosuh.easywatermark_20000.apk me.rosuh.easywatermark 2021-03-06 me.sheimi.sgit_107.apk me.sheimi.sgit 2014-03-03 me.sheimi.sgit_108.apk me.sheimi.sgit 2016-05-25 me.sheimi.sgit_109.apk me.sheimi.sgit 2016-06-01 @@ -22148,6 +22210,7 @@ menion.android.whereyougo_20200407.apk menion.android.whereyougo 2020-07-07 menion.android.whereyougo_20200821.apk menion.android.whereyougo 2021-02-21 mf.asciitext.lite_12.apk mf.asciitext.lite 2020-08-10 mf.asciitext.lite_13.apk mf.asciitext.lite 2020-12-24 +mf.asciitext.lite_14.apk mf.asciitext.lite 2021-03-06 mixare-0061.apk org.mixare mixare-0062.apk org.mixare mixare-0063.apk org.mixare @@ -22933,6 +22996,7 @@ net.kourlas.voipms_sms_133.apk net.kourlas.voipms_sms 2021-01-29 net.kourlas.voipms_sms_134.apk net.kourlas.voipms_sms 2021-02-21 net.kourlas.voipms_sms_136.apk net.kourlas.voipms_sms 2021-03-03 net.kourlas.voipms_sms_138.apk net.kourlas.voipms_sms 2021-03-03 +net.kourlas.voipms_sms_139.apk net.kourlas.voipms_sms 2021-03-06 net.ktnx.mobileledger_16.apk net.ktnx.mobileledger 2019-03-18 net.ktnx.mobileledger_17.apk net.ktnx.mobileledger 2019-03-18 net.ktnx.mobileledger_18.apk net.ktnx.mobileledger 2019-03-18 @@ -23203,6 +23267,7 @@ net.osmtracker_40.apk net.osmtracker 2018-08-12 net.osmtracker_42.apk net.osmtracker 2018-08-12 net.osmtracker_43.apk net.osmtracker 2019-02-20 net.osmtracker_48.apk net.osmtracker 2019-10-09 +net.osmtracker_56.apk net.osmtracker 2021-03-06 net.pejici.easydice_3.apk net.pejici.easydice 2014-02-02 net.pejici.easydice_4.apk net.pejici.easydice 2014-05-01 net.pejici.easydice_5.apk net.pejici.easydice 2014-05-06 @@ -24582,6 +24647,7 @@ org.andstatus.app_335.apk org.andstatus.app 2020-07-07 org.andstatus.app_336.apk org.andstatus.app 2020-09-04 org.andstatus.app_337.apk org.andstatus.app 2021-01-12 org.andstatus.app_338.apk org.andstatus.app 2021-01-25 +org.andstatus.game2048_27.apk org.andstatus.game2048 2021-03-06 org.andstatus.todoagenda_560.apk org.andstatus.todoagenda 2019-12-03 org.andstatus.todoagenda_565.apk org.andstatus.todoagenda 2020-01-10 org.andstatus.todoagenda_681.apk org.andstatus.todoagenda 2020-07-13 @@ -25397,6 +25463,8 @@ org.dash.electrum.electrum_dash_400090100.apk org.dash.electrum.electrum_dash 20 org.dash.electrum.electrum_dash_400090101.apk org.dash.electrum.electrum_dash 2021-01-25 org.dash.electrum.electrum_dash_400090200.apk org.dash.electrum.electrum_dash 2021-02-24 org.dash.electrum.electrum_dash_400090201.apk org.dash.electrum.electrum_dash 2021-02-24 +org.dash.electrum.electrum_dash_400090300.apk org.dash.electrum.electrum_dash 2021-03-06 +org.dash.electrum.electrum_dash_400090301.apk org.dash.electrum.electrum_dash 2021-03-06 org.daylightingsociety.wherearetheeyes_4.apk org.daylightingsociety.wherearetheeyes 2016-11-17 org.daylightingsociety.wherearetheeyes_5.apk org.daylightingsociety.wherearetheeyes 2017-03-19 org.daylightingsociety.wherearetheeyes_6.apk org.daylightingsociety.wherearetheeyes 2017-09-27 @@ -26056,6 +26124,7 @@ org.fdroid.fdroid_1010050.apk org.fdroid.fdroid 2020-10-27 org.fdroid.fdroid_1011050.apk org.fdroid.fdroid 2021-01-07 org.fdroid.fdroid_1012000.apk org.fdroid.fdroid 2021-02-15 org.fdroid.fdroid_1012001.apk org.fdroid.fdroid 2021-03-01 +org.fdroid.fdroid_1012002.apk org.fdroid.fdroid 2021-03-06 org.fdroid.k9_16025.apk org.fdroid.k9 2013-06-30 org.fdroid.k9_17040.apk org.fdroid.k9 2013-07-02 org.fdroid.k9_17041.apk org.fdroid.k9 2013-07-09 @@ -26807,6 +26876,7 @@ org.janb.shoppinglist_2.apk org.janb.shoppinglist 2015-09-04 org.janb.shoppinglist_4.apk org.janb.shoppinglist 2015-09-26 org.jdfossapps.android.shopwithmom_1.apk org.jdfossapps.android.shopwithmom 2021-01-07 org.jdfossapps.android.shopwithmom_2.apk org.jdfossapps.android.shopwithmom 2021-01-12 +org.jdfossapps.android.shopwithmom_3.apk org.jdfossapps.android.shopwithmom 2021-03-06 org.jellyfin.mobile_2020399.apk org.jellyfin.mobile 2021-03-01 org.jessies.dalvikexplorer_33.apk org.jessies.dalvikexplorer 2012-11-12 org.jessies.dalvikexplorer_34.apk org.jessies.dalvikexplorer 2013-02-11 @@ -27249,6 +27319,7 @@ org.liberty.android.freeotpplus_10.apk org.liberty.android.freeotpplus 2020-08-2 org.liberty.android.freeotpplus_11.apk org.liberty.android.freeotpplus 2020-08-29 org.liberty.android.freeotpplus_12.apk org.liberty.android.freeotpplus 2020-09-24 org.liberty.android.freeotpplus_13.apk org.liberty.android.freeotpplus 2020-11-09 +org.liberty.android.freeotpplus_14.apk org.liberty.android.freeotpplus 2021-03-06 org.libre.agosto.p2play_6.apk org.libre.agosto.p2play 2019-11-04 org.libre.agosto.p2play_7.apk org.libre.agosto.p2play 2019-12-20 org.libreflix.app_1.apk org.libreflix.app 2018-05-29 @@ -28709,6 +28780,7 @@ org.ostrya.presencepublisher_33.apk org.ostrya.presencepublisher 2020-10-24 org.ostrya.presencepublisher_35.apk org.ostrya.presencepublisher 2020-10-30 org.ostrya.presencepublisher_36.apk org.ostrya.presencepublisher 2020-11-12 org.ostrya.presencepublisher_37.apk org.ostrya.presencepublisher 2020-12-24 +org.ostrya.presencepublisher_38.apk org.ostrya.presencepublisher 2021-03-06 org.pacien.tincapp_1.apk org.pacien.tincapp 2017-05-28 org.pacien.tincapp_2.apk org.pacien.tincapp 2017-07-07 org.pacien.tincapp_3.apk org.pacien.tincapp 2017-08-07 @@ -31601,6 +31673,7 @@ org.wikipedia_50337.apk org.wikipedia 2020-12-07 org.wikipedia_50340.apk org.wikipedia 2021-02-03 org.wikipedia_50342.apk org.wikipedia 2021-02-21 org.wikipedia_50343.apk org.wikipedia 2021-02-21 +org.wikipedia_50344.apk org.wikipedia 2021-03-06 org.wiktionary_1.apk org.wiktionary 2012-07-14 org.wingy.chan_37.apk org.wingy.chan 2014-10-19 org.wingy.chan_38.apk org.wingy.chan 2014-10-20 @@ -32952,6 +33025,7 @@ se.oandell.riksdagen_26.apk se.oandell.riksdagen 2019-06-14 se.oandell.riksdagen_29.apk se.oandell.riksdagen 2019-08-28 se.oandell.riksdagen_30.apk se.oandell.riksdagen 2020-01-03 se.oandell.riksdagen_32.apk se.oandell.riksdagen 2020-04-01 +se.oandell.riksdagen_39.apk se.oandell.riksdagen 2021-03-06 se.peterbjorkman.android.trafikinfo_12.apk se.peterbjorkman.android.trafikinfo 2011-01-27 se.peterbjorkman.android.trafikinfo_13.apk se.peterbjorkman.android.trafikinfo 2011-02-02 se.pp.mc.android.Gerberoid_10000.apk se.pp.mc.android.Gerberoid 2017-08-14 @@ -35764,6 +35838,7 @@ xyz.myachin.saveto_1.apk xyz.myachin.saveto 2021-02-15 xyz.myachin.saveto_3.apk xyz.myachin.saveto 2021-02-15 xyz.myachin.saveto_4.apk xyz.myachin.saveto 2021-02-26 xyz.myachin.saveto_6.apk xyz.myachin.saveto 2021-03-03 +xyz.myachin.saveto_7.apk xyz.myachin.saveto 2021-03-06 xyz.spinster.client.fdroid_68.apk xyz.spinster.client.fdroid 2019-11-14 xyz.spinster.client.fdroid_70.apk xyz.spinster.client.fdroid 2019-11-17 xyz.zedler.patrick.grocy_21.apk xyz.zedler.patrick.grocy 2020-10-07 -- GitLab From d3bf82ee1ffd823b353c7c4cfb0df0aebfe118e0 Mon Sep 17 00:00:00 2001 From: Russell Banks <6486495-russellbanks@users.noreply.gitlab.com> Date: Sat, 6 Mar 2021 20:51:31 +0000 Subject: [PATCH 057/103] Update email for Buddha Quotes --- metadata/org.bandev.buddhaquotes.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata/org.bandev.buddhaquotes.yml b/metadata/org.bandev.buddhaquotes.yml index f803023921fa..33a4e22a2714 100644 --- a/metadata/org.bandev.buddhaquotes.yml +++ b/metadata/org.bandev.buddhaquotes.yml @@ -2,7 +2,7 @@ Categories: - Science & Education License: GPL-3.0-or-later AuthorName: BanDev -AuthorEmail: help@computub.com +AuthorEmail: hello@bandev.uk SourceCode: https://gitlab.com/bandev/buddha-quotes IssueTracker: https://gitlab.com/bandev/buddha-quotes/issues Changelog: https://gitlab.com/bandev/buddha-quotes/-/blob/master/CHANGELOG.md -- GitLab From 5a5a6e0395b79e5f4017195bd0da103303361c2b Mon Sep 17 00:00:00 2001 From: Humberto Fraga Date: Sat, 6 Mar 2021 22:45:20 +0000 Subject: [PATCH 058/103] New app: Timer +X --- metadata/net.xisberto.timerpx.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 metadata/net.xisberto.timerpx.yml diff --git a/metadata/net.xisberto.timerpx.yml b/metadata/net.xisberto.timerpx.yml new file mode 100644 index 000000000000..fca9c6ed32d4 --- /dev/null +++ b/metadata/net.xisberto.timerpx.yml @@ -0,0 +1,25 @@ +Categories: + - Time +License: Apache-2.0 +AuthorName: Humberto Fraga +AuthorEmail: humberto.fraga+fdroid512@gmail.com +SourceCode: https://gitlab.com/humbertofraga/timerx +IssueTracker: https://gitlab.com/humbertofraga/timerx/issues + +AutoName: Timer +X + +RepoType: git +Repo: https://gitlab.com/humbertofraga/timerx.git + +Builds: + - versionName: '1.1' + versionCode: 3 + commit: v1.1 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags +CurrentVersion: '1.1' +CurrentVersionCode: 3 -- GitLab From 1dd946ce9890392405649c3a67a1539bc8c511e2 Mon Sep 17 00:00:00 2001 From: Izzy Date: Sat, 6 Mar 2021 22:08:07 +0100 Subject: [PATCH 059/103] new app: mpv remote --- metadata/miccah.mpvremote.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 metadata/miccah.mpvremote.yml diff --git a/metadata/miccah.mpvremote.yml b/metadata/miccah.mpvremote.yml new file mode 100644 index 000000000000..2434e7bc7008 --- /dev/null +++ b/metadata/miccah.mpvremote.yml @@ -0,0 +1,25 @@ +Categories: + - Connectivity + - Multimedia +License: GPL-3.0-only +AuthorName: Miccah +SourceCode: https://github.com/mcastorina/mpv-remote-app +IssueTracker: https://github.com/mcastorina/mpv-remote-app/issues + +AutoName: mpv remote + +RepoType: git +Repo: https://github.com/mcastorina/mpv-remote-app + +Builds: + - versionName: 0.0.3 + versionCode: 1 + commit: v0.0.3 + subdir: MpvRemote/app + gradle: + - yes + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags +CurrentVersion: 0.0.3 +CurrentVersionCode: 1 -- GitLab From 2b825c26d8a24203808b10505a6d9d6ad4facd53 Mon Sep 17 00:00:00 2001 From: linsui <2873532-linsui@users.noreply.gitlab.com> Date: Sun, 7 Mar 2021 02:26:07 +0000 Subject: [PATCH 060/103] Listen1 --- metadata/com.listen1.app.yml | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 metadata/com.listen1.app.yml diff --git a/metadata/com.listen1.app.yml b/metadata/com.listen1.app.yml new file mode 100644 index 000000000000..24e585db32a7 --- /dev/null +++ b/metadata/com.listen1.app.yml @@ -0,0 +1,46 @@ +AntiFeatures: + - NonFreeNet +Categories: + - Multimedia +License: MIT +WebSite: https://listen1.github.io/listen1 +SourceCode: https://github.com/listen1/listen1_mobile +IssueTracker: https://github.com/listen1/listen1_mobile/issues +Changelog: https://github.com/listen1/listen1_mobile/releases + +RepoType: git +Repo: https://github.com/listen1/listen1_mobile.git + +Builds: + - versionName: 0.8.1 + versionCode: 1 + commit: v0.8.1 + subdir: android/app + sudo: + - apt-get update || apt-get update + - apt-get install -y --no-install-recommends -t stretch-backports npm + - npm -g install yarn + gradle: + - yes + rm: + - .vscode + - __tests__ + - ios + prebuild: + - yarn install + - truncate -s 0 ../../node_modules/@react-native-community/cli/build/commands/server/external/xsel + scanignore: + - android/build.gradle + - node_modules/react-native/android/com/facebook/react/react-native + - node_modules/react-native-screens/android/build.gradle + - node_modules/@react-navigation/native/node_modules/react-native-screens/android/build.gradle + - node_modules/react-native-music-control/android/build.gradle + - node_modules/react-native/template/android/build.gradle + - node_modules/react-native-gesture-handler/android/lib/build.gradle + scandelete: + - node_modules + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags +CurrentVersion: 0.8.1 +CurrentVersionCode: 1 -- GitLab From a8788be39eba5e2ed1bcac97f45a2c123fca2cd7 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:21:00 +0000 Subject: [PATCH 061/103] Update Brackeys IDE to 2021.1.1 (10004) --- metadata/com.brackeys.ui.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/metadata/com.brackeys.ui.yml b/metadata/com.brackeys.ui.yml index a5ed4513aa75..3ddd50321a6f 100644 --- a/metadata/com.brackeys.ui.yml +++ b/metadata/com.brackeys.ui.yml @@ -32,7 +32,16 @@ Builds: gradle: - yes + - versionName: 2021.1.1 + versionCode: 10004 + commit: 2021.1.1 + subdir: app + patch: + - remove_playcore.patch + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags ^([0-9]+\.*)+$ -CurrentVersion: 2021.1.0 -CurrentVersionCode: 10003 +CurrentVersion: 2021.1.1 +CurrentVersionCode: 10004 -- GitLab From c0affd71471d89e9d0af1643339e26581a25e938 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:40:08 +0000 Subject: [PATCH 062/103] Update Arcticons to 1.4.6 (49) --- metadata/com.donnnno.arcticons.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.donnnno.arcticons.yml b/metadata/com.donnnno.arcticons.yml index 584d97addd17..80f0fa1b01fe 100644 --- a/metadata/com.donnnno.arcticons.yml +++ b/metadata/com.donnnno.arcticons.yml @@ -68,7 +68,14 @@ Builds: gradle: - yes + - versionName: 1.4.6 + versionCode: 49 + commit: 1.4.6 + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.4.5 -CurrentVersionCode: 48 +CurrentVersion: 1.4.6 +CurrentVersionCode: 49 -- GitLab From 98a8c2c8050e0de3e1cc712a061d979598e92467 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:57:00 +0000 Subject: [PATCH 063/103] Update Trigger to 3.2.0 (320) --- metadata/com.example.trigger.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.example.trigger.yml b/metadata/com.example.trigger.yml index e632b28b3707..201c3246eff5 100644 --- a/metadata/com.example.trigger.yml +++ b/metadata/com.example.trigger.yml @@ -189,7 +189,14 @@ Builds: gradle: - fdroid + - versionName: 3.2.0 + versionCode: 320 + commit: v3.2.0 + subdir: app + gradle: + - fdroid + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 3.1.3 -CurrentVersionCode: 313 +CurrentVersion: 3.2.0 +CurrentVersionCode: 320 -- GitLab From 20c31089ad4ad5c7ec778f7c20c67477634db9b1 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:59:15 +0000 Subject: [PATCH 064/103] Update Nanji to 1.3.2 (37) --- metadata/com.kazufukurou.nanji.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/com.kazufukurou.nanji.yml b/metadata/com.kazufukurou.nanji.yml index 82df24b92107..8308e07b26bb 100644 --- a/metadata/com.kazufukurou.nanji.yml +++ b/metadata/com.kazufukurou.nanji.yml @@ -36,7 +36,15 @@ Builds: gradle: - yes + - versionName: 1.3.2 + versionCode: 37 + commit: v1.3.2 + subdir: app + submodules: true + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 1.3.1 -CurrentVersionCode: 36 +CurrentVersion: 1.3.2 +CurrentVersionCode: 37 -- GitLab From eebb03cf2391098ebe59512ea3978fe968ecdfc6 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:03:33 +0000 Subject: [PATCH 065/103] Update Trail Sense to 1.8.0 (36) --- metadata/com.kylecorry.trail_sense.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.kylecorry.trail_sense.yml b/metadata/com.kylecorry.trail_sense.yml index 15203c145362..ee4f77dffc02 100644 --- a/metadata/com.kylecorry.trail_sense.yml +++ b/metadata/com.kylecorry.trail_sense.yml @@ -182,7 +182,14 @@ Builds: gradle: - yes + - versionName: 1.8.0 + versionCode: 36 + commit: 1.8.0 + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.7.2 -CurrentVersionCode: 35 +CurrentVersion: 1.8.0 +CurrentVersionCode: 36 -- GitLab From 0e55c7fc0e7f85b77cfd06ec5f6d4508afa0de92 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:07:21 +0000 Subject: [PATCH 066/103] Update Moonlight to 9.8.3 (254) --- metadata/com.limelight.yml | 81 +++++++++++++++++++++++++++++++++++++- 1 file changed, 79 insertions(+), 2 deletions(-) diff --git a/metadata/com.limelight.yml b/metadata/com.limelight.yml index f864d6191e76..f1395fceaa04 100644 --- a/metadata/com.limelight.yml +++ b/metadata/com.limelight.yml @@ -2634,7 +2634,84 @@ Builds: - popd ndk: r20b + - versionName: 9.8.3 + versionCode: 254 + commit: v9.8.3 + subdir: app + submodules: true + gradle: + - nonRoot + srclibs: + - OpenSSL@OpenSSL_1_1_1c + - opus@v1.3 + rm: + - app/src/main/jni/moonlight-core/openssl/include + - app/src/main/jni/moonlight-core/libopus/include + prebuild: sed -i 's/applicationIdSuffix/\/\/applicationIdSuffix/g' build.gradle + scandelete: + - app/src/main/jni/moonlight-core/openssl + - app/src/main/jni/moonlight-core/libopus + build: + - lib="$PWD/src/main/jni/moonlight-core" + - PATH=$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin:$PATH + - pushd $$opus$$ + - ./autogen.sh + - CC=armv7a-linux-androideabi16-clang ./configure --host=arm-linux-androideabi + --with-pic --disable-extra-programs --disable-doc + - make -j16 + - cp .libs/libopus.a ${lib}/libopus/armeabi-v7a/ + - make distclean + - CC=aarch64-linux-android21-clang ./configure --host=aarch64-linux-android + --with-pic --disable-extra-programs --disable-doc + - make -j16 + - cp .libs/libopus.a ${lib}/libopus/arm64-v8a/ + - make distclean + - CC=i686-linux-android16-clang ./configure --host=i686-linux-android --with-pic + --disable-extra-programs --disable-doc + - make -j16 + - cp .libs/libopus.a ${lib}/libopus/x86/ + - make distclean + - CC=x86_64-linux-android21-clang ./configure --host=x86_64-linux-android --with-pic + --disable-extra-programs --disable-doc + - make -j16 + - cp .libs/libopus.a ${lib}/libopus/x86_64/ + - cp -R include/ ${lib}/libopus/ + - make distclean + - popd + - pushd $$OpenSSL$$ + - CC=armv7a-linux-androideabi16-clang ./Configure android-arm no-shared no-ssl3 + no-engine no-dso no-asm no-hw no-comp no-stdio -fPIC -DOPENSSL_PIC -D__ANDROID_API__=16 + -ffast-math -O3 -funroll-loops + - make -j16 + - cp libcrypto.a ${lib}/openssl/armeabi-v7a/ + - cp libssl.a ${lib}/openssl/armeabi-v7a/ + - make distclean + - CC=aarch64-linux-android21-clang ./Configure android-arm64 no-shared no-ssl3 + no-engine no-dso no-asm no-hw no-comp no-stdio -fPIC -DOPENSSL_PIC -D__ANDROID_API__=21 + -ffast-math -O3 -funroll-loops + - make -j16 + - cp libcrypto.a ${lib}/openssl/arm64-v8a/ + - cp libssl.a ${lib}/openssl/arm64-v8a/ + - make distclean + - CC=i686-linux-android16-clang ./Configure android-x86 no-shared no-ssl3 no-engine + no-dso no-asm no-hw no-comp no-stdio -fPIC -DOPENSSL_PIC -D__ANDROID_API__=16 + -ffast-math -O3 -funroll-loops + - make -j16 + - cp libcrypto.a ${lib}/openssl/x86/ + - cp libssl.a ${lib}/openssl/x86/ + - make distclean + - CC=x86_64-linux-android21-clang ./Configure android-x86_64 no-shared no-ssl3 + no-engine no-dso no-asm no-hw no-comp no-stdio -fPIC -DOPENSSL_PIC -D__ANDROID_API__=21 + -ffast-math -O3 -funroll-loops + - make -j`nproc` + - cp libcrypto.a ${lib}/openssl/x86_64/ + - cp libssl.a ${lib}/openssl/x86_64/ + - cp -R include/ ${lib}/openssl/ + - make distclean + - popd + ndk: r20b + AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+(\.\d+)? -CurrentVersion: 9.8.2 -CurrentVersionCode: 253 +CurrentVersion: 9.8.3 +CurrentVersionCode: 254 -- GitLab From 427d17abd4b03d62c0e3eecbfa3ad1beb409946d Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:08:18 +0000 Subject: [PATCH 067/103] Set autoname of Listen 1 --- metadata/com.listen1.app.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metadata/com.listen1.app.yml b/metadata/com.listen1.app.yml index 24e585db32a7..c04e6692a4f4 100644 --- a/metadata/com.listen1.app.yml +++ b/metadata/com.listen1.app.yml @@ -8,6 +8,8 @@ SourceCode: https://github.com/listen1/listen1_mobile IssueTracker: https://github.com/listen1/listen1_mobile/issues Changelog: https://github.com/listen1/listen1_mobile/releases +AutoName: Listen 1 + RepoType: git Repo: https://github.com/listen1/listen1_mobile.git -- GitLab From 603adf2cad721993b655657c0b953aef7074a3b6 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:13:49 +0000 Subject: [PATCH 068/103] Update ${displayName} to 1.15.0 (40) --- metadata/com.madlonkay.orgro.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/metadata/com.madlonkay.orgro.yml b/metadata/com.madlonkay.orgro.yml index 231e21196f29..44e16c21af07 100644 --- a/metadata/com.madlonkay.orgro.yml +++ b/metadata/com.madlonkay.orgro.yml @@ -52,8 +52,20 @@ Builds: - $$flutter$$/bin/flutter packages pub get - $$flutter$$/bin/flutter build apk + - versionName: 1.15.0 + versionCode: 40 + commit: v1.15.0+40 + output: build/app/outputs/flutter-apk/app-release.apk + srclibs: + - flutter@1.26.0-17.6.pre + prebuild: touch android/key.properties + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter packages pub get + - $$flutter$$/bin/flutter build apk + AutoUpdateMode: Version v%v+%c UpdateCheckMode: HTTP UpdateCheckData: https://raw.githubusercontent.com/amake/orgro/master/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ -CurrentVersion: 1.14.0 -CurrentVersionCode: 39 +CurrentVersion: 1.15.0 +CurrentVersionCode: 40 -- GitLab From b9f143ea1d445ff139c33cc52c381e0b3a324a37 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:38:44 +0000 Subject: [PATCH 069/103] Update UnCiv to 3.13.5-patch2 (540) --- metadata/com.unciv.app.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/com.unciv.app.yml b/metadata/com.unciv.app.yml index 725a88ab2968..2eb8e8769757 100644 --- a/metadata/com.unciv.app.yml +++ b/metadata/com.unciv.app.yml @@ -1319,9 +1319,19 @@ Builds: - desktop prebuild: sed -i -e '/maven.aliyun.com/d' ../build.gradle.kts + - versionName: 3.13.5-patch2 + versionCode: 540 + commit: 3.13.5-patch2 + subdir: android + gradle: + - yes + rm: + - desktop + prebuild: sed -i -e '/maven.aliyun.com/d' ../build.gradle.kts + AutoUpdateMode: Version %v UpdateCheckMode: HTTP UpdateCheckData: https://raw.githubusercontent.com/yairm210/Unciv/master/buildSrc/src/main/kotlin/BuildConfig.kt|appCodeNumber = (.*)|.|appVersion = "(.*)" -CurrentVersion: 3.13.5-patch1 -CurrentVersionCode: 539 +CurrentVersion: 3.13.5-patch2 +CurrentVersionCode: 540 -- GitLab From c935f3d4183fbead15e620838542ef03f4b9fc87 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:26:49 +0000 Subject: [PATCH 070/103] Update de.corona.tracing to 1.13.2.2 (1130202) --- metadata/de.corona.tracing.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/metadata/de.corona.tracing.yml b/metadata/de.corona.tracing.yml index d7c141efdf2c..902bce4ef3a6 100644 --- a/metadata/de.corona.tracing.yml +++ b/metadata/de.corona.tracing.yml @@ -122,6 +122,20 @@ Builds: - protobuf/build ndk: r21d + - versionName: 1.13.2.2 + versionCode: 1130202 + commit: v1.13.2.2 + subdir: Corona-Warn-App + gradle: + - device + prebuild: sed -i -e 's/21.2.6472646/21.3.6528147/' build.gradle + scanignore: + - Corona-Warn-App/src/main/assets/default_app_config.bin + - Corona-Warn-App/src/main/assets/default_app_config_android.bin + scandelete: + - protobuf/build + ndk: r21d + MaintainerNotes: |- scanignored are some protobuf encoded config files, view them with: protoc --decode de.rki.coronawarnapp.server.protocols.internal.ApplicationConfiguration Server-Protocol-Buffer/src/main/proto/internal/app_config.proto \ @@ -132,5 +146,5 @@ MaintainerNotes: |- AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+\.\d+\.\d+$ -CurrentVersion: 1.13.2.0 -CurrentVersionCode: 1130200 +CurrentVersion: 1.13.2.2 +CurrentVersionCode: 1130202 -- GitLab From a893ae21f689f582a5b1e134b471b27ae473294d Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:30:56 +0000 Subject: [PATCH 071/103] Update Freenet mobile to 0.3.0-beta (301) --- metadata/org.freenetproject.mobile.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/org.freenetproject.mobile.yml b/metadata/org.freenetproject.mobile.yml index 957bfeb11b19..f7dd138e811a 100644 --- a/metadata/org.freenetproject.mobile.yml +++ b/metadata/org.freenetproject.mobile.yml @@ -35,7 +35,14 @@ Builds: gradle: - yes + - versionName: 0.3.0-beta + versionCode: 301 + commit: v0.3.0-beta + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+\.\d+(.*)? -CurrentVersion: 0.2.3-beta -CurrentVersionCode: 300 +CurrentVersion: 0.3.0-beta +CurrentVersionCode: 301 -- GitLab From 1802ea8cb729d64499aebe5121040f511fe18a76 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:07:48 +0000 Subject: [PATCH 072/103] Update Navit to v0.5.6 (2021030660) --- metadata/org.navitproject.navit.yml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/metadata/org.navitproject.navit.yml b/metadata/org.navitproject.navit.yml index 0c6c1f384a04..5ce53a1bbeb1 100644 --- a/metadata/org.navitproject.navit.yml +++ b/metadata/org.navitproject.navit.yml @@ -822,6 +822,20 @@ Builds: build: scripts/build_android.sh ndk: r20b + - versionName: v0.5.6 + versionCode: 2021030660 + commit: v0.5.6 + gradle: + - yes + output: build/outputs/apk/release/navit-release.apk + rm: + - navit/support/espeak/espeak-data/* + prebuild: + - $$SDK$$/tools/bin/sdkmanager "cmake;3.6.4111459" > /dev/null + - sed -i -e '/gradlew/d' scripts/build_android.sh + build: scripts/build_android.sh + ndk: r20b + MaintainerNotes: |- Found JAR file at navit/android/libs/TTS_library_stub.jar, removed as of v0.5.3-442-g96d9c41. NDK r12b is the minimum required as of v0.5.3, later versions may work but are untested. @@ -829,5 +843,5 @@ MaintainerNotes: |- AutoUpdateMode: Version %v UpdateCheckMode: HTTP UpdateCheckData: https://download.navit-project.org/api/version.json|"version_code":.*"(.*)"|.|"version_name":.*\"(.*)\", -CurrentVersion: v0.5.5 -CurrentVersionCode: 2008082307 +CurrentVersion: v0.5.6 +CurrentVersionCode: 2021030660 -- GitLab From 40832103378d76261a9398b097416dd7bc0aa3ae Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:10:13 +0000 Subject: [PATCH 073/103] Update Hendroid to 1.14.0 (165) --- metadata/org.nonononoki.hendroid.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/org.nonononoki.hendroid.yml b/metadata/org.nonononoki.hendroid.yml index 01b11373595b..9cb93dcc91ad 100644 --- a/metadata/org.nonononoki.hendroid.yml +++ b/metadata/org.nonononoki.hendroid.yml @@ -189,7 +189,17 @@ Builds: - sed -i -e '/osborn/d' ../build.gradle - sed -i -e '/fabric/d; /firebase/d;' build.gradle + - versionName: 1.14.0 + versionCode: 165 + commit: 1.14.0 + subdir: app + gradle: + - yes + prebuild: + - sed -i -e '/osborn/d' ../build.gradle + - sed -i -e '/fabric/d; /firebase/d;' build.gradle + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.13.8 -CurrentVersionCode: 164 +CurrentVersion: 1.14.0 +CurrentVersionCode: 165 -- GitLab From d1f33d561a94c894bc36844e7e330346258759d1 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:17:13 +0000 Subject: [PATCH 074/103] Update org.openhab.habdroid.beta to 2.16.8-beta (364) --- metadata/org.openhab.habdroid.beta.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/org.openhab.habdroid.beta.yml b/metadata/org.openhab.habdroid.beta.yml index 834e15027d5c..31b0f8c8054a 100644 --- a/metadata/org.openhab.habdroid.beta.yml +++ b/metadata/org.openhab.habdroid.beta.yml @@ -2054,10 +2054,20 @@ Builds: prebuild: sed -i -e 's|maven.fabric.io/public|repo1.maven.org/maven2|' -e /fabric/d -e '/google-services/d' build.gradle + - versionName: 2.16.8-beta + versionCode: 364 + commit: 2.16.8-beta-fdroid + subdir: mobile + gradle: + - foss + - beta + prebuild: sed -i -e 's|maven.fabric.io/public|repo1.maven.org/maven2|' -e /fabric/d + -e '/google-services/d' build.gradle + MaintainerNotes: Replace the fabric.io maven with mavencentral instead of deleting it to not trigger fdroid/fdroidserver#463. AutoUpdateMode: Version %v-fdroid UpdateCheckMode: Tags ^[0-9.]+-beta-fdroid$ -CurrentVersion: 2.16.7-beta -CurrentVersionCode: 363 +CurrentVersion: 2.16.8-beta +CurrentVersionCode: 364 -- GitLab From b9773936a3c1891fae97fadfae53d7495f76e8e5 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:35:28 +0000 Subject: [PATCH 075/103] Update Your local weather to 5.7.2 (141) --- metadata/org.thosp.yourlocalweather.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/org.thosp.yourlocalweather.yml b/metadata/org.thosp.yourlocalweather.yml index c1ae5ed43538..5eee78bc7fb6 100644 --- a/metadata/org.thosp.yourlocalweather.yml +++ b/metadata/org.thosp.yourlocalweather.yml @@ -723,7 +723,14 @@ Builds: gradle: - yes + - versionName: 5.7.2 + versionCode: 141 + commit: v5.7.2 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 5.7.1 -CurrentVersionCode: 140 +CurrentVersion: 5.7.2 +CurrentVersionCode: 141 -- GitLab From 750fef484a6ddb4a91e63402c9f90dd006963d23 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:47:07 +0000 Subject: [PATCH 076/103] Update RadarWeather to 1.9 (19) --- metadata/org.woheller69.weather.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/org.woheller69.weather.yml b/metadata/org.woheller69.weather.yml index dcd0ff9a4063..d425fa1d9e10 100644 --- a/metadata/org.woheller69.weather.yml +++ b/metadata/org.woheller69.weather.yml @@ -77,7 +77,14 @@ Builds: gradle: - yes + - versionName: '1.9' + versionCode: 19 + commit: V1.9 + subdir: app + gradle: + - yes + AutoUpdateMode: Version V%v UpdateCheckMode: Tags -CurrentVersion: '1.8' -CurrentVersionCode: 18 +CurrentVersion: '1.9' +CurrentVersionCode: 19 -- GitLab From c358f9935e7cf1e62594ba83fe549823833f2a36 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:55:30 +0000 Subject: [PATCH 077/103] Update Track Work Time to 1.1.7 (49) --- metadata/org.zephyrsoft.trackworktime.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/org.zephyrsoft.trackworktime.yml b/metadata/org.zephyrsoft.trackworktime.yml index f916e182e9ca..ba5854cb717f 100644 --- a/metadata/org.zephyrsoft.trackworktime.yml +++ b/metadata/org.zephyrsoft.trackworktime.yml @@ -182,7 +182,15 @@ Builds: gradle: - yes + - versionName: 1.1.7 + versionCode: 49 + commit: v1.1.7 + subdir: app + submodules: true + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 1.1.6 -CurrentVersionCode: 48 +CurrentVersion: 1.1.7 +CurrentVersionCode: 49 -- GitLab From fc14ffce98c6a0cb849156f4dd4c6224b8e0c099 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:16:11 +0000 Subject: [PATCH 078/103] Update Simple Keyboard to 4.7 (82) --- metadata/rkr.simplekeyboard.inputmethod.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/rkr.simplekeyboard.inputmethod.yml b/metadata/rkr.simplekeyboard.inputmethod.yml index b27181c11d9f..2f2e5ff30904 100644 --- a/metadata/rkr.simplekeyboard.inputmethod.yml +++ b/metadata/rkr.simplekeyboard.inputmethod.yml @@ -316,7 +316,14 @@ Builds: gradle: - yes + - versionName: '4.7' + versionCode: 82 + commit: '82' + subdir: app + gradle: + - yes + AutoUpdateMode: Version %c UpdateCheckMode: Tags -CurrentVersion: '4.6' -CurrentVersionCode: 81 +CurrentVersion: '4.7' +CurrentVersionCode: 82 -- GitLab From d5cbfc9f4f580c2bd2067be542aa1d0b6e4b7880 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:52:19 +0000 Subject: [PATCH 079/103] Update uk.org.boddie.android.weatherforecast to 1.5.3 (153) --- .../uk.org.boddie.android.weatherforecast.yml | 20 +++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/metadata/uk.org.boddie.android.weatherforecast.yml b/metadata/uk.org.boddie.android.weatherforecast.yml index c73156c587e9..408a4d992e88 100644 --- a/metadata/uk.org.boddie.android.weatherforecast.yml +++ b/metadata/uk.org.boddie.android.weatherforecast.yml @@ -176,6 +176,22 @@ Builds: - popd build: PYTHONPATH=$$duck-git$$ ./build.py output.apk + - versionName: 1.5.3 + versionCode: 153 + commit: 1.5.3 + sudo: + - apt-get update || apt-get update + - apt-get install -y python-crypto python-pygments markdown python-markdown + imagemagick pngquant python-cairosvg + output: output.apk + srclibs: + - duck-git@1.0.7 + prebuild: + - pushd $$duck-git$$ + - git reset --hard `cat ../../uk.org.boddie.android.weatherforecast/deps/DUCK` + - popd + build: PYTHONPATH=$$duck-git$$ ./build.py output.apk + MaintainerNotes: |- From version 1.3.0, the app handles its own dependencies during the build, using the prebuild step to take a specific version of DUCK then update it @@ -185,5 +201,5 @@ AutoUpdateMode: Version %v UpdateCheckMode: HTTP UpdateCheckData: https://gitlab.com/dboddie/weather-forecast/-/raw/master/build.py|version_code = "(.*)"|.|version = "(.*)" -CurrentVersion: 1.5.2 -CurrentVersionCode: 152 +CurrentVersion: 1.5.3 +CurrentVersionCode: 153 -- GitLab From b06ec0f9569d7133f12113f2e82db28cc33b293f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:34:34 +0000 Subject: [PATCH 080/103] Update Nextcloud to 20210307 (20210307) --- metadata/com.nextcloud.android.beta.yml | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/metadata/com.nextcloud.android.beta.yml b/metadata/com.nextcloud.android.beta.yml index b6074785be72..99820f9531f2 100644 --- a/metadata/com.nextcloud.android.beta.yml +++ b/metadata/com.nextcloud.android.beta.yml @@ -6714,9 +6714,25 @@ Builds: scandelete: - src/androidTest + - versionName: '20210307' + versionCode: 20210307 + commit: dev-20210307 + submodules: true + gradle: + - versionDev + rm: + - user_manual + - gplay.gradle + prebuild: + - mkdir -p $HOME/.gradle + - echo "org.gradle.jvmargs=-Xmx9g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError" + > $HOME/.gradle/gradle.properties + scandelete: + - src/androidTest + MaintainerNotes: Tags get removed. See https://github.com/nextcloud/android/issues/969. AutoUpdateMode: Version dev-%c UpdateCheckMode: Tags ^dev -CurrentVersion: '20210304' -CurrentVersionCode: 20210304 +CurrentVersion: '20210307' +CurrentVersionCode: 20210307 -- GitLab From cadeb4bd450ac20ebada25a7a084679f9e344d74 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:41:46 +0000 Subject: [PATCH 081/103] Update ADBungFu to 4.0-15 (15) --- metadata/com.oF2pks.adbungfu.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.oF2pks.adbungfu.yml b/metadata/com.oF2pks.adbungfu.yml index 1e38459d4da0..334f36dd1df2 100644 --- a/metadata/com.oF2pks.adbungfu.yml +++ b/metadata/com.oF2pks.adbungfu.yml @@ -78,7 +78,14 @@ Builds: gradle: - yes + - versionName: 4.0-15 + versionCode: 15 + commit: v4.0-15 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 4.0-14 -CurrentVersionCode: 14 +CurrentVersion: 4.0-15 +CurrentVersionCode: 15 -- GitLab From eb8043c5062354d0875b443e008a89bccf3e0bc2 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:42:31 +0000 Subject: [PATCH 082/103] Update ClassyShark3xodus to 2.0-25 (25) --- metadata/com.oF2pks.classyshark3xodus.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/com.oF2pks.classyshark3xodus.yml b/metadata/com.oF2pks.classyshark3xodus.yml index 2cd435fe650b..ee9eaa57f002 100644 --- a/metadata/com.oF2pks.classyshark3xodus.yml +++ b/metadata/com.oF2pks.classyshark3xodus.yml @@ -189,7 +189,17 @@ Builds: - ClassySharkAndroid/app/src/main/java/com/google/classysharkandroid/activities/ClassesListActivity.java - ClassySharkAndroid/app/src/main/java/com/google/classysharkandroid/dex/DexLoaderBuilder.java + - versionName: 2.0-25 + versionCode: 25 + commit: v2.0-25 + subdir: ClassySharkAndroid/app + gradle: + - yes + scanignore: + - ClassySharkAndroid/app/src/main/java/com/google/classysharkandroid/activities/ClassesListActivity.java + - ClassySharkAndroid/app/src/main/java/com/google/classysharkandroid/dex/DexLoaderBuilder.java + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 2.0-24 -CurrentVersionCode: 24 +CurrentVersion: 2.0-25 +CurrentVersionCode: 25 -- GitLab From d94009c1c02c98f574f8b883a0e2fa5f93f2012f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:23:49 +0000 Subject: [PATCH 083/103] Update beat-game to 0.5.0 (5) --- metadata/com.serwylo.beatgame.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.serwylo.beatgame.yml b/metadata/com.serwylo.beatgame.yml index 3e9d4841cb1f..65e1e8a13ece 100644 --- a/metadata/com.serwylo.beatgame.yml +++ b/metadata/com.serwylo.beatgame.yml @@ -38,7 +38,14 @@ Builds: gradle: - yes + - versionName: 0.5.0 + versionCode: 5 + commit: v0.5.0 + subdir: android + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 0.4.0 -CurrentVersionCode: 4 +CurrentVersion: 0.5.0 +CurrentVersionCode: 5 -- GitLab From 977f1afaf4c6e78cc28362cfe98ee06b6cc5239f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:31:42 +0000 Subject: [PATCH 084/103] Update Flashlight to 5.4.2 (46) --- metadata/com.simplemobiletools.flashlight.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/com.simplemobiletools.flashlight.yml b/metadata/com.simplemobiletools.flashlight.yml index 514789c05f32..bb2e6de44f22 100644 --- a/metadata/com.simplemobiletools.flashlight.yml +++ b/metadata/com.simplemobiletools.flashlight.yml @@ -252,7 +252,15 @@ Builds: - yes prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle + - versionName: 5.4.2 + versionCode: 46 + commit: 5.4.2 + subdir: app + gradle: + - yes + prebuild: sed -i -e '/keystore.*{/,/}/d; /keystore/d' build.gradle + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 5.4.1 -CurrentVersionCode: 45 +CurrentVersion: 5.4.2 +CurrentVersionCode: 46 -- GitLab From 2c355177da7951a12b7604c5fd1ee0b613129668 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:36:13 +0000 Subject: [PATCH 085/103] Update Package Manager to v3.8 (38) --- metadata/com.smartpack.packagemanager.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/com.smartpack.packagemanager.yml b/metadata/com.smartpack.packagemanager.yml index feba5a8abe3a..df7113bddd1b 100644 --- a/metadata/com.smartpack.packagemanager.yml +++ b/metadata/com.smartpack.packagemanager.yml @@ -65,7 +65,14 @@ Builds: gradle: - fdroid + - versionName: v3.8 + versionCode: 38 + commit: v3.8 + subdir: app + gradle: + - fdroid + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: v3.7 -CurrentVersionCode: 37 +CurrentVersion: v3.8 +CurrentVersionCode: 38 -- GitLab From caec89485a192c1699ae95df3a9a18aef482eef1 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:57:56 +0000 Subject: [PATCH 086/103] Update F-Droid Build Status to 1.10 (13) --- metadata/de.storchp.fdroidbuildstatus.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/de.storchp.fdroidbuildstatus.yml b/metadata/de.storchp.fdroidbuildstatus.yml index b0638318c666..3e7701f80149 100644 --- a/metadata/de.storchp.fdroidbuildstatus.yml +++ b/metadata/de.storchp.fdroidbuildstatus.yml @@ -83,7 +83,14 @@ Builds: gradle: - yes + - versionName: '1.10' + versionCode: 13 + commit: '1.10' + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 1.9.2 -CurrentVersionCode: 12 +CurrentVersion: '1.10' +CurrentVersionCode: 13 -- GitLab From 6f32b12f23bfd2e44fc27f45c9d0a42997a373ab Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:13:16 +0000 Subject: [PATCH 087/103] Update Password Store to 1.13.3 (11330) --- metadata/dev.msfjarvis.aps.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/dev.msfjarvis.aps.yml b/metadata/dev.msfjarvis.aps.yml index e0a138dc96ca..c353c361046e 100644 --- a/metadata/dev.msfjarvis.aps.yml +++ b/metadata/dev.msfjarvis.aps.yml @@ -96,6 +96,16 @@ Builds: scanignore: - autofill-parser/src/main/assets/publicsuffixes + - versionName: 1.13.3 + versionCode: 11330 + commit: v1.13.3 + subdir: app + gradle: + - free + prebuild: echo "org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m" >> ../gradle.properties + scanignore: + - autofill-parser/src/main/assets/publicsuffixes + MaintainerNotes: |- The file at `autofill-parser/src/main/assets/publicsuffixes` is a version of the [Public Suffix List](https://publicsuffix.org/) that has been @@ -105,5 +115,5 @@ MaintainerNotes: |- AutoUpdateMode: Version v%v UpdateCheckMode: Tags v[0-9]+\.[0-9]+\.[0-9]+ -CurrentVersion: 1.13.2 -CurrentVersionCode: 11320 +CurrentVersion: 1.13.3 +CurrentVersionCode: 11330 -- GitLab From 33a0300f537e10f23993731587d8b3fd95917489 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:47:40 +0000 Subject: [PATCH 088/103] Update HexViewer to 1.9 (11) --- metadata/fr.ralala.hexviewer.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/fr.ralala.hexviewer.yml b/metadata/fr.ralala.hexviewer.yml index 3f9ac34987c7..e1556c81a37a 100644 --- a/metadata/fr.ralala.hexviewer.yml +++ b/metadata/fr.ralala.hexviewer.yml @@ -33,7 +33,14 @@ Builds: gradle: - yes + - versionName: '1.9' + versionCode: 11 + commit: v1.9 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: '1.8' -CurrentVersionCode: 10 +CurrentVersion: '1.9' +CurrentVersionCode: 11 -- GitLab From 9aa9c37dce3978003a7d568d2ce5e43be77fe240 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:43:02 +0000 Subject: [PATCH 089/103] Update VoIP.ms SMS to 0.6.20 (140) --- metadata/net.kourlas.voipms_sms.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/metadata/net.kourlas.voipms_sms.yml b/metadata/net.kourlas.voipms_sms.yml index 74e3b8fe972e..12824061fd6b 100644 --- a/metadata/net.kourlas.voipms_sms.yml +++ b/metadata/net.kourlas.voipms_sms.yml @@ -164,7 +164,16 @@ Builds: prebuild: sed -i -e '/google-services/d' -e '/fabric/d' -e '/whenTaskAdded/,+6d' build.gradle ../build.gradle + - versionName: 0.6.20-fdroid + versionCode: 140 + commit: v0.6.20 + subdir: voipms-sms + gradle: + - fdroidFull + prebuild: sed -i -e '/google-services/d' -e '/fabric/d' -e '/whenTaskAdded/,+6d' + build.gradle ../build.gradle + AutoUpdateMode: Version +-fdroid v%v UpdateCheckMode: Tags -CurrentVersion: 0.6.19 -CurrentVersionCode: 139 +CurrentVersion: 0.6.20 +CurrentVersionCode: 140 -- GitLab From 57141a03e9e45a7463ec164390358a32e9fdc666 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 03:45:35 +0000 Subject: [PATCH 090/103] Update Price Per Unit to 1.4.0 (15) --- metadata/net.nitratine.priceperunit.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/net.nitratine.priceperunit.yml b/metadata/net.nitratine.priceperunit.yml index 642e97b3e66d..5e9024b3b4f9 100644 --- a/metadata/net.nitratine.priceperunit.yml +++ b/metadata/net.nitratine.priceperunit.yml @@ -28,7 +28,14 @@ Builds: gradle: - yes + - versionName: 1.4.0 + versionCode: 15 + commit: v1.4.0 + subdir: app + gradle: + - yes + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 1.3.8 -CurrentVersionCode: 14 +CurrentVersion: 1.4.0 +CurrentVersionCode: 15 -- GitLab From e7720a0b790e244d7d3e3de82a407a9b99e1af72 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:19:44 +0000 Subject: [PATCH 091/103] Update Gadgetbridge to 0.55.0 (190) --- metadata/nodomain.freeyourgadget.gadgetbridge.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/nodomain.freeyourgadget.gadgetbridge.yml b/metadata/nodomain.freeyourgadget.gadgetbridge.yml index f7e5434003c6..c407caa6b4b3 100644 --- a/metadata/nodomain.freeyourgadget.gadgetbridge.yml +++ b/metadata/nodomain.freeyourgadget.gadgetbridge.yml @@ -1299,7 +1299,14 @@ Builds: gradle: - yes + - versionName: 0.55.0 + versionCode: 190 + commit: 0.55.0 + subdir: app + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: 0.54.1 -CurrentVersionCode: 189 +CurrentVersion: 0.55.0 +CurrentVersionCode: 190 -- GitLab From 3965e498cfe250b7e3dfd414b545092f3264c60f Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 04:21:23 +0000 Subject: [PATCH 092/103] Update TriPeaks to 0.20 (3) --- metadata/ogz.tripeaks.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/metadata/ogz.tripeaks.yml b/metadata/ogz.tripeaks.yml index affda20c727b..20d7d3fef1b6 100644 --- a/metadata/ogz.tripeaks.yml +++ b/metadata/ogz.tripeaks.yml @@ -18,7 +18,14 @@ Builds: gradle: - yes + - versionName: '0.20' + versionCode: 3 + commit: '0.20' + subdir: android + gradle: + - yes + AutoUpdateMode: Version %v UpdateCheckMode: Tags -CurrentVersion: '0.1' -CurrentVersionCode: 1 +CurrentVersion: '0.20' +CurrentVersionCode: 3 -- GitLab From 8c9157d9265822b9b45d7ea9f2d69546933be480 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 05:14:59 +0000 Subject: [PATCH 093/103] Update INSTEAD to 0.8.4 (80400) --- metadata/org.emunix.insteadlauncher.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/metadata/org.emunix.insteadlauncher.yml b/metadata/org.emunix.insteadlauncher.yml index 4e5c6d25334d..84ffa3741a09 100644 --- a/metadata/org.emunix.insteadlauncher.yml +++ b/metadata/org.emunix.insteadlauncher.yml @@ -75,7 +75,17 @@ Builds: preassemble: - downloadDependencies + - versionName: 0.8.4 + versionCode: 80400 + commit: v0.8.4 + subdir: app + gradle: + - yes + ndk: r20b + preassemble: + - downloadDependencies + AutoUpdateMode: Version v%v UpdateCheckMode: Tags -CurrentVersion: 0.8.3 -CurrentVersionCode: 803 +CurrentVersion: 0.8.4 +CurrentVersionCode: 80400 -- GitLab From a0fbd038fc0521eac68b47703b3e9938697f8db8 Mon Sep 17 00:00:00 2001 From: F-Droid checkupdates bot Date: Sun, 7 Mar 2021 05:16:22 +0000 Subject: [PATCH 094/103] Update Encointerwallet to 1.0.0 (808) --- metadata/org.encointer.wallet.yml | 34 +++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/metadata/org.encointer.wallet.yml b/metadata/org.encointer.wallet.yml index 48db4cc292d4..2dc2b53f46b0 100644 --- a/metadata/org.encointer.wallet.yml +++ b/metadata/org.encointer.wallet.yml @@ -166,8 +166,38 @@ Builds: - $$flutter$$/bin/flutter config --no-analytics - $$flutter$$/bin/flutter build apk --flavor fdroid + - versionName: 1.0.0 + versionCode: 808 + commit: v1.0.0 + init: + - curl -Lo node.tar.xz https://nodejs.org/dist/v12.18.2/node-v12.18.2-linux-x64.tar.xz + - echo "b8dc634798ee783482c2ae1755bd7dff09d83fa7bb037cdc370b601d0a5e5cbb node.tar.xz" + | sha256sum -c - + - tar -vxf node.tar.xz + - curl -Lo yarn.tar.gz https://github.com/yarnpkg/yarn/releases/download/v1.22.4/yarn-v1.22.4.tar.gz + - echo "bc5316aa110b2f564a71a3d6e235be55b98714660870c5b6b2d2d3f12587fb58 yarn.tar.gz" + | sha256sum -c - + - tar zvxf yarn.tar.gz + - export PATH=$PATH:$PWD/node-v12.18.2-linux-x64/bin:$PWD/yarn-v1.22.4/bin + - pushd ./lib/js_service_encointer + - yarn install + - yarn run build + - popd + output: build/app/outputs/flutter-apk/app-fdroid-release.apk + srclibs: + - flutter@1.22.2 + rm: + - node-v12.18.2-linux-x64 + - yarn-v1.22.4 + - node.tar.xz + - yarn.tar.gz + - lib/js_service_encointer/node_modules + build: + - $$flutter$$/bin/flutter config --no-analytics + - $$flutter$$/bin/flutter build apk --flavor fdroid + AutoUpdateMode: Version v%v UpdateCheckMode: HTTP UpdateCheckData: https://raw.githubusercontent.com/encointer/encointer-wallet-flutter/beta/pubspec.yaml|version:\s.+\+(\d+)|.|version:\s(.+)\+ -CurrentVersion: 0.9.2 -CurrentVersionCode: 807 +CurrentVersion: 1.0.0 +CurrentVersionCode: 808 -- GitLab From f7eef992b45ff4e4e321cbb8a8773ae14905229d Mon Sep 17 00:00:00 2001 From: Test <2001719-ClockGen@users.noreply.gitlab.com> Date: Sun, 7 Mar 2021 05:34:58 +0000 Subject: [PATCH 095/103] Update EDS Lite to 2.0.0.237 (237) --- metadata/com.sovworks.edslite.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/metadata/com.sovworks.edslite.yml b/metadata/com.sovworks.edslite.yml index 135475e5d43d..629642a86083 100644 --- a/metadata/com.sovworks.edslite.yml +++ b/metadata/com.sovworks.edslite.yml @@ -28,7 +28,15 @@ Builds: gradle: - liteLicCheckNoneNoinetNofsml + - versionName: 2.0.0.237 + versionCode: 237 + commit: 8a0c0d3e81804d37ff593a26414b7470440b2665 + subdir: app + gradle: + - liteLicCheckNoneNoinetNofsml + ndk: r13b + AutoUpdateMode: Version release-lite-%c UpdateCheckMode: Tags -CurrentVersion: 2.0.0.224 -CurrentVersionCode: 224 +CurrentVersion: 2.0.0.237 +CurrentVersionCode: 237 -- GitLab From dcf8f9cdc78f93fe3dfb9aa0f64a29cc07772d0e Mon Sep 17 00:00:00 2001 From: Tobias_Groza <304016-Tobias_Groza@noreply.gitlab.com> Date: Sun, 7 Mar 2021 01:35:21 +0100 Subject: [PATCH 096/103] Update NewPipe to 0.20.11 Use normal F-Droid builds for NewPipe again --- metadata/org.schabi.newpipe.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/metadata/org.schabi.newpipe.yml b/metadata/org.schabi.newpipe.yml index dc1907d45990..91f4bf5797b0 100644 --- a/metadata/org.schabi.newpipe.yml +++ b/metadata/org.schabi.newpipe.yml @@ -659,12 +659,20 @@ Builds: - versionName: 0.20.6 versionCode: 960 + disable: signing of reproducible builds is broken commit: v0.20.6 subdir: app gradle: - yes -AutoUpdateMode: None -UpdateCheckMode: None -CurrentVersion: 0.20.6 -CurrentVersionCode: 960 + - versionName: 0.20.11 + versionCode: 965 + commit: v0.20.11 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags .*[0-9]$ +CurrentVersion: 0.20.11 +CurrentVersionCode: 965 -- GitLab From 49659f3e097824dd5b62191fcd626fa3f8dbfff6 Mon Sep 17 00:00:00 2001 From: Federico Dossena <3659347-botnet437@users.noreply.gitlab.com> Date: Sun, 7 Mar 2021 12:52:10 +0000 Subject: [PATCH 097/103] Added DozeOff --- metadata/com.dosse.dozeoff.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 metadata/com.dosse.dozeoff.yml diff --git a/metadata/com.dosse.dozeoff.yml b/metadata/com.dosse.dozeoff.yml new file mode 100644 index 000000000000..e18e76924525 --- /dev/null +++ b/metadata/com.dosse.dozeoff.yml @@ -0,0 +1,32 @@ +Categories: + - Connectivity + - System +License: GPL-3.0-or-later +AuthorName: Federico Dossena +AuthorEmail: info@fdossena.com +AuthorWebSite: https://fdossena.com/ +WebSite: https://fdossena.com/?p=dozeoff/i.frag +SourceCode: https://github.com/adolfintel/DozeOff +IssueTracker: https://github.com/adolfintel/DozeOff/issues +Changelog: https://github.com/adolfintel/DozeOff/releases +Donate: https://paypal.me/sineisochronic + +AutoName: DozeOff + +RequiresRoot: 'yes' + +RepoType: git +Repo: https://github.com/adolfintel/DozeOff.git + +Builds: + - versionName: '1.0' + versionCode: 1 + commit: '1.0' + subdir: DozeOff/app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: '1.0' +CurrentVersionCode: 1 -- GitLab From a8acffd9994231df9028bf8e7e9e221275a480f8 Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 15:34:49 +0000 Subject: [PATCH 098/103] new app: xyz.myachin.downloader --- metadata/xyz.myachin.downloader.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 metadata/xyz.myachin.downloader.yml diff --git a/metadata/xyz.myachin.downloader.yml b/metadata/xyz.myachin.downloader.yml new file mode 100644 index 000000000000..40a27fdda0cb --- /dev/null +++ b/metadata/xyz.myachin.downloader.yml @@ -0,0 +1,25 @@ +Categories: + - System +License: CDDL-1.0 +AuthorName: Umnik +SourceCode: https://notabug.org/Umnik/DownloaderForSaveTo +IssueTracker: https://notabug.org/Umnik/DownloaderForSaveTo/issues +Changelog: https://notabug.org/Umnik/DownloaderForSaveTo/releases + +AutoName: Downloader (for Save to...) + +RepoType: git +Repo: https://notabug.org/Umnik/DownloaderForSaveTo.git + +Builds: + - versionName: '1.4' + versionCode: 4 + commit: '1.4' + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: '1.4' +CurrentVersionCode: 4 -- GitLab From bfb4323c2ea4a9749365c3575c47eb6c31144557 Mon Sep 17 00:00:00 2001 From: linsui <2873532-linsui@users.noreply.gitlab.com> Date: Sun, 7 Mar 2021 16:17:30 +0000 Subject: [PATCH 099/103] fix issuebot trigger --- tools/trigger-issuebot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/trigger-issuebot b/tools/trigger-issuebot index 3f613577b0ef..bff908235003 100755 --- a/tools/trigger-issuebot +++ b/tools/trigger-issuebot @@ -1,8 +1,8 @@ #!/bin/bash -e get_merge_request_iid() { - for page in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19; do - for mr in `curl --silent ${CI_API_V4_URL}/projects/${project_id}/merge_requests?page=${page} | grep -Eo '"iid": *[0-9]+' | grep -Eo '[0-9]+$'`; do + for page in 1 2 3 4 5; do + for mr in `curl --silent "${CI_API_V4_URL}/projects/${project_id}/merge_requests?page=${page}&per_page=50&state=opened&order_by=updated_at" | grep -Eo '"iid": *[0-9]+' | grep -Eo '[0-9]+$'`; do if curl --silent ${CI_API_V4_URL}/projects/${project_id}/merge_requests/$mr/pipelines \ | grep -Eo "\"id\": *${CI_PIPELINE_ID}," > /dev/null; then echo $mr -- GitLab From 14023c32f0e7f240d6e3fd14121232bd4283dadc Mon Sep 17 00:00:00 2001 From: "Felix C. Stegerman" Date: Sun, 7 Mar 2021 13:19:53 +0100 Subject: [PATCH 100/103] New app: Jiten Japanese Dictionary (dev.obfusk.jiten) --- metadata/dev.obfusk.jiten.yml | 69 +++++++++++++++++++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 metadata/dev.obfusk.jiten.yml diff --git a/metadata/dev.obfusk.jiten.yml b/metadata/dev.obfusk.jiten.yml new file mode 100644 index 000000000000..958a6bfea479 --- /dev/null +++ b/metadata/dev.obfusk.jiten.yml @@ -0,0 +1,69 @@ +Categories: + - Science & Education +License: AGPL-3.0-or-later +AuthorName: obfusk +WebSite: https://github.com/obfusk/jiten +SourceCode: https://github.com/obfusk/jiten +IssueTracker: https://github.com/obfusk/jiten/issues +Donate: https://ko-fi.com/obfusk + +Name: Jiten Japanese Dictionary + +RepoType: git +Repo: https://github.com/obfusk/jiten + +Builds: + - versionName: 1.0.0 + versionCode: 1010000001 + commit: v1.0.0 + subdir: android + sudo: + - ( apt-get update || apt-get update ) + - apt-get install -y build-essential git + - apt-get install -y libsqlite3-dev libpcre3-dev + - apt-get install -y openjdk-11-jdk-headless + - apt-get install -y zlib1g-dev zip unzip pkg-config libffi-dev + - apt-get install -y libltdl-dev libssl-dev + - apt-get install -y lld-7 + - ln -fs lld-7 /usr/bin/lld + - cd build/srclib/cpython + - ./configure --enable-loadable-sqlite-extensions + - make -j`nproc` + - make altinstall + output: bin/jiten-$$VERSION$$-armeabi-v7a-release-unsigned.apk + srclibs: + - cpython@v3.7.10 + - buildozer@1.2.0 + - python-for-android@ab65c485822ec7832912fe6f59ec5aaf0045f185 + prebuild: + - python3.7 -mvenv ../../../env + - source ../../../env/bin/activate + - ln -sf "$$python-for-android$$" .p4a + - sed -r "s:#?android.sdk_path =.*:android.sdk_path = $$SDK$$:" -i buildozer.spec + - sed -r "s:#?android.ndk_path =.*:android.ndk_path = $$NDK$$:" -i buildozer.spec + - sed -r "s:#?android.accept_sdk_license =.*:android.accept_sdk_license = False:" + -i buildozer.spec + - sed -r "s:#?p4a.source_dir =.*:p4a.source_dir = $$python-for-android$$:" -i + buildozer.spec + - make _setup_user BUILDOZER="$$buildozer$$" PIP_INSTALL='pip3 install' + scanignore: + - jiten/res/jmdict/jmdict-unpatched.xml.gz + - jiten/res/jmdict/kanjidic2-unpatched.xml.gz + - jiten/res/radicals/kanjivg.xml.gz + build: + - source ../../../env/bin/activate + - make release-armeabi-v7a + ndk: r22 + +MaintainerNotes: We're excluding some *.xml.gz files from the scan process because + they are only compressed to prevent the source repository from becoming unnecessarily + large and to avoid going over the maximum individual file size of common git hosting + services. + +AutoUpdateMode: Version v%v +UpdateCheckMode: HTTP +VercodeOperation: '%c - 1' +UpdateCheckData: https://raw.githubusercontent.com/obfusk/jiten/master/android/buildozer.spec|android.numeric_version + *= *([0-9]+)|.|version *= *([0-9.a-g-]+) +CurrentVersion: 1.0.0 +CurrentVersionCode: 1010000001 -- GitLab From d1354c88ef9ec9d446481de1bdd62b5d283f6f0e Mon Sep 17 00:00:00 2001 From: Px3XjG6P Date: Sun, 7 Mar 2021 17:04:29 +0000 Subject: [PATCH 101/103] New app: Netflix to IMDb --- metadata/be.knars.netflixtoimdb.yml | 32 +++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 metadata/be.knars.netflixtoimdb.yml diff --git a/metadata/be.knars.netflixtoimdb.yml b/metadata/be.knars.netflixtoimdb.yml new file mode 100644 index 000000000000..a6eaf24d6b15 --- /dev/null +++ b/metadata/be.knars.netflixtoimdb.yml @@ -0,0 +1,32 @@ +AntiFeatures: + - NonFreeNet + - NonFreeDep +Categories: + - Multimedia +License: GPL-3.0-only +SourceCode: https://github.com/Px3XjG6P/NetflixtoIMDb +IssueTracker: https://github.com/Px3XjG6P/NetflixtoIMDb/issues + +AutoName: Netflix to IMDb +Summary: A Netflix user can easily lookup a title in the IMDb +Description: |- + When a Netflix user taps the share icon in the Netflix app + and then selects ''this'' app (= Netflix to IMDb) then + the title is looked up in the IMDb, via an internet browser, + or in the IMDb app if it is installed. + +RepoType: git +Repo: https://github.com/Px3XjG6P/NetflixtoIMDb + +Builds: + - versionName: '3' + versionCode: 3 + commit: '3' + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: '3' +CurrentVersionCode: 3 -- GitLab From cebd2712b7c729875ab7d0bb6f1f158372bfdbc6 Mon Sep 17 00:00:00 2001 From: Roman T Date: Sun, 7 Mar 2021 17:21:37 +0000 Subject: [PATCH 102/103] Update Counter --- metadata/me.tsukanov.counter.yml | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/metadata/me.tsukanov.counter.yml b/metadata/me.tsukanov.counter.yml index bb302ad4379f..6d0150073e5e 100644 --- a/metadata/me.tsukanov.counter.yml +++ b/metadata/me.tsukanov.counter.yml @@ -2,12 +2,12 @@ Categories: - Writing License: Apache-2.0 AuthorName: Roman Tsukanov -AuthorEmail: googleplay@roman.zone +AuthorEmail: f-droid@roman.zone AuthorWebSite: https://roman.zone/ -SourceCode: https://github.com/gentlecat/Simple-Counter/ -IssueTracker: https://github.com/gentlecat/Simple-Counter/issues -Translation: https://crowdin.net/project/simple-counter -Changelog: https://github.com/gentlecat/Simple-Counter/blob/HEAD/CHANGELOG.md +SourceCode: https://github.com/gentlecat/counter/ +IssueTracker: https://github.com/gentlecat/counter/issues +Translation: https://crowdin.net/project/counter +Changelog: https://github.com/gentlecat/counter/blob/HEAD/CHANGELOG.md AutoName: Counter Description: |- @@ -15,7 +15,7 @@ Description: |- their own names and values. Values can be changed using volume buttons. RepoType: git -Repo: https://github.com/gentlecat/Simple-Counter/ +Repo: https://github.com/gentlecat/counter/ Builds: - versionName: '13' @@ -59,6 +59,14 @@ Builds: - yes prebuild: sed -i -e 's/mavenCentral()/jcenter()/' build.gradle + - versionName: '22' + versionCode: 22 + commit: v22 + subdir: app/ + gradle: + - yes + prebuild: sed -i -e 's/mavenCentral()/jcenter()/' build.gradle + AutoUpdateMode: Version v%c UpdateCheckMode: Tags CurrentVersion: '20' -- GitLab From 93fbf2371d16873124ce6cf52e0c31950bd90cde Mon Sep 17 00:00:00 2001 From: fossdd Date: Sun, 7 Mar 2021 20:23:36 +0000 Subject: [PATCH 103/103] ./tools/check-fastlane-as-fallback.py metadata/de.luhmer.owncloudnewsreader.yml metadata/org.ddosolitary.okcagent.yml metadata/pro.rudloff.openvegemap.yml metadata/org.fossasia.badgemagic.yml metadata/mono.hg.yml metadata/ryey.easer.yml metadata/org.equeim.tremotesf.yml metadata/im.quicksy.client.yml metadata/com.wmstein.transektcount.yml metadata/com.fabienli.dokuwiki.yml metadata/org.example.rosary.yml metadata/de.badaix.snapcast.yml metadata/co.epitre.aelf_lectures.yml metadata/com.tmendes.birthdaydroid.yml metadata/com.mkulesh.onpc.yml metadata/app.crescentcash.src.yml metadata/com.mschlauch.comfortreader.yml metadata/de.php_tech.piggybudget.yml metadata/de.markusfisch.android.binaryeye.yml metadata/com.aurora.corona.yml metadata/it.diab.yml metadata/com.simplemobiletools.contacts.yml metadata/taco.apkmirror.yml metadata/com.github.moko256.twitlatte.yml metadata/net.fabiszewski.ulogger.yml metadata/xyz.hisname.fireflyiii.yml metadata/com.serwylo.lexica.yml metadata/com.marcospoerl.simplypace.yml metadata/org.fitchfamily.android.wifi_backend.yml metadata/com.owncloud.android.yml metadata/me.ccrama.redditslide.yml metadata/com.movim.movim.yml metadata/de.grobox.liberario.yml metadata/com.termux.yml metadata/ru.henridellal.dialer.yml metadata/nl.implode.weer.yml metadata/de.baumann.weather.yml metadata/com.brentpanther.bitcoinwidget.yml metadata/uk.co.richyhbm.monochromatic.yml metadata/com.luk.saucenao.yml metadata/axp.tool.apkextractor.yml metadata/org.gateshipone.odyssey.yml metadata/io.github.subhamtyagi.lastlauncher.yml metadata/es.eoinrul.ecwt.yml metadata/com.mikifus.padland.yml metadata/com.adguard.android.contentblocker.yml metadata/org.liberty.android.freeotpplus.yml metadata/com.corphish.nightlight.generic.yml metadata/apps.amine.bou.readerforselfoss.yml metadata/io.github.subhamtyagi.nightmode.yml metadata/com.rockbyte.arxiv.yml metadata/io.github.deweyreed.clipboardcleaner.yml metadata/de.markusfisch.android.shadereditor.yml metadata/org.fitchfamily.android.gsmlocation.yml metadata/ryey.colorsniffer.yml metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml metadata/com.simplemobiletools.gallery.yml metadata/de.markusfisch.android.wavelines.yml metadata/io.github.lonamiwebs.klooni.yml metadata/org.pipoypipagames.towerjumper.yml metadata/org.fitchfamily.android.dejavu.yml metadata/com.maxfour.music.yml metadata/com.aurora.adroid.yml metadata/de.baumann.browser.yml metadata/cz.martykan.forecastie.yml metadata/io.github.subhamtyagi.privacyapplock.yml metadata/hu.tagsoft.ttorrent.search.yml metadata/ru.yanus171.feedexfork.yml metadata/org.secuso.privacyfriendlypasswordgenerator.yml metadata/tech.ula.yml metadata/com.cookiegames.smartcookie.yml metadata/org.schabi.stethox.yml metadata/com.smilla.greentooth.yml metadata/hr.kravarscan.enchantedfortress.yml metadata/com.adrienpoupa.attestationcoronavirus.yml metadata/com.ulicae.cinelog.yml metadata/org.yuttadhammo.BodhiTimer.yml metadata/com.iven.musicplayergo.yml metadata/dk.meznik.jan.encrypttext.yml metadata/com.elsdoerfer.android.autostarts.yml metadata/com.lindevhard.android.raspfinder.yml metadata/org.moire.opensudoku.yml metadata/de.saschahlusiak.freebloks.yml metadata/com.oasisfeng.island.fdroid.yml metadata/com.craigd.lmsmaterial.app.yml metadata/com.m3sv.plainupnp.yml metadata/org.fitchfamily.android.symphony.yml metadata/de.baumann.hhsmoodle.yml metadata/com.grocerymanager.yml metadata/com.simplemobiletools.calendar.yml metadata/info.zamojski.soft.towercollector.yml metadata/com.mkulesh.micromath.plus.yml metadata/com.simplemobiletools.notes.yml metadata/com.wmstein.tourcount.yml metadata/de.tap.easy_xkcd.yml --- metadata/app.crescentcash.src.yml | 11 ------ metadata/apps.amine.bou.readerforselfoss.yml | 5 --- metadata/axp.tool.apkextractor.yml | 11 ------ metadata/co.epitre.aelf_lectures.yml | 24 ------------- .../com.adguard.android.contentblocker.yml | 6 ---- ...com.adrienpoupa.attestationcoronavirus.yml | 3 -- metadata/com.aurora.adroid.yml | 9 ----- metadata/com.aurora.corona.yml | 7 ---- metadata/com.brentpanther.bitcoinwidget.yml | 5 --- metadata/com.cookiegames.smartcookie.yml | 10 ------ metadata/com.corphish.nightlight.generic.yml | 25 ------------- metadata/com.craigd.lmsmaterial.app.yml | 4 --- .../com.elsdoerfer.android.autostarts.yml | 6 ---- metadata/com.fabienli.dokuwiki.yml | 1 - ...github.ashutoshgngwr.tenbitclockwidget.yml | 2 -- metadata/com.github.moko256.twitlatte.yml | 9 ----- metadata/com.grocerymanager.yml | 5 --- metadata/com.iven.musicplayergo.yml | 5 --- .../com.lindevhard.android.raspfinder.yml | 19 ---------- metadata/com.luk.saucenao.yml | 3 -- metadata/com.m3sv.plainupnp.yml | 13 ------- metadata/com.marcospoerl.simplypace.yml | 2 -- metadata/com.maxfour.music.yml | 13 ------- metadata/com.mikifus.padland.yml | 3 -- metadata/com.mkulesh.micromath.plus.yml | 33 ----------------- metadata/com.mkulesh.onpc.yml | 17 --------- metadata/com.movim.movim.yml | 5 --- metadata/com.mschlauch.comfortreader.yml | 12 ------- metadata/com.oasisfeng.island.fdroid.yml | 22 ------------ metadata/com.owncloud.android.yml | 7 ---- metadata/com.rockbyte.arxiv.yml | 5 --- metadata/com.serwylo.lexica.yml | 9 ----- metadata/com.simplemobiletools.calendar.yml | 7 ---- metadata/com.simplemobiletools.contacts.yml | 7 ---- metadata/com.simplemobiletools.gallery.yml | 7 ---- metadata/com.simplemobiletools.notes.yml | 7 ---- metadata/com.smilla.greentooth.yml | 5 --- metadata/com.termux.yml | 20 ----------- metadata/com.tmendes.birthdaydroid.yml | 4 --- metadata/com.ulicae.cinelog.yml | 3 -- metadata/com.wmstein.tourcount.yml | 18 ---------- metadata/com.wmstein.transektcount.yml | 8 ----- metadata/cz.martykan.forecastie.yml | 12 ------- metadata/de.badaix.snapcast.yml | 9 ----- metadata/de.baumann.browser.yml | 14 -------- metadata/de.baumann.hhsmoodle.yml | 4 --- metadata/de.baumann.weather.yml | 12 ------- metadata/de.grobox.liberario.yml | 16 --------- metadata/de.luhmer.owncloudnewsreader.yml | 17 --------- metadata/de.markusfisch.android.binaryeye.yml | 7 ---- .../de.markusfisch.android.shadereditor.yml | 18 ---------- metadata/de.markusfisch.android.wavelines.yml | 6 ---- metadata/de.php_tech.piggybudget.yml | 13 ------- metadata/de.saschahlusiak.freebloks.yml | 7 ---- metadata/de.tap.easy_xkcd.yml | 32 ----------------- metadata/dk.meznik.jan.encrypttext.yml | 7 ---- metadata/es.eoinrul.ecwt.yml | 5 --- metadata/hr.kravarscan.enchantedfortress.yml | 4 --- metadata/hu.tagsoft.ttorrent.search.yml | 2 -- metadata/im.quicksy.client.yml | 28 --------------- .../info.zamojski.soft.towercollector.yml | 32 ----------------- .../io.github.deweyreed.clipboardcleaner.yml | 8 ----- metadata/io.github.lonamiwebs.klooni.yml | 4 --- .../io.github.subhamtyagi.lastlauncher.yml | 19 ---------- metadata/io.github.subhamtyagi.nightmode.yml | 6 ---- .../io.github.subhamtyagi.privacyapplock.yml | 11 ------ metadata/it.diab.yml | 12 ------- metadata/me.ccrama.redditslide.yml | 36 ------------------- metadata/mono.hg.yml | 4 --- metadata/net.fabiszewski.ulogger.yml | 16 --------- metadata/nl.implode.weer.yml | 5 --- metadata/org.ddosolitary.okcagent.yml | 10 ------ metadata/org.equeim.tremotesf.yml | 21 ----------- metadata/org.example.rosary.yml | 3 -- metadata/org.fitchfamily.android.dejavu.yml | 15 -------- .../org.fitchfamily.android.gsmlocation.yml | 12 ------- metadata/org.fitchfamily.android.symphony.yml | 5 --- .../org.fitchfamily.android.wifi_backend.yml | 15 -------- metadata/org.fossasia.badgemagic.yml | 4 --- metadata/org.gateshipone.odyssey.yml | 15 -------- metadata/org.liberty.android.freeotpplus.yml | 18 ---------- metadata/org.moire.opensudoku.yml | 11 ------ metadata/org.pipoypipagames.towerjumper.yml | 4 --- metadata/org.schabi.stethox.yml | 11 ------ ...ecuso.privacyfriendlypasswordgenerator.yml | 8 ----- metadata/org.yuttadhammo.BodhiTimer.yml | 1 - metadata/pro.rudloff.openvegemap.yml | 5 --- metadata/ru.henridellal.dialer.yml | 7 ---- metadata/ru.yanus171.feedexfork.yml | 26 -------------- metadata/ryey.colorsniffer.yml | 4 --- metadata/ryey.easer.yml | 21 ----------- metadata/taco.apkmirror.yml | 22 ------------ metadata/tech.ula.yml | 24 ------------- metadata/uk.co.richyhbm.monochromatic.yml | 4 --- metadata/xyz.hisname.fireflyiii.yml | 1 - 95 files changed, 1030 deletions(-) diff --git a/metadata/app.crescentcash.src.yml b/metadata/app.crescentcash.src.yml index 8de95b61cd43..23a0a4c52155 100644 --- a/metadata/app.crescentcash.src.yml +++ b/metadata/app.crescentcash.src.yml @@ -6,17 +6,6 @@ SourceCode: https://gitlab.com/pokkst/crescentcash IssueTracker: https://gitlab.com/pokkst/crescentcash/issues AutoName: Crescent -Description: |- - Send coins to a Cash Account (https://cashaccount.info) or Bitcoin Cash address with Crescent Cash. - - Simple. Secure. Trustless. - - Crescent combines the simplicity of traditional, centralized money apps - with the security of trustless Bitcoin wallets. - - Crescent Cash is a non-custodial wallet that allows for you to send Bitcoin - Cash to other Cash Account users with their username, or to normal Bitcoin - Cash addresses. RepoType: git Repo: https://gitlab.com/pokkst/crescentcash diff --git a/metadata/apps.amine.bou.readerforselfoss.yml b/metadata/apps.amine.bou.readerforselfoss.yml index fdde7d80e77a..92a1a19af8e0 100644 --- a/metadata/apps.amine.bou.readerforselfoss.yml +++ b/metadata/apps.amine.bou.readerforselfoss.yml @@ -8,11 +8,6 @@ Translation: https://crowdin.com/project/readerforselfoss Changelog: https://github.com/aminecmi/ReaderforSelfoss/blob/HEAD/CHANGELOG.md AutoName: Reader for Selfoss -Description: |- - A new RSS reader for selfoss. - - It connects to your selfoss instance (works only with selfoss, and can't work - without it), and you'll be able to read and manage all your RSS feeds. RepoType: git Repo: https://github.com/aminecmi/ReaderforSelfoss.git diff --git a/metadata/axp.tool.apkextractor.yml b/metadata/axp.tool.apkextractor.yml index 73a501ce4ba9..2f6a291920c8 100644 --- a/metadata/axp.tool.apkextractor.yml +++ b/metadata/axp.tool.apkextractor.yml @@ -6,17 +6,6 @@ IssueTracker: https://github.com/axxapy/apkExtractor/issues Changelog: https://github.com/axxapy/apkExtractor/releases AutoName: Apk Extractor -Description: |- - Extract APKs from your device, even if installed from the Playstore. Root access - is required for paid apps. - - * Fast and easy to use. - * Extracts almost all applications, includes system applications. - * ROOT access only required for extracting paid apps. - * Apk's will be saved in /sdcard/Download/Eimon/. - * Provided Search option to search applications. - * Compatible with latest version of Android 6.0 - * Saved apk format : AppPackageName.apk. RepoType: git Repo: https://github.com/axxapy/apkExtractor diff --git a/metadata/co.epitre.aelf_lectures.yml b/metadata/co.epitre.aelf_lectures.yml index 2fed82bdfd0d..c9b450a37828 100644 --- a/metadata/co.epitre.aelf_lectures.yml +++ b/metadata/co.epitre.aelf_lectures.yml @@ -8,30 +8,6 @@ SourceCode: https://github.com/HackMyChurch/aelf-dailyreadings IssueTracker: https://github.com/HackMyChurch/aelf-dailyreadings/issues AutoName: AELF -Description: |- - '''The Word of God, nothing but the Word of God''' - - * Find the entire Mass and liturgy of the hours from the liturgical translation. Mass, readings, lauds, third, sexte, none, vespers, complies. - * Meditate on speech, without distractions. Sober and unique full screen display, with no risk of going into standby. - * Do not look, there is no flourish, no distraction, just the Word. - - '''Accessible, for everyone''' - - * Use your phone, it is compatible. Without sacrificing the look. (Android 2.2+ to Android 5.1) - * Adjust the text size according to your preferences, depending on your screen. - * Let us guide you with "Talkback". The application is compatible. - * Read without suffering. The texts are formatted. - - '''Anytime, anywhere''' - - * Automatically synchronize texts to meditate on them even from a cave... or the countryside. - * Navigate through time, the date is adjustable at least one month in advance. - - '''In a land of trust''' - - * This application uses the Internet for only one thing: to load the texts of the Word. No data other than Android automatic error reports, whether personal or statistical, is transmitted by the application. - * Application proposed on a voluntary basis, without any publicity with the support of the ''Association épiscopale liturgique pour les pays francophones'' (http://www.aelf.org) - * Texts and logo reproduced with the kind permission of the AELF. RepoType: git Repo: https://github.com/HackMyChurch/aelf-dailyreadings diff --git a/metadata/com.adguard.android.contentblocker.yml b/metadata/com.adguard.android.contentblocker.yml index 9f610384458a..44ea7dc0d896 100644 --- a/metadata/com.adguard.android.contentblocker.yml +++ b/metadata/com.adguard.android.contentblocker.yml @@ -12,12 +12,6 @@ Translation: http://adguard.oneskyapp.com/collaboration/ Changelog: https://github.com/AdguardTeam/ContentBlocker/releases AutoName: AdGuard Content Blocker -Description: |- - AdGuard Content Blocker is an app that blocks ads on mobile devices operated by - Android in browsers that support content blocking technology. As of today, there - are only two such browsers: Yandex Browser and Samsung Internet browser. - - The app does not require root access. RepoType: git Repo: https://github.com/AdguardTeam/ContentBlocker.git diff --git a/metadata/com.adrienpoupa.attestationcoronavirus.yml b/metadata/com.adrienpoupa.attestationcoronavirus.yml index ef90ec09342d..a306de5cb9e1 100644 --- a/metadata/com.adrienpoupa.attestationcoronavirus.yml +++ b/metadata/com.adrienpoupa.attestationcoronavirus.yml @@ -8,9 +8,6 @@ SourceCode: https://github.com/AdrienPoupa/AttestationCoronavirus IssueTracker: https://github.com/AdrienPoupa/AttestationCoronavirus/issues AutoName: Attestation Coronavirus -Description: |- - This application moved to - https://f-droid.org/packages/com.poupa.attestationdeplacement RepoType: git Repo: https://github.com/AdrienPoupa/AttestationCoronavirus diff --git a/metadata/com.aurora.adroid.yml b/metadata/com.aurora.adroid.yml index 9c706e20d284..4280a0256850 100644 --- a/metadata/com.aurora.adroid.yml +++ b/metadata/com.aurora.adroid.yml @@ -10,15 +10,6 @@ Changelog: https://gitlab.com/AuroraOSS/auroradroid/blob/HEAD/CHANGELOG Donate: https://www.paypal.me/whyorean AutoName: Aurora Droid -Description: |- - An alternative to the default F-Droid app with an intuitive UI and - multiple great features, such as - - * Many repos listed and can be enabled - * Beautiful design - Follows latest Material Design guidelines - * Powerful download manager - Pause, resume and retry downloading apps - * Previous releases - Enables downloading old releases - * Lists architectures (arm, arm64 ...) and minimal Android versions RepoType: git Repo: https://gitlab.com/AuroraOSS/auroradroid.git diff --git a/metadata/com.aurora.corona.yml b/metadata/com.aurora.corona.yml index 58978cad4eeb..b5eaf784b777 100644 --- a/metadata/com.aurora.corona.yml +++ b/metadata/com.aurora.corona.yml @@ -12,13 +12,6 @@ Donate: https://www.paypal.me/auroradev LiberapayID: '1616537' AutoName: Corona Stats -Description: |- - A statistics app to provide details about the Corona outbreak in India - - * Free / Libre software - * Daily Report - * State-wise reports - * Graphical Stats RepoType: git Repo: https://gitlab.com/AuroraOSS/CoronaStats.git diff --git a/metadata/com.brentpanther.bitcoinwidget.yml b/metadata/com.brentpanther.bitcoinwidget.yml index 377648e10641..5980dfd6ea13 100644 --- a/metadata/com.brentpanther.bitcoinwidget.yml +++ b/metadata/com.brentpanther.bitcoinwidget.yml @@ -9,11 +9,6 @@ IssueTracker: https://github.com/hwki/SimpleBitcoinWidget/issues Bitcoin: 15SHnY7HC5bTxzErHDPe7wHXj1HhtDKV7z AutoName: Simple Bitcoin Widget -Description: |- - A clean and simple Bitcoin widget to show the current price from different - exchanges. Customizable refresh interval. Very light battery usage. Shows prices - for Bitcoin, Bitcoin Cash, Ethereum, Ethereum Classic, Litecoin, Iota, Ripple, - Dash, Monero, NEM, NEO, Cardano, Stellar, Nano, Bitcoin Gold, and Zcash. RepoType: git Repo: https://github.com/hwki/SimpleBitcoinWidget.git diff --git a/metadata/com.cookiegames.smartcookie.yml b/metadata/com.cookiegames.smartcookie.yml index d97d3ab3836c..ec8342bc06a9 100644 --- a/metadata/com.cookiegames.smartcookie.yml +++ b/metadata/com.cookiegames.smartcookie.yml @@ -9,16 +9,6 @@ Translation: https://translate.cookiejarapps.com/ Changelog: https://github.com/CookieJarApps/SmartCookieWeb/releases AutoName: SmartCookieWeb -Description: |- - ''Smart Cookie Secure Web Browser'' is a lightweight, basic and secure web - browser that uses less than 8MB of space. - - There is an Incognito Mode which can be enabled and stops web trackers - completely. As well as this, the user agent (your web "fingerprint") is the - same as every other Smart Cookie user so websites can’t track you. - - Smart Cookie is ad-free and always will be. There is also an ad blocker - included which is enabled by default. RepoType: git Repo: https://github.com/CookieJarApps/SmartCookieWeb diff --git a/metadata/com.corphish.nightlight.generic.yml b/metadata/com.corphish.nightlight.generic.yml index 4ef6a1f1684e..f8850fd4167b 100644 --- a/metadata/com.corphish.nightlight.generic.yml +++ b/metadata/com.corphish.nightlight.generic.yml @@ -7,31 +7,6 @@ SourceCode: https://github.com/corphish/NightLight IssueTracker: https://github.com/corphish/NightLight/issues AutoName: Night Light -Description: |- - Night light is an open-source app which uses KCAL to adjust blue light intensity - of the display colors, so that viewing the screen at dark becomes pleasant for - the eyes, and help you fall asleep faster (this is what science have proven - so...). - - ''Features'' - - * Uses KCAL to adjust blue light intensity. - * Easy to use color controls. - * Color intensities. - * Sophisticated automation. - * Create and apply profiles with one click. - * Tasker plugin integeration. - * Great UI. - - ''Requirements'' - - * Kernel supporting KCAL. - * Root access. - - ''Permissions'' - - * Location - It is used to determine sunset/sunrise times for your location. (Your location info isn't shared, your privacy is maintained) - * Internet - It is used to determine approximate location (when exact location is not available) to determine sunset/sunrise times for your location. RequiresRoot: 'yes' diff --git a/metadata/com.craigd.lmsmaterial.app.yml b/metadata/com.craigd.lmsmaterial.app.yml index c74925a28d1d..db179a3a24c1 100644 --- a/metadata/com.craigd.lmsmaterial.app.yml +++ b/metadata/com.craigd.lmsmaterial.app.yml @@ -8,10 +8,6 @@ Changelog: https://raw.githubusercontent.com/CDrummond/lms-material-app/HEAD/Cha Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2X2CTDUH27V9L&source=url AutoName: LMS -Description: |- - Provides a webview wrapper for accessing a Logitech Media Server instance using - MaterialSkin. Reqires the MaterialSkin plugin to be installed on your LMS - instance. RepoType: git Repo: https://github.com/CDrummond/lms-material-app diff --git a/metadata/com.elsdoerfer.android.autostarts.yml b/metadata/com.elsdoerfer.android.autostarts.yml index faad08060279..d6914488a94f 100644 --- a/metadata/com.elsdoerfer.android.autostarts.yml +++ b/metadata/com.elsdoerfer.android.autostarts.yml @@ -8,12 +8,6 @@ Translation: https://www.transifex.com/elsdoerfer/android-autostarts/ Changelog: https://github.com/miracle2k/android-autostarts/blob/HEAD/CHANGES AutoName: Autostarts -Description: |- - Shows you what apps run when events occur and what other events trigger in the - background. Root users can disable unwanted autostarts and speed up their phone - boot. - - Requires Root: No. However, to make changes you will need root. RepoType: git Repo: https://github.com/miracle2k/android-autostarts.git diff --git a/metadata/com.fabienli.dokuwiki.yml b/metadata/com.fabienli.dokuwiki.yml index 6d1e94f2cfde..296af05d3d65 100644 --- a/metadata/com.fabienli.dokuwiki.yml +++ b/metadata/com.fabienli.dokuwiki.yml @@ -5,7 +5,6 @@ SourceCode: https://github.com/fabienli/DokuwikiAndroid IssueTracker: https://github.com/fabienli/DokuwikiAndroid/issues AutoName: Dokuwiki -Description: Android application to access a dokuwiki and keep pages in local cache. RepoType: git Repo: https://github.com/fabienli/DokuwikiAndroid diff --git a/metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml b/metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml index d4a5ba671ed6..50202ac19d3a 100644 --- a/metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml +++ b/metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml @@ -7,8 +7,6 @@ SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues AutoName: 10-bit Clock Widget -Description: 10-bit Clock Widget uses 10 binary dots and their color to represent - current time in 12-hour format. RepoType: git Repo: https://github.com/ashutoshgngwr/10-bitClockWidget.git diff --git a/metadata/com.github.moko256.twitlatte.yml b/metadata/com.github.moko256.twitlatte.yml index 5535249db15f..420c88313a06 100644 --- a/metadata/com.github.moko256.twitlatte.yml +++ b/metadata/com.github.moko256.twitlatte.yml @@ -8,15 +8,6 @@ IssueTracker: https://github.com/moko256/twitlatte/issues Changelog: https://github.com/moko256/twitlatte/blob/HEAD/CHANGELOG.md AutoName: twitlatte -Description: |- - SNS client specialized to read in chronorogical order. You can access - Twitter, Mastodon and Pleroma with API. ''Twitlatte'' supports multiple - accounts. - - '''NOTE:''' Twitter has - suspended this app – so it’s unlikely Twitlatte will be able - to support Twitter in the foreseeable future. RepoType: git Repo: https://github.com/moko256/twitlatte diff --git a/metadata/com.grocerymanager.yml b/metadata/com.grocerymanager.yml index db549c397982..7662eed2be20 100644 --- a/metadata/com.grocerymanager.yml +++ b/metadata/com.grocerymanager.yml @@ -7,11 +7,6 @@ SourceCode: https://gitlab.com/upasana-me/grocerymanager/tree/HEAD IssueTracker: https://gitlab.com/upasana-me/grocerymanager/issues AutoName: Grocery manager -Description: |- - * You can create an inventory of your pantry using this app - * This app will remind you whenever an item is about to expire - * You can check where did you put an item - * You can check in the inventory before buying a new item RepoType: git Repo: https://gitlab.com/upasana-me/grocerymanager.git diff --git a/metadata/com.iven.musicplayergo.yml b/metadata/com.iven.musicplayergo.yml index 33d17ea9c64c..5d6d50904727 100644 --- a/metadata/com.iven.musicplayergo.yml +++ b/metadata/com.iven.musicplayergo.yml @@ -9,11 +9,6 @@ Changelog: https://github.com/enricocid/Music-Player-GO/releases Donate: https://paypal.me/enricocid AutoName: Music Player GO -Description: |- - ''Music Player GO'' is a very slim music player (small app size). It offers a - colorful and simple "Unified UI" (no need to navigate between activities). The - app also features an Equalizer, Themes (Light, dark, night) andmore. It even - deals with Pause/resume when the headsets are (dis)connected. RepoType: git Repo: https://github.com/enricocid/Music-Player-GO.git diff --git a/metadata/com.lindevhard.android.raspfinder.yml b/metadata/com.lindevhard.android.raspfinder.yml index fa3105191799..1982c77d8bf6 100644 --- a/metadata/com.lindevhard.android.raspfinder.yml +++ b/metadata/com.lindevhard.android.raspfinder.yml @@ -6,25 +6,6 @@ IssueTracker: https://github.com/LinDevHard/raspb-finder/issues Changelog: https://github.com/LinDevHard/raspb-finder/blob/HEAD/CHANGELOG.md AutoName: RaspFinder -Description: |- - RaspFinder will tell you the IP address of your RaspberryPi on your Wi-Fi network. - RaspFinder helps you to find your device in case, when - - * you are not able to access your Raspberry directly - * you can't browse your router for a connected devices list - * you have your Raspberry at hand, but too lazy to connect it via HDMI or Ethernet - - All you need to care about - that the Raspberry and your smartphone are on the same network. - - '''Features:''' - - * quick search: within 2-3 secs - * simple and intuitive interface - * does not include advertising - * low application weight - * decent and modern design - - '''Attention:''' does NOT work if you are using MAC address spoofing! RepoType: git Repo: https://github.com/LinDevHard/raspb-finder.git diff --git a/metadata/com.luk.saucenao.yml b/metadata/com.luk.saucenao.yml index 8d6d898edbf8..68c79ea9ce06 100644 --- a/metadata/com.luk.saucenao.yml +++ b/metadata/com.luk.saucenao.yml @@ -8,9 +8,6 @@ SourceCode: https://github.com/LuK1337/SauceNAO IssueTracker: https://github.com/luk1337/SauceNAO/issues AutoName: SauceNAO -Description: |- - Unofficial application for SauceNAO reverse image search - engine. RepoType: git Repo: https://github.com/LuK1337/SauceNAO diff --git a/metadata/com.m3sv.plainupnp.yml b/metadata/com.m3sv.plainupnp.yml index c5ee3299188e..ee3634a1aefe 100644 --- a/metadata/com.m3sv.plainupnp.yml +++ b/metadata/com.m3sv.plainupnp.yml @@ -4,19 +4,6 @@ License: GPL-3.0-only SourceCode: https://github.com/m3sv/PlainUPnP IssueTracker: https://github.com/m3sv/PlainUPnP/issues -Description: | - PlainUPnP - intially DroidUPnP - is an UPnP control point application for android. - - PlainUPnP allows you to stream videos, music and photos. Browse UPnP media sources and stream media content to a selected UPnP device or play locally. - - Compatible with UPnP/DLNA/Smart TV. - - Features: - * Simple and easy to use interface - * UPnP content streaming - * Dark/Light themes - * Launching UPnP content locally - RepoType: git Repo: https://github.com/m3sv/PlainUPnP.git diff --git a/metadata/com.marcospoerl.simplypace.yml b/metadata/com.marcospoerl.simplypace.yml index 0a0de3bc0ff4..25b287154c5c 100644 --- a/metadata/com.marcospoerl.simplypace.yml +++ b/metadata/com.marcospoerl.simplypace.yml @@ -8,8 +8,6 @@ IssueTracker: https://github.com/MarcoSpoerl/simply-pace/issues Donate: https://www.buymeacoffee.com/marcospoerl AutoName: Simply Pace -Description: | - Simply Pace is a very simple pace calculator. It concentrates on distance, time, and pace. Without any additional clutter. RepoType: git Repo: https://github.com/MarcoSpoerl/simply-pace diff --git a/metadata/com.maxfour.music.yml b/metadata/com.maxfour.music.yml index 90a21959a23a..fe1731206c6b 100644 --- a/metadata/com.maxfour.music.yml +++ b/metadata/com.maxfour.music.yml @@ -7,19 +7,6 @@ IssueTracker: https://github.com/MaxFour/Music-Player/issues Changelog: https://github.com/MaxFour/Music-Player/releases AutoName: Music Player -Description: |- - ''Music'' is a Lightweight and Material Music Player for your Android device. - Features include: - - * Auto download artist art (MediaStore) - * Black list - * Folder browser - * Now playing themes - * Sleep timer - * Show internal lyric - * Tag editor - * Theming (Light, Dark, Black (for AMOLED)) - * Widgets RepoType: git Repo: https://github.com/MaxFour/Music-Player diff --git a/metadata/com.mikifus.padland.yml b/metadata/com.mikifus.padland.yml index 88a99e55245a..5f1a58aa714b 100644 --- a/metadata/com.mikifus.padland.yml +++ b/metadata/com.mikifus.padland.yml @@ -6,9 +6,6 @@ IssueTracker: https://github.com/mikifus/padland/issues Changelog: https://github.com/mikifus/padland/releases AutoName: Padland -Description: |- - Padland is a tool to manage, share, remember and read collaborative documents - based on the Etherpad technology in Android. RepoType: git Repo: https://github.com/mikifus/padland.git diff --git a/metadata/com.mkulesh.micromath.plus.yml b/metadata/com.mkulesh.micromath.plus.yml index 1680a1823030..d8a7f504f500 100644 --- a/metadata/com.mkulesh.micromath.plus.yml +++ b/metadata/com.mkulesh.micromath.plus.yml @@ -6,39 +6,6 @@ IssueTracker: https://github.com/mkulesh/microMathematics/issues Changelog: https://github.com/mkulesh/microMathematics/releases AutoName: microMathematics Plus -Description: |- - With microMathematics Plus, not only can you perform mathematical calculations - in naturally readable form but you can also create and manage your own - collection of interactive formulas! - - microMathematics Plus is a revolutionary new kind of mobile calculator. It is a - scientific graphing calculator and function plotter on Android oriented around a - worksheet. It features live editing of mathematical identities combined with - highly accurate computations. - - This app is not only for students. Anyone who enjoys mathematics or requires - more than just a basic calculator will benefit from microMathematics' amazing - calculations and plotting. - - Benefits and features: - - * Verification, validation, documentation and re-use of mathematical calculations - * Works on smartphone or tablet in portrait and landscape mode - * Supports all commonly used mathematical operations - * Mathematical expressions are written in an intuitive and naturally readable form - * Supports SI and non-SI units (including units of information) - * Powerful mathematical touch-screen editor with undo function which makes editing easier - * You can perform multiple calculations and subsequently correct or change all used formulas - * It is possible to store intermediate results into 1D, 2D, or 3D array that can improve calculation performance - * Mathematical expressions are collected in a document, that includes not only formulas and plots, but also additional text and images (SVG format is also supported) - * You can store your document on an SD card and export it into LaTeX format or an image (SD writing permission is needed) - * SD card on Android 6+ is also supported - * The app contains a detailed "How to use" page and several examples - * Supports different color themes - * Supports data import from ASCII files - * Integration with SMath Studio. Documents from SMath Studio can also be opened in microMathematics - - Languages: English, Russian, German, Brazilian Portuguese, Chinese. RepoType: git Repo: https://github.com/mkulesh/microMathematics diff --git a/metadata/com.mkulesh.onpc.yml b/metadata/com.mkulesh.onpc.yml index 0d53a2b68390..9abd1fe631e3 100644 --- a/metadata/com.mkulesh.onpc.yml +++ b/metadata/com.mkulesh.onpc.yml @@ -7,23 +7,6 @@ IssueTracker: https://github.com/mkulesh/onpc/issues Changelog: https://github.com/mkulesh/onpc/releases AutoName: Enhanced Controller for Onkyo and Pioneer -Description: |- - This app allows remote control of an Onkyo Network Player or a Network A/V - Receiver via the "Integra Serial Communication Protocol". Its two most - popular features are music playback and sound profile management. - - Other benefits include: - - * Maximum privacy: No ads, no trackers, no telemetry, no special permissions - * One-click access to music playback actions - * Full music playback control (play, stop, pause, track up/down, time seek, repeat and random modes) - * The modern material design supports different color themes and works on smartphones and/or tablets in portrait and landscape mode - * Tuneln Radio and Deezer streaming - * Multi-zone support - * Control of devices attached via RI - * Play queue support (add, remove, clear, change playback order) - * Display device details and control device settings such as dimmer level, digital filter, auto power - * Allows control of receivers over an OpenVPN connection (even over a cellular connection) RepoType: git Repo: https://github.com/mkulesh/onpc diff --git a/metadata/com.movim.movim.yml b/metadata/com.movim.movim.yml index d7b523f953b7..cddb64b981bc 100644 --- a/metadata/com.movim.movim.yml +++ b/metadata/com.movim.movim.yml @@ -6,11 +6,6 @@ SourceCode: https://github.com/movim/movim_android IssueTracker: https://github.com/movim/movim_android/issues AutoName: Movim -Description: |- - Client for Movim, a distributed social networking platform - that tries to protect your privacy and comes with a set of interesting features, - like integrated Chats, Blogs, News and more -- all based on open and etablished - protocols. RepoType: git Repo: https://github.com/movim/movim_android.git diff --git a/metadata/com.mschlauch.comfortreader.yml b/metadata/com.mschlauch.comfortreader.yml index 5e0f2b44acca..4c19b04516f2 100644 --- a/metadata/com.mschlauch.comfortreader.yml +++ b/metadata/com.mschlauch.comfortreader.yml @@ -6,18 +6,6 @@ SourceCode: https://github.com/mschlauch/comfortreader IssueTracker: https://github.com/mschlauch/comfortreader/issues AutoName: Comfort Reader -Description: |- - Comfort Reader makes reading easier for you. It streams any text directly to - your eyes. Smart text processing and colored letter animation help you to - recognize and understand text faster and better. Reading a book will seem just - like watching a film, at the speed that works best for you. Main features - include: supported file formats: txt and pdf displays; just the current phrase - you are about to read; makes sure that associated words won't get chopped - randomly (as in conventional Speed Reading Apps with Rapid Serial Visual - Presentation); creates a fluent stream of text at your desired speed; colored - letter animation stimulates better concentration and comprehension; trains your - reading, reduces regression and expands your vision span; fully costumizable - text appearance and reading configuration RepoType: git Repo: https://github.com/mschlauch/comfortreader diff --git a/metadata/com.oasisfeng.island.fdroid.yml b/metadata/com.oasisfeng.island.fdroid.yml index 42ea36c82c8a..7aa9f8971eb0 100644 --- a/metadata/com.oasisfeng.island.fdroid.yml +++ b/metadata/com.oasisfeng.island.fdroid.yml @@ -7,28 +7,6 @@ WebSite: https://secure-system.gitlab.io/Insular/ SourceCode: https://gitlab.com/secure-system/Insular IssueTracker: https://gitlab.com/secure-system/Insular/issues -Description: |- - Insular is a FLOSS fork of Island. - With Insular, you can:
    -
  • Isolate app, for privacy protection.
  • -
  • Clone app, for parallel running.
  • -
  • Freeze app, to completely block its background behaviors.
  • -
  • Hide app, for various reasons.
  • -
  • Archive app, for potential future use on-demand.
  • -
  • Use VPN only on one side, or different VPN on both sides.
  • -
  • Prohibit USB access
- If your device is incompatible or not encrypted, you can skip this limitation manually. Please refer to the XDA post for details. - To uninstall and remove Insular completely, please first "Destroy Insular" in Settings - Setup - Click the recycle-bin icon besides Insular. If you have already uninstalled Insular app, please "Remove work profile" in your device "Settings - Accounts". - - PERMISSIONS
    -
  • DEVICE-ADMIN: Device administrator privilege is required to create the Insular space (work profile), which serves as the fundamental functionality of Insular. It will be explicitly requested for your consent.
  • -
  • PACKAGE_USAGE_STATS: Required to correctly recognize the running state of apps. It will be explicitly requested for your consent.
- We will never collect any data and Insular has no Internet permission. Please read our privacy policy for more details. - - Differences from Island
    -
  • all blobs (gms, crashlytics, etc) are removed to comply with F-droid's policy
  • -
  • Internet access for this app is removed because we just don't need it
  • - RepoType: git Repo: https://gitlab.com/secure-system/Insular.git diff --git a/metadata/com.owncloud.android.yml b/metadata/com.owncloud.android.yml index baa0b9eb930e..d5994548b95c 100644 --- a/metadata/com.owncloud.android.yml +++ b/metadata/com.owncloud.android.yml @@ -8,13 +8,6 @@ Changelog: https://github.com/owncloud/android/blob/HEAD/CHANGELOG.md Donate: https://www.bountysource.com/teams/owncloud AutoName: ownCloud -Description: |- - ownCloud is a free software package you can install on a server to manage files, - contacts, calendars, music, pictures and much more. This is the official Android - app which enables you to browse all of your ownCloud synced files, create and - edit new files, share these files and folders with co-workers, and keep the - contents of those folders in sync across all of your devices. Simply copy a file - into a directory on your server and ownCloud does the rest. RepoType: git Repo: https://github.com/owncloud/android.git diff --git a/metadata/com.rockbyte.arxiv.yml b/metadata/com.rockbyte.arxiv.yml index 42ba4151902f..34b39016a60f 100644 --- a/metadata/com.rockbyte.arxiv.yml +++ b/metadata/com.rockbyte.arxiv.yml @@ -7,11 +7,6 @@ IssueTracker: https://github.com/lopespm/arxiv-papers-mobile/issues Bitcoin: 1jokQaTneW1KCbCWsMdVtvPv6oSJ1H3tF AutoName: arXiv Papers -Description: |- - Quickly search through a wealth of scientific papers offered by arXiv. Those you - choose to download are kept at easy reach to consult and see. - - App built using react native. RepoType: git Repo: https://github.com/lopespm/arxiv-papers-mobile diff --git a/metadata/com.serwylo.lexica.yml b/metadata/com.serwylo.lexica.yml index fade2e6efd26..008fa20e2d51 100644 --- a/metadata/com.serwylo.lexica.yml +++ b/metadata/com.serwylo.lexica.yml @@ -7,15 +7,6 @@ Translation: https://hosted.weblate.org/projects/lexica Changelog: https://github.com/lexica/lexica/blob/HEAD/CHANGELOG.md AutoName: Lexica -Description: |- - A word game where you have 3 minutes to find as many words as possible on a grid - of random letters. - - This is a fork of the unmaintained https://f-droid.org/packages/net.healeys.lexic which: - - * Adds minor improvements to the UI - * Has better support for high resolution screens - * Removes the unsupported multiplayer options RepoType: git Repo: https://github.com/lexica/lexica diff --git a/metadata/com.simplemobiletools.calendar.yml b/metadata/com.simplemobiletools.calendar.yml index d90e8cc154cb..3af576be2a97 100644 --- a/metadata/com.simplemobiletools.calendar.yml +++ b/metadata/com.simplemobiletools.calendar.yml @@ -12,13 +12,6 @@ Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP AutoName: Calendar -Description: |- - '''NOTE''': Starting with version 6.0 this app is no longer developed and was - replaced by https://f-droid.org/packages/com.simplemobiletools.calendar.pro. You are encouraged to - uninstall this one and install the new one. - - To learn more about this change you can read - here RepoType: git Repo: https://github.com/SimpleMobileTools/Simple-Calendar diff --git a/metadata/com.simplemobiletools.contacts.yml b/metadata/com.simplemobiletools.contacts.yml index 9abd71fe1561..127bdcabb010 100644 --- a/metadata/com.simplemobiletools.contacts.yml +++ b/metadata/com.simplemobiletools.contacts.yml @@ -12,13 +12,6 @@ Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP AutoName: Contacts -Description: |- - '''NOTE''': Starting with version 6.0 this app is no longer developed and was - replaced by https://f-droid.org/packages/com.simplemobiletools.contacts.pro. You are encouraged to - uninstall this one and install the new one. - - To learn more about this change you can read - here RepoType: git Repo: https://github.com/SimpleMobileTools/Simple-Contacts diff --git a/metadata/com.simplemobiletools.gallery.yml b/metadata/com.simplemobiletools.gallery.yml index ea5707828fc6..ecb1d2647140 100644 --- a/metadata/com.simplemobiletools.gallery.yml +++ b/metadata/com.simplemobiletools.gallery.yml @@ -13,13 +13,6 @@ Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP AutoName: Gallery -Description: |- - '''NOTE''': Starting with version 6.0 this app is no longer developed and was - replaced by https://f-droid.org/packages/com.simplemobiletools.gallery.pro. You are encouraged to - uninstall this one and install the new one. - - To learn more about this change you can read - here RepoType: git Repo: https://github.com/SimpleMobileTools/Simple-Gallery diff --git a/metadata/com.simplemobiletools.notes.yml b/metadata/com.simplemobiletools.notes.yml index f8158a1d6267..43c86cd32bb2 100644 --- a/metadata/com.simplemobiletools.notes.yml +++ b/metadata/com.simplemobiletools.notes.yml @@ -12,13 +12,6 @@ Bitcoin: 19Hc8A7sWGud8sP19VXDC5a5j28UyJfpyJ Litecoin: LYACbHTKaM9ZubKQGxJ4NRyVy1gHUuztRP AutoName: Notes -Description: |- - '''NOTE''': Starting with version 6.0 this app is no longer developed and was - replaced by https://f-droid.org/packages/com.simplemobiletools.notes.pro. You are encouraged to uninstall - this one and install the new one. - - To learn more about this change you can read - here RepoType: git Repo: https://github.com/SimpleMobileTools/Simple-Notes diff --git a/metadata/com.smilla.greentooth.yml b/metadata/com.smilla.greentooth.yml index fb72399fc937..bde27444c8fd 100644 --- a/metadata/com.smilla.greentooth.yml +++ b/metadata/com.smilla.greentooth.yml @@ -9,11 +9,6 @@ SourceCode: https://gitlab.com/nbergman/greentooth IssueTracker: https://gitlab.com/nbergman/greentooth/issues AutoName: Greentooth -Description: Greentooth can help you save battery and mitigate the security risks - of Bluetooth by automatically turning Bluetooth off when it is no longer needed. - When the last Bluetooth device has disconnected Greentooth will wait for an adjustable - amount of time in order to not disturb any connection/reconnection attempts and - then deactivate Bluetooth. RepoType: git Repo: https://gitlab.com/nbergman/greentooth.git diff --git a/metadata/com.termux.yml b/metadata/com.termux.yml index 5ab946298a90..7fea59dcdee5 100644 --- a/metadata/com.termux.yml +++ b/metadata/com.termux.yml @@ -9,26 +9,6 @@ Donate: https://termux.com/donate.html Bitcoin: 1BXS5qPhJzhr5iK5nmNDSmoLDfB6VmN5hv AutoName: Termux -Description: |- - Termux combines powerful terminal emulation with an extensive Linux package - collection. - - * Enjoy the bash and zsh shells. - * Edit files with nano and vim. - * Access servers over ssh. - * Compile code with gcc and clang. - * Use the python console as a pocket calculator. - * Check out projects with git and subversion. - * Run text-based games with frotz. - - At first start a small base system is downloaded - desired packages can then be - installed using the apt package manager known from the Debian and Ubuntu Linux - distributions. Access the built-in help by long-pressing anywhere on the - terminal and selecting the Help menu option to learn more. - - Read help online: [https://wiki.termux.com/] - - Reddit Community: [https://termux.com/community] RepoType: git Repo: https://github.com/termux/termux-app diff --git a/metadata/com.tmendes.birthdaydroid.yml b/metadata/com.tmendes.birthdaydroid.yml index b0c9b87722ad..52c3bfb757dd 100644 --- a/metadata/com.tmendes.birthdaydroid.yml +++ b/metadata/com.tmendes.birthdaydroid.yml @@ -9,10 +9,6 @@ Changelog: https://gitlab.com/tmendes/BirthDayDroid/tags Donate: https://www.paypal.com/donate/?token=r6EB8jpSeqtDPGfAb-dGXvsywjHa8S2aVxz4142MMvEYbWs7DBIeHct3mlnJAZ1bBM6WVW AutoName: BirthDayDroid -Description: |- - Helps you to remember your contact's birthdays. It scans your local contact list - looking for birthdays. When it finds it, it will show you the contact's age, - sign, days until her/his birthday. RepoType: git Repo: https://gitlab.com/tmendes/BirthDayDroid.git diff --git a/metadata/com.ulicae.cinelog.yml b/metadata/com.ulicae.cinelog.yml index d0dcb907a470..03c1a99ca78e 100644 --- a/metadata/com.ulicae.cinelog.yml +++ b/metadata/com.ulicae.cinelog.yml @@ -8,9 +8,6 @@ SourceCode: https://github.com/Alcidauk/CineLog IssueTracker: https://github.com/Alcidauk/CineLog/issues AutoName: CineLog -Description: Search for films with tmdb.org - API. Save them to your local database. Add review and rating to watched films. - Rate and review films that does not exist in tmdb too. RepoType: git Repo: https://github.com/Alcidauk/CineLog.git diff --git a/metadata/com.wmstein.tourcount.yml b/metadata/com.wmstein.tourcount.yml index 318266956ec4..304c97907f01 100644 --- a/metadata/com.wmstein.tourcount.yml +++ b/metadata/com.wmstein.tourcount.yml @@ -5,24 +5,6 @@ SourceCode: https://github.com/wistein/TourCount IssueTracker: https://github.com/wistein/TourCount/issues AutoName: TourCount -Description: |- - TourCount is an application that supports species-specific counting of - butterflies in nature. - - The integrated database is organized according to a tour in nature with its - expected butterfly species. That means, a new (importable and prepared) basic - database instance will be used per tour. - - Databases can be individually created and adapted regarding meta data and - expected butterfly species. The recorded data (counts, data and remarks) may - either be read on the smartphone or exported in SQLite- or CSV-format and - transferred to a PC for your own processing, e.g. by importing a csv-file into - MS Excel. - - The app demands for storage access permit which is needed for im-/exporting the - counting data, GPS permit for location info per count and the permit to prevent - the phone from sleeping (to control the counting screen when used under Android - 5.0.1 or newer). RepoType: git Repo: https://github.com/wistein/TourCount.git diff --git a/metadata/com.wmstein.transektcount.yml b/metadata/com.wmstein.transektcount.yml index 4254f1999d46..5b1a9afac2be 100644 --- a/metadata/com.wmstein.transektcount.yml +++ b/metadata/com.wmstein.transektcount.yml @@ -5,14 +5,6 @@ SourceCode: https://github.com/wistein/TransektCount IssueTracker: https://github.com/wistein/TransektCount/issues AutoName: TransektCount -Description: |- - TransektCount is an application that supports transect counters in nature - preserving projects according to the Butterfly Monitoring Scheme methodology. It - allows a species-specific counting per transect section. - - The integrated database is organized according to a single transect inspection. - That means, a new (prepared and importable) basic database instance will be used - per inspection. RepoType: git Repo: https://github.com/wistein/TransektCount.git diff --git a/metadata/cz.martykan.forecastie.yml b/metadata/cz.martykan.forecastie.yml index 7dd9e540f6b7..55d73ba91d7d 100644 --- a/metadata/cz.martykan.forecastie.yml +++ b/metadata/cz.martykan.forecastie.yml @@ -9,18 +9,6 @@ Translation: https://www.transifex.com/forecastie/forecastie/ Changelog: https://github.com/martykan/forecastie/releases AutoName: Forecastie -Description: |- - Show weather information. Data is gathered from OpenWeatherMap, via their public API. - - Features: - - * Simple design - * Detailed 5 day forecast - * Multiple units - * Works with any city in the world - * Offline functionality - - ''NonFreeNet:'' OpenWeatherMap service itself is not open source. RepoType: git Repo: https://github.com/martykan/forecastie diff --git a/metadata/de.badaix.snapcast.yml b/metadata/de.badaix.snapcast.yml index e6515684b645..4de9efe3e942 100644 --- a/metadata/de.badaix.snapcast.yml +++ b/metadata/de.badaix.snapcast.yml @@ -7,15 +7,6 @@ IssueTracker: https://github.com/badaix/snapcast/issues Changelog: https://github.com/badaix/snapcast/releases AutoName: Snapcast -Description: |- - Multi-room client-server audio player, where all clients are time synchronized - with the server to play perfectly synced audio. It's not a standalone player, - but an extension that turns your existing audio player into a Sonos-like - multi-room solution. The server's audio input is a named pipe /tmp/snapfifo. All - data that is fed into this file will be send to the connected clients. One of - the most generic ways to use Snapcast is in conjunction with the music player - daemon (MPD) or Mopidy, which can be configured to use a named pipe as audio - output. RepoType: git Repo: https://github.com/badaix/snapdroid diff --git a/metadata/de.baumann.browser.yml b/metadata/de.baumann.browser.yml index 24c7ca2d5106..bde71e61c2c9 100644 --- a/metadata/de.baumann.browser.yml +++ b/metadata/de.baumann.browser.yml @@ -6,20 +6,6 @@ IssueTracker: https://github.com/scoute-dich/browser/issues Changelog: https://github.com/scoute-dich/browser/blob/HEAD/CHANGELOG.md AutoName: FOSS Browser -Description: |- - Simple browser based on Android's WebView. The base is - Ninja. The intention is to provide a simple and - light wight but powerful browser with a nice looking user interface. - - '''Some nice extra features:''' - - * full oreo support - * search on site - * open links in background - * Websearch (from marked text context menu) - * screenshots of the whole website - * build in file browser (open, share, delete files) - * open links in other apps (for example YouTube) RepoType: git Repo: https://github.com/scoute-dich/browser diff --git a/metadata/de.baumann.hhsmoodle.yml b/metadata/de.baumann.hhsmoodle.yml index 178296d7a10c..0a7eca7eb2b7 100644 --- a/metadata/de.baumann.hhsmoodle.yml +++ b/metadata/de.baumann.hhsmoodle.yml @@ -7,10 +7,6 @@ IssueTracker: https://github.com/scoute-dich/HHSMoodle/issues Changelog: https://github.com/scoute-dich/HHSMoodle/blob/HEAD/CHANGELOG.md AutoName: FOSS Moodle -Description: |- - Interact with the Moodle instance of the Heinrich-Huebsch-Schule in Karlsruhe, Germany. - - Screenshots RepoType: git Repo: https://github.com/scoute-dich/HHSMoodle diff --git a/metadata/de.baumann.weather.yml b/metadata/de.baumann.weather.yml index 1e4a9782bd55..acaa9bdc53a4 100644 --- a/metadata/de.baumann.weather.yml +++ b/metadata/de.baumann.weather.yml @@ -6,18 +6,6 @@ IssueTracker: https://github.com/scoute-dich/Weather/issues Changelog: https://github.com/scoute-dich/Weather/blob/HEAD/CHANGELOG.md AutoName: FOSS Weather -Description: |- - Show weather information from wetterdienst.de, meteoblue.com and the DWD. - - Features: - - * capture websites for offline use - * share screenshot of whole webview - * five predefined locations - * search and save other locations as bookmarks - * usefull weather informations (satelitt, rain radar, topic of the day, ...) - - Screenshots RepoType: git Repo: https://github.com/scoute-dich/Weather diff --git a/metadata/de.grobox.liberario.yml b/metadata/de.grobox.liberario.yml index 6cb113df3705..90bc6d78542f 100644 --- a/metadata/de.grobox.liberario.yml +++ b/metadata/de.grobox.liberario.yml @@ -12,22 +12,6 @@ LiberapayID: '34751' Bitcoin: 12JaQp8zfqRb83JfSwVjH4rZWsZnWRPoyG AutoName: Liberario -Description: |- - The public transport companion that respects your privacy and your freedom. - Transportr is a non-profit app developed by people around the world to make - using public transport as easy as possible wherever you are. - - Currently, it works best in Europe, but also supports many places world-wide. If - you live in an unsupported area, consider adding it to Transportr. - - It finds directions from your home, your current position or a given station to - wherever you want to go. You can also save entire trips as favorites and find - next trips with one click. - - Discover nearby stations and show upcoming departures including the delays (if - there are any). - - Screenshots RepoType: git Repo: https://github.com/grote/Transportr.git diff --git a/metadata/de.luhmer.owncloudnewsreader.yml b/metadata/de.luhmer.owncloudnewsreader.yml index a6c2fc50495f..7e9861c852ec 100644 --- a/metadata/de.luhmer.owncloudnewsreader.yml +++ b/metadata/de.luhmer.owncloudnewsreader.yml @@ -7,23 +7,6 @@ Translation: https://www.transifex.com/nextcloud/nextcloud/ Changelog: https://github.com/nextcloud/news-android/blob/HEAD/CHANGELOG.md AutoName: News -Description: |- - The Nextcloud News Reader App makes - it possible to synchronize feeds between Android and the Nextcloud/ownCloud News - App and let’s you read RSS feeds on the go. - - '''Features:''' - - * Offline reading - * Cache images offline - * Background synchronization - * Customizable Listview - * Mark as read while scrolling - * Dark/Light Theme - * Customizable font - * Widget - * Pull-To-Refresh - * and many more! RepoType: git Repo: https://github.com/nextcloud/news-android.git diff --git a/metadata/de.markusfisch.android.binaryeye.yml b/metadata/de.markusfisch.android.binaryeye.yml index 6b452a10bed7..00b58f3ba5aa 100644 --- a/metadata/de.markusfisch.android.binaryeye.yml +++ b/metadata/de.markusfisch.android.binaryeye.yml @@ -8,13 +8,6 @@ IssueTracker: https://github.com/markusfisch/BinaryEye/issues Changelog: https://github.com/markusfisch/BinaryEye/blob/HEAD/CHANGELOG.md AutoName: Binary Eye -Description: |- - ''Binary Eye'' works in portrait and landscape orientation, can read - inverted codes, is Material Design and doesn't do anything else but - decoding a barcode. It uses the ZXing ("Zebra Crossing") barcode scanning - library. Supported barcode formats are: AZTEC, CODABAR, CODE 39, CODE 93, - CODE 128, DATA MATRIX, EAN 8, EAN 13, ITF, MAXICODE, PDF417, QR CODE, RSS - 14, RSS EXPANDED, UPC A, UPC E and UPC EAN EXTENSION. RepoType: git Repo: https://github.com/markusfisch/BinaryEye diff --git a/metadata/de.markusfisch.android.shadereditor.yml b/metadata/de.markusfisch.android.shadereditor.yml index 8fd2d1ab53a4..f086f002b71b 100644 --- a/metadata/de.markusfisch.android.shadereditor.yml +++ b/metadata/de.markusfisch.android.shadereditor.yml @@ -7,24 +7,6 @@ IssueTracker: https://github.com/markusfisch/ShaderEditor/issues Changelog: https://github.com/markusfisch/ShaderEditor/blob/HEAD/CHANGELOG.md AutoName: Shader Editor -Description: |- - Create and edit GLSL shaders on your Android phone or tablet and use them as - live wallpaper. - - '''Features:''' - - * Live preview in background or on an extra screen - * Syntax highlighting - * Error highlighting - * FPS display - * Use any shader as live wallpaper - * Exposure of hardware sensors - * Support for wallpaper offset - * Exposure of battery level - * Supports multiple touches - * Previous rendered frame in backbuffer texture - * Import and use arbitrary textures - * Disables rendering when battery is low RepoType: git Repo: https://github.com/markusfisch/ShaderEditor.git diff --git a/metadata/de.markusfisch.android.wavelines.yml b/metadata/de.markusfisch.android.wavelines.yml index 8cfe6b5dcfa2..cad1ce3a6a47 100644 --- a/metadata/de.markusfisch.android.wavelines.yml +++ b/metadata/de.markusfisch.android.wavelines.yml @@ -7,12 +7,6 @@ IssueTracker: https://github.com/markusfisch/WaveLinesWallpaper/issues Changelog: https://github.com/markusfisch/WaveLinesWallpaper/blob/HEAD/CHANGELOG.md AutoName: Wave Lines Wallpaper -Description: |- - A simple, unobstrusive live wallpaper showing slowly moving wave lines. You can - choose a color theme, build your own, change if the lines should grow and shrink - or if they should have a uniform width. The lines may swing in harmony or each - line independently. You may set the number of lines, the number of waves in a - line and the maximum amplitude. RepoType: git Repo: https://github.com/markusfisch/WaveLinesWallpaper.git diff --git a/metadata/de.php_tech.piggybudget.yml b/metadata/de.php_tech.piggybudget.yml index b10302596a1d..8af3ed26141e 100644 --- a/metadata/de.php_tech.piggybudget.yml +++ b/metadata/de.php_tech.piggybudget.yml @@ -7,19 +7,6 @@ Changelog: https://github.com/pmiddend/piggybudget/releases Donate: https://paypal.me/PhilippMiddendorf AutoName: piggybudget -Description: |- - piggybudget is a very simple app to track your expenses. In short bullet - points: - - * It’s a tiny app that I wrote for myself to keep track of my expenses. - * There’s two buttons - 1. You received some money (you got paid, somebody owed you some, …) - 2. You spent money - * You can select one of 13 categories when receiving money - * You can specify a daily or monthly amount – your “pocket money”. This will be added to your account automatically. - * You can select a currency. Euro is the default currency. - * There are statistics about how you spend your money. - * There’s a history for viewing your expenses one by one. RepoType: git Repo: https://github.com/pmiddend/piggybudget diff --git a/metadata/de.saschahlusiak.freebloks.yml b/metadata/de.saschahlusiak.freebloks.yml index aed1246d869f..75ba51a346c8 100644 --- a/metadata/de.saschahlusiak.freebloks.yml +++ b/metadata/de.saschahlusiak.freebloks.yml @@ -10,13 +10,6 @@ Donate: https://paypal.me/saschahlusiak/3eur Bitcoin: bc1qdgm2zvlc6qzqh8qs44wv8l622tfrhvkjqn0fkl AutoName: Freebloks -Description: |- - Strategy board game similar to the famous board game Blokus. - - Try to place as many tiles on the board as possible, keeping in mind only two - simple rules: your tiles must touch a corner of one of your previously placed - tiles, but they must not share an edge. Can you play more tiles than your - opponents? RepoType: git Repo: https://github.com/shlusiak/Freebloks-Android.git diff --git a/metadata/de.tap.easy_xkcd.yml b/metadata/de.tap.easy_xkcd.yml index c471980261dc..2782765d2e2e 100644 --- a/metadata/de.tap.easy_xkcd.yml +++ b/metadata/de.tap.easy_xkcd.yml @@ -8,38 +8,6 @@ IssueTracker: https://github.com/T-Rex96/Easy_xkcd/issues Changelog: https://github.com/T-Rex96/Easy_xkcd/blob/HEAD/CHANGELOG.md AutoName: Easy xkcd -Description: |- - A fast and beautiful way to view your favorite xkcd comics. - - Comic Browser: - - * Offline Mode - * Notifications - * Long press to view alt text - * Search for title, transcript or number - * Share comic url or image - * Add comic to favorites - * Favorites are saved for offline use - * Open links from xkcd.com and m.xkcd.com - * Support for large images (e.g comic 657) - * Explain xkcd integration - * Option to display alt text by default - - What If?: - - * Full support for footnotes, formulas and alt text - * Offline mode and notifications - * Mark articles as read and hide them - * Swipe between articles (disabled by default) - * Night mode - * Quick search for article titles - * Random articles - - General: - - * Themes (blue, green, black...) - * Material design elements like Snackbars, Floating Action Button, tinted Status Bar, animations... - * Lock orientation RepoType: git Repo: https://github.com/T-Rex96/Easy_xkcd diff --git a/metadata/dk.meznik.jan.encrypttext.yml b/metadata/dk.meznik.jan.encrypttext.yml index 441b7641e050..00eb0c08d9b2 100644 --- a/metadata/dk.meznik.jan.encrypttext.yml +++ b/metadata/dk.meznik.jan.encrypttext.yml @@ -5,13 +5,6 @@ SourceCode: https://github.com/JanmanX/EncryptTextApp IssueTracker: https://github.com/JanmanX/EncryptTextApp/issues AutoName: Encrypt Text -Description: |- - A simple application to encrypt text. Can be used in combination with many other - applications, to increase security and privacy. - - The application can be opened just as any other application. However, to avoid - the tedious application switching, the encryption can happen in-place, in any - application. RepoType: git Repo: https://github.com/JanmanX/EncryptTextApp.git diff --git a/metadata/es.eoinrul.ecwt.yml b/metadata/es.eoinrul.ecwt.yml index 8133b275796d..117c417fefa2 100644 --- a/metadata/es.eoinrul.ecwt.yml +++ b/metadata/es.eoinrul.ecwt.yml @@ -6,11 +6,6 @@ SourceCode: https://github.com/eoineoineoin/ecwt IssueTracker: https://github.com/eoineoineoin/ecwt/issues AutoName: MorseTrainer -Description: |- - Use the Koch method to learn morse code. Each session, the app will play - random morse code characters, and score you based on how accurately you - transcribe them. The first lesson starts with only two letters, with each - new lesson adding an extra character. RepoType: git Repo: https://github.com/eoineoineoin/ecwt diff --git a/metadata/hr.kravarscan.enchantedfortress.yml b/metadata/hr.kravarscan.enchantedfortress.yml index e50f117ef7e4..78a9886f87ac 100644 --- a/metadata/hr.kravarscan.enchantedfortress.yml +++ b/metadata/hr.kravarscan.enchantedfortress.yml @@ -7,10 +7,6 @@ Changelog: https://github.com/subchannel13/EnchantedFortress/blob/HEAD/CHANGELOG Donate: https://www.paypal.me/IvanKravarscan/5 AutoName: Enchanted Fortress -Description: |- - A simple game inspired by Age of Castles. Distribute your population to farming, - construction, guard duty and scholarship, survive demon invasion and find the - way to banish them forever. RepoType: git Repo: https://github.com/subchannel13/EnchantedFortress diff --git a/metadata/hu.tagsoft.ttorrent.search.yml b/metadata/hu.tagsoft.ttorrent.search.yml index 061eba1e0e0f..2b837b4e7795 100644 --- a/metadata/hu.tagsoft.ttorrent.search.yml +++ b/metadata/hu.tagsoft.ttorrent.search.yml @@ -8,8 +8,6 @@ SourceCode: https://gitlab.com/tagsoft/ttorrent-search IssueTracker: https://gitlab.com/tagsoft/ttorrent-search/issues AutoName: tTorrent search -Description: | - Simple graphical interface for Transdroid search plugin, can be used as search app in tTorrent. RepoType: git Repo: https://gitlab.com/tagsoft/ttorrent-search.git diff --git a/metadata/im.quicksy.client.yml b/metadata/im.quicksy.client.yml index 654711cdf6e9..89f146ab46e2 100644 --- a/metadata/im.quicksy.client.yml +++ b/metadata/im.quicksy.client.yml @@ -15,34 +15,6 @@ LiberapayID: '34225' Bitcoin: 3KAD8vew6tPZDjiUJNnZ3YUoUxrCEVNwFL AutoName: Quicksy -Description: |- - Quicksy is a spin off of the popular Jabber/XMPP client - https://f-droid.org/packages/eu.siacs.conversations with automatic contact discovery. - - You sign up with your phone number and Quicksy will automatically—based on - the phone numbers in your address book—suggest possible contacts to you. - - Under the hood Quicksy is a full-fledged Jabber client that lets you - communicate with any user on any publicly federating server. Likewise users - on Quicksy can be contacted from the outside simply by adding - +phonenumber@quicksy.im to your contact list. - - Aside from the contact sync the user interface is deliberately as close to - Conversations as possible. This allows users to eventually migrate from - Quicksy to Conversations without having to relearn how the app works. - - Suggested contacts consists of other Quicksy users and regular Jabber/XMPP - users who have entered their Jabber ID into the - Quicksy Directory. - - NOTE: To enter your Jabber ID in the Quicksy - directory an one time registration fee is required. - - Read the Privacy Policy for more info. - - Anti-Features: - * NonFreeNet - you can't change the server where the accounts are created - * Tracking - uses a 3rd party service provider (Twilio or Nexmo) to send SMS as needed for authentication RepoType: git Repo: https://github.com/iNPUTmice/Conversations.git diff --git a/metadata/info.zamojski.soft.towercollector.yml b/metadata/info.zamojski.soft.towercollector.yml index 80da0f8f461f..761b566f29ee 100644 --- a/metadata/info.zamojski.soft.towercollector.yml +++ b/metadata/info.zamojski.soft.towercollector.yml @@ -9,38 +9,6 @@ Translation: https://zamojski.oneskyapp.com/collaboration/ Changelog: https://github.com/zamojski/TowerCollector/releases AutoName: Tower Collector -Description: |- - Tower Collector gives you opportunity to contribute in OpenCellID.org and - Mozilla Location Services projects by uploading GPS locations of - GSM/UMTS/LTE/CDMA cell towers from your area. The measurements help map - the extent of mobile phone network coverage. You can use the app to collect - data for personal purposes and export them to CSV or GPX files. - Some features: - * specially optimized GPS parameters to reduce battery drain - * upload to OpenCellID.org and Mozilla Location Services (MLS) projects - * export to SD card as CSV or GPX - * ad-free, forever! - - The OpenCellID.org project goal is to create a worldwide open source - database of mobile cell locations. Tower Collector gives you opportunity to - contribute in OpenCellID project by uploading cell towers locations from - your area. Collected data can be used to quickly locate devices without - enabling GPS. - - Mozilla Location Services (MLS) is an open source project, aiming to create - a worldwide database of wireless network infrastructure identifiers (cell - towers, WiFi access points, Bluetooth beacons) correlated with GPS - locations. Aggregated cell location set is available under the public - domain "Creative Commons (CC-0)" license. - - Please help me translate it to other languages, visit - i18n.zamojski.info - - This application does not collect, store or send any information which can - be used to directly identify user, device which is being used or any other - personal information. - - BUG REPORTS AND FEATURE REQUEST VIA EMAIL OR GITHUB ISSUES PLEASE. RepoType: git Repo: https://github.com/zamojski/TowerCollector diff --git a/metadata/io.github.deweyreed.clipboardcleaner.yml b/metadata/io.github.deweyreed.clipboardcleaner.yml index d652c4e98981..49fd3ad3e87e 100644 --- a/metadata/io.github.deweyreed.clipboardcleaner.yml +++ b/metadata/io.github.deweyreed.clipboardcleaner.yml @@ -6,14 +6,6 @@ IssueTracker: https://github.com/DeweyReed/ClipboardCleaner/issues Changelog: https://github.com/DeweyReed/ClipboardCleaner/releases AutoName: ClipboardCleaner -Description: |- - As you may know, Android clipboard content and its changes can be accessed by - any app, which is a security hole if you care about it. Any app can get your copied password, credit card numbers - and more. - - However, ClipboardCleaner can't protect your passwords from being accessed by - any app. But it gives you some ways to - check and clean your clipboard. RepoType: git Repo: https://github.com/DeweyReed/ClipboardCleaner diff --git a/metadata/io.github.lonamiwebs.klooni.yml b/metadata/io.github.lonamiwebs.klooni.yml index 7a6f05860075..7af527a6e35d 100644 --- a/metadata/io.github.lonamiwebs.klooni.yml +++ b/metadata/io.github.lonamiwebs.klooni.yml @@ -7,10 +7,6 @@ IssueTracker: https://github.com/LonamiWebs/Klooni1010/issues Changelog: https://github.com/LonamiWebs/Klooni1010/releases AutoName: 1010! Klooni -Description: |- - Note: This version is no longer developed, the new app is https://f-droid.org/packages/dev.lonami.klooni - - An open source version of the original 1010! game by Gram Games. RepoType: git Repo: https://github.com/LonamiWebs/Klooni1010 diff --git a/metadata/io.github.subhamtyagi.lastlauncher.yml b/metadata/io.github.subhamtyagi.lastlauncher.yml index d29d171346f4..362f3ab8925a 100644 --- a/metadata/io.github.subhamtyagi.lastlauncher.yml +++ b/metadata/io.github.subhamtyagi.lastlauncher.yml @@ -6,25 +6,6 @@ SourceCode: https://github.com/SubhamTyagi/Last-Launcher IssueTracker: https://github.com/SubhamTyagi/Last-Launcher/issues AutoName: Last Launcher -Description: |- - Note: This app is unmaintained, its app repository is archived by the dev - - Last Launcher is Simple, Minimalist, Customisable open source Android launcher. It aims to provide fastest and simplest ever user experience. - - This is preview release: - * Faster than Fastest :) - * Lightweight. - * Smart and smarter. - * Material design look and feel - * Small size. - * No icon and widgets (may be a disadvantage). - * Resizable and colourful app names. - * Restore/Backup - * Random Colors - * Multiple themes - * Hide apps - - To access Launcher settings long click on empty area RepoType: git Repo: https://github.com/SubhamTyagi/Last-Launcher diff --git a/metadata/io.github.subhamtyagi.nightmode.yml b/metadata/io.github.subhamtyagi.nightmode.yml index 6ecab7eacf81..5dc4f22bfa91 100644 --- a/metadata/io.github.subhamtyagi.nightmode.yml +++ b/metadata/io.github.subhamtyagi.nightmode.yml @@ -6,12 +6,6 @@ SourceCode: https://github.com/SubhamTyagi/night-mode-tile IssueTracker: https://github.com/SubhamTyagi/night-mode-tile/issues AutoName: Night Mode -Description: |- - Note: This app is unmaintained, its app repository is archived by the dev - - A shortcut to night mode via Tiles, - - Many android devices doesn't explicitly have the night mode by this app you can enable or disable night mode. RepoType: git Repo: https://github.com/SubhamTyagi/night-mode-tile.git diff --git a/metadata/io.github.subhamtyagi.privacyapplock.yml b/metadata/io.github.subhamtyagi.privacyapplock.yml index d6828270d604..9614fa0361d3 100644 --- a/metadata/io.github.subhamtyagi.privacyapplock.yml +++ b/metadata/io.github.subhamtyagi.privacyapplock.yml @@ -5,17 +5,6 @@ SourceCode: https://github.com/SubhamTyagi/AppLock IssueTracker: https://github.com/SubhamTyagi/AppLock/issues AutoName: App Lock -Description: |- - Note: This app is unmaintained, its app repository is archived by the dev - - AppLock is a smarter and safer and open source android app locker, which - guards your privacy security with pattern lock. - - This application uses "USAGE APP" permission to lock the Apps. - - With AppLock, your privacy is well protected with pattern lock, give your - phone All-round protection. AppLock can lock Social Apps, System Apps, SMSes - and any other applications you want to lock. RepoType: git Repo: https://github.com/SubhamTyagi/AppLock.git diff --git a/metadata/it.diab.yml b/metadata/it.diab.yml index 4015cc38223b..883c7a4e03a2 100644 --- a/metadata/it.diab.yml +++ b/metadata/it.diab.yml @@ -10,18 +10,6 @@ IssueTracker: https://github.com/bvlj/diab/issues Changelog: https://github.com/bvlj/diab/releases AutoName: Diab -Description: |- - Diab is a smart opensource application that helps you managing your - diabetes by keeping track of your glucose values and insulin injections. - - Using the data registered inside the app it’s possible to generate a - customized plugin that once applied to the app will provide smart insights - for insulin dosages based on real-time context. - - Features: - * Save records of glucose and insuline dosages - * Export data as a spreadsheet file - * Insulin suggestions plugin RepoType: git Repo: https://github.com/bvlj/diab diff --git a/metadata/me.ccrama.redditslide.yml b/metadata/me.ccrama.redditslide.yml index a165ca28c267..db8cb46645e8 100644 --- a/metadata/me.ccrama.redditslide.yml +++ b/metadata/me.ccrama.redditslide.yml @@ -13,42 +13,6 @@ Translation: https://crowdin.com/project/slide-for-reddit Changelog: https://github.com/ccrama/Slide/blob/HEAD/CHANGELOG.md Name: Slide -Description: |- - Slide for Reddit is a feature-packed, material-designed unofficial browser for - Reddit with an easy to use UI and tons of customization. Slide is ad-free, open - source, and is packed with many unique features! Slide is for everyone, with a - broad array of features for power users and sleek design for minimalists. - - '''Highlights:''' - - * Gorgeous and unique design that is both pleasing to the eye, extremely easy to use, and fully configurable with over 12,000 theme combinations - * Slide is fully offline-capable! Sync your subreddits automatically and enjoy Reddit where you don’t have internet, complete with images and gifs - * Make each subreddit unique with its own theme colors and accents - * Always ad-free and open source - * Image Flair support lets you show off your unique flair in your favorite communities, including /r/collegebasketball and /r/soccer - * Reply to comments and submissions inline without opening a reply window, and upload images straight into to your submissions/comments - * Support for many content sites, including Imgur, Tumblr, Gfycat, and Vid.me - * Most feature-rich and easy to use moderation suite on Android - * Hundreds of customization options to make Slide work exactly how you like it - * Lightweight and blazing fast - - '''Other features that make Slide awesome:''' - - * Many view types including desktop compact for dense information display and beautiful material card layout for enjoying photos - * Gallery and shadowbox modes (pro) give you a new way to view your favorite subreddits - * Extensive data-saving options with quality selection, never blow through your data caps again - * Theme choices include a beautiful true black AMOLED theme, sepia theme, blue gray theme, and white theme - * Synccit integration - * Full subreddit wiki support, and ability to correctly render tables and code blocks - * Full multireddit support with the ability to view other users’ multireddits - * Switch accounts when writing comments - * Powerful filter system to block out what you don’t want to see - * View and delete your browsing history - * Get notified of new posts in subreddits - * “Casual” subscriptions that won’t show up on your frontpage - * Ad-Block in websites (Pro) - * Optimized for tablet viewing with configurable columns and popup comment views (Pro) - * Many more details and features that you will fall in love with RepoType: git Repo: https://github.com/ccrama/Slide diff --git a/metadata/mono.hg.yml b/metadata/mono.hg.yml index 09ff55b18a13..c1329572072e 100644 --- a/metadata/mono.hg.yml +++ b/metadata/mono.hg.yml @@ -9,10 +9,6 @@ Translation: https://hosted.weblate.org/engage/hglauncher/ Changelog: https://github.com/F4uzan/HgLauncher/releases AutoName: HgLauncher -Description: HgLauncher is a launcher with a design philosophy of 'if it works, it - works.' Consisting of simply a scrolling list of apps, there is very little visual - cue to disturb you. If all you want in a launcher is for it to just launch apps - ASAP, then you may be looking at the right launcher. RepoType: git Repo: https://github.com/F4uzan/HgLauncher diff --git a/metadata/net.fabiszewski.ulogger.yml b/metadata/net.fabiszewski.ulogger.yml index 597db6e76fe9..0303310b974f 100644 --- a/metadata/net.fabiszewski.ulogger.yml +++ b/metadata/net.fabiszewski.ulogger.yml @@ -9,22 +9,6 @@ Donate: https://www.paypal.me/bfabiszewski Bitcoin: bc1qt3uwhze9x8tj6v73c587gprhufg9uur0rzxhvh AutoName: μlogger -Description: |- - μlogger ('micro-logger') is an application for continuous logging of location - coordinates, designed to record hiking, biking tracks and other outdoor - activities. Application works in background. Track points are saved at chosen - intervals and may be uploaded to dedicated server in real time. This client - works with μlogger web server. - Together they make a complete self owned and controlled client–server solution. - - Features - - * meant to be simple and small (μ); - * low memory and battery impact; - * uses GPS or network based location data; - * synchronizes location with web server in real time, in case of problems keeps retrying; - * alternatively works in offline mode; positions may be uploaded to the servers manually; - * configurable tracking settings RepoType: git Repo: https://github.com/bfabiszewski/ulogger-android diff --git a/metadata/nl.implode.weer.yml b/metadata/nl.implode.weer.yml index d7f3ff75f1b5..2d5a857afe0a 100644 --- a/metadata/nl.implode.weer.yml +++ b/metadata/nl.implode.weer.yml @@ -8,11 +8,6 @@ IssueTracker: https://github.com/sanderbaas/WeatherWidget/issues Name: Weather Widget AutoName: Weather -Description: |- - Add one or more widgets to home screen with weather 5 to 7 day weather forecast - in a location. - - ''NonFreeNet:'' OpenWeatherMap service itself is not open source. RepoType: git Repo: https://github.com/sanderbaas/WeatherWidget.git diff --git a/metadata/org.ddosolitary.okcagent.yml b/metadata/org.ddosolitary.okcagent.yml index 10f764d4e682..ceee85f2e435 100644 --- a/metadata/org.ddosolitary.okcagent.yml +++ b/metadata/org.ddosolitary.okcagent.yml @@ -6,16 +6,6 @@ SourceCode: https://github.com/DDoSolitary/OkcAgent IssueTracker: https://github.com/DDoSolitary/OkcAgent/issues AutoName: OkcAgent -Description: |- - ''OkcAgent'' acts as a bridge/proxy between Termux and OpenKeychain, - enabling you to perform crypto operations in Termux using your keys stored - in OpenKeychain, like: - - * authenticate SSH connections - * sign/verify/encrypt/decrypt messages - - ''OkcAgent'' implements the existing protocols in this field so you can - seamlessly integrate it with other command line utilities like ssh and git. RepoType: git Repo: https://github.com/DDoSolitary/OkcAgent diff --git a/metadata/org.equeim.tremotesf.yml b/metadata/org.equeim.tremotesf.yml index 6a5284f27c57..b8c03f7cf3af 100644 --- a/metadata/org.equeim.tremotesf.yml +++ b/metadata/org.equeim.tremotesf.yml @@ -9,27 +9,6 @@ Translation: https://www.transifex.com/equeim/tremotesf-android Changelog: https://github.com/equeim/tremotesf-android/blob/HEAD/CHANGELOG.md AutoName: Tremotesf -Description: |- - Remote GUI for the Transmission BitTorrent client. - - Features: - - * View torrent list - * Sort torrents - * Filter torrents by name, status and trackers - * Start/stop/verify torrents with multi-selection - * Add torrents from torrent files and magnet links - * Select which files to download when adding torrent - * Manage torrent files - * Add and remove torrent trackers - * View torrent peers - * Set torrent limits - * Change remote server settings - * View server statistics - * Multiple servers - * Supports HTTPS connection - * Can connect to servers with self-signed certificates (you need to add certificate to server settings) - * Client certificate authentication RepoType: git Repo: https://github.com/equeim/tremotesf-android diff --git a/metadata/org.example.rosary.yml b/metadata/org.example.rosary.yml index 59636e9b4dc3..a3e0bf9094a9 100644 --- a/metadata/org.example.rosary.yml +++ b/metadata/org.example.rosary.yml @@ -6,9 +6,6 @@ SourceCode: https://github.com/jfcolom/rosary IssueTracker: https://github.com/jfcolom/rosary/issues AutoName: Rosary -Description: This is a very simple app helping christian users to pray the Rosary. - It basically shows biblical texts for the mysteries in an ordered way, and simulate - beads to count Hail Mary prayers. RepoType: git Repo: https://github.com/jfcolom/rosary diff --git a/metadata/org.fitchfamily.android.dejavu.yml b/metadata/org.fitchfamily.android.dejavu.yml index c98242315bdc..dfed87cdb6e7 100644 --- a/metadata/org.fitchfamily.android.dejavu.yml +++ b/metadata/org.fitchfamily.android.dejavu.yml @@ -9,21 +9,6 @@ IssueTracker: https://github.com/n76/DejaVu/issues Changelog: https://github.com/n76/DejaVu/blob/HEAD/CHANGELOG.md AutoName: Déjà Vu Location Service -Description: |- - UnifiedNlp backend that uses locally acquired WLAN/Wi-Fi AP and mobile/cellular - tower data to resolve user location. Collectively, “WLAN/WiFi and - mobile/cellular” signals will be called “RF emitters” below. - - Conceptually, this backend consists of two parts sharing a common database. One - part passively monitors the GPS. If the GPS has acquired and has a good position - accuracy, then the coverage maps for RF emitters detected by the phone are - created and saved. - - The other part is the actual location provider which uses the database to - estimate location when the GPS is not available. - - This backend uses no network data. All data acquired by the phone stays on the - phone. RepoType: git Repo: https://github.com/n76/DejaVu diff --git a/metadata/org.fitchfamily.android.gsmlocation.yml b/metadata/org.fitchfamily.android.gsmlocation.yml index a2013c70053d..e54069d7bb0d 100644 --- a/metadata/org.fitchfamily.android.gsmlocation.yml +++ b/metadata/org.fitchfamily.android.gsmlocation.yml @@ -10,18 +10,6 @@ Changelog: https://gitlab.com/deveee/Local-GSM-Backend/-/blob/master/CHANGELOG.m Name: LocalGsmNlpBackend AutoName: GSM Location Service -Description: |- - https://f-droid.org/packages/com.google.android.gms backend that uses local GSM data to resolve user - location. - - A facility in the setting menu allows you to create a database using data from - OpenCellId and/or Location Services CSV files. Alternatively, the on-phone database can - be generated in advance via the lacells-creator scripts that gather tower information from those two sources, - too. - - This backend performs no network data. All data acquired by the phone stays on - the phone and no queries are made to a centralized AP location provider. RepoType: git Repo: https://gitlab.com/deveee/Local-GSM-Backend.git diff --git a/metadata/org.fitchfamily.android.symphony.yml b/metadata/org.fitchfamily.android.symphony.yml index 2e9274ab07ed..9895e0721e60 100644 --- a/metadata/org.fitchfamily.android.symphony.yml +++ b/metadata/org.fitchfamily.android.symphony.yml @@ -9,11 +9,6 @@ IssueTracker: https://github.com/n76/Symphony/issues Changelog: https://github.com/n76/Symphony/blob/HEAD/CHANGELOG.md AutoName: Symphony -Description: |- - A simple music player based on the ability to play random albums within a - specified genre with all the songs in the album played in order. This is - tailored to listening to classical music, Broadway musicals or other genres - where the order of the tracks in an album are significant. RepoType: git Repo: https://github.com/n76/Symphony diff --git a/metadata/org.fitchfamily.android.wifi_backend.yml b/metadata/org.fitchfamily.android.wifi_backend.yml index 884626534a3d..0bb72d45b2e6 100644 --- a/metadata/org.fitchfamily.android.wifi_backend.yml +++ b/metadata/org.fitchfamily.android.wifi_backend.yml @@ -10,21 +10,6 @@ Changelog: https://github.com/n76/wifi_backend/blob/HEAD/CHANGELOG.md Name: LocalWifiNlpBackend AutoName: WiFi Location Service -Description: |- - https://f-droid.org/packages/com.google.android.gms backend that uses locally acquired WiFi AP data to - resolve user location. - - This backend consists of two parts sharing a common database. One part passively - monitors the GPS. If the GPS has acquired and has a good position accuracy, then - the WiFi APs detected by the phone are stored. - - The other part is the actual location provider which uses the database to - estimate location when the GPS is not available or has not yet gotten its first - fix. The use of stored WiFi AP can dramatically decrease the GPS time to first - fix. - - This backend performs no network data. All data acquired by the phone stays on - the phone and no queries are made to a centralized AP location provider. RepoType: git Repo: https://github.com/n76/wifi_backend diff --git a/metadata/org.fossasia.badgemagic.yml b/metadata/org.fossasia.badgemagic.yml index 8542b6233060..135fa3c3ad9d 100644 --- a/metadata/org.fossasia.badgemagic.yml +++ b/metadata/org.fossasia.badgemagic.yml @@ -9,10 +9,6 @@ IssueTracker: https://github.com/fossasia/badge-magic-android/issues Changelog: https://github.com/fossasia/badge-magic-android/releases AutoName: Badge Magic -Description: The Badge Magic Android app lets you create scrolling symbols and text - on LED name badges through Bluetooth. The app provides options to portray names, - clipart and simple animations on LED badges. For the data transfer from the smartphone - to the LED badge we use Bluetooth. The project is based on the work of Nilhcem. RepoType: git Repo: https://github.com/fossasia/badge-magic-android diff --git a/metadata/org.gateshipone.odyssey.yml b/metadata/org.gateshipone.odyssey.yml index 79c8784b67ea..a75fe839b426 100644 --- a/metadata/org.gateshipone.odyssey.yml +++ b/metadata/org.gateshipone.odyssey.yml @@ -10,21 +10,6 @@ Translation: https://github.com/gateship-one/odyssey/blob/HEAD/CONTRIBUTING.md#c Changelog: https://github.com/gateship-one/odyssey/blob/HEAD/CHANGELOG.md AutoName: Odyssey -Description: |- - Music player that is optimized for speed (even with large music libraries). On - the other hand the players is designed with the Material Design Guidelines in - mind and we try to follow them as close as possible. - - It’s main features are a fast music library (artist, album, file browser). - - A basic playlist management functionality is also part of this player. - - To be able to play audio books and podcast this player has a bookmark feature, - that allows you to save your playlist and the playback position, to resume your - audio book/podcast later. - - For more comfort you are able to use the launcher widget to have quick control - over your music playback. RepoType: git Repo: https://github.com/gateship-one/odyssey diff --git a/metadata/org.liberty.android.freeotpplus.yml b/metadata/org.liberty.android.freeotpplus.yml index 702c18d52201..9370b8031f60 100644 --- a/metadata/org.liberty.android.freeotpplus.yml +++ b/metadata/org.liberty.android.freeotpplus.yml @@ -7,24 +7,6 @@ Translation: https://crowdin.com/project/FreeOTPPlus Changelog: https://github.com/helloworld1/FreeOTPPlus/releases AutoName: FreeOTP Plus -Description: |- - FreeOTP Plus is a fork of FreeOTP provided by Red Hat with the following - enhancements: - - * Export settings to Google Drive or other document providers - * Import settings from Google Drive or other document providers - * Supports Android 6.0 permissions - * Enhanced UI with material design - - FreeOTP is a two-factor authentication (2FA) application for systems utilizing - one-time password protocols (OTP). Tokens can be added easily by scanning a - QR-code or by manually entering in the token configuration. - - FreeOTP implements open standards. This means that no proprietary server-side - component is necessary: use any server-side component that implements these - standards — for example FreeIPA, which uses TOTP. Any - standards-compliant implementation will work. Currently, FreeOTP provides - implementations of HOTP (RFC 4226) and TOTP (RFC 6238). RepoType: git Repo: https://github.com/helloworld1/FreeOTPPlus.git diff --git a/metadata/org.moire.opensudoku.yml b/metadata/org.moire.opensudoku.yml index 1ef9f0f9500d..52aecb4eaf27 100644 --- a/metadata/org.moire.opensudoku.yml +++ b/metadata/org.moire.opensudoku.yml @@ -10,17 +10,6 @@ IssueTracker: https://github.com/ogarcia/opensudoku/issues Changelog: https://github.com/ogarcia/opensudoku/releases AutoName: Open Sudoku -Description: |- - Open Sudoku is a simple open source sudoku game. It's designed to be controlled - both by finger and keyboard. It's preloaded with 90 puzzles in 3 difficulty - levels, more puzzles can be downloaded from the web and it also allows you to - enter your own puzzles. - - Additional puzzles are available on the following websites: - - * Project homepage - * Original project - * Other collection of puzzles RepoType: git Repo: https://github.com/ogarcia/opensudoku.git diff --git a/metadata/org.pipoypipagames.towerjumper.yml b/metadata/org.pipoypipagames.towerjumper.yml index 5262addeebb0..87248c7bec6b 100644 --- a/metadata/org.pipoypipagames.towerjumper.yml +++ b/metadata/org.pipoypipagames.towerjumper.yml @@ -8,10 +8,6 @@ IssueTracker: https://github.com/Dariasteam/TowerJumper/issues Changelog: https://github.com/Dariasteam/TowerJumper/releases AutoName: TowerJumper -Description: | - This is a clone of a popular android game in which you move a jumping ball and - try to reach the end of a tower avoiding the obstacles. The levels are randomly - generated. RepoType: git Repo: https://github.com/Dariasteam/TowerJumper.git diff --git a/metadata/org.schabi.stethox.yml b/metadata/org.schabi.stethox.yml index 00c866dbc2c5..b2771f54079c 100644 --- a/metadata/org.schabi.stethox.yml +++ b/metadata/org.schabi.stethox.yml @@ -7,17 +7,6 @@ SourceCode: https://gitlab.com/derSchabi/Stethox IssueTracker: https://gitlab.com/derSchabi/Stethox/issues AutoName: Stethox -Description: |- - This is a Xposed Module that enables Stetho for every application on your - phone. All Stetho functions are given besides Network Monitoring. For this - however I highly recommend using mitmproxy or tcpdump and Wireshark. - - This Module can be used for Reverse Engineering. Especially the Layout Preview - is very useful. Please also take a look at Inspackage since this will add even - more functions for this purpose. - - ATTENTION:Never leave this Module enabled or installed on day to day use. THIS - IS A SECURITY RISK. Only enable this for Development. RepoType: git Repo: https://gitlab.com/derSchabi/Stethox.git diff --git a/metadata/org.secuso.privacyfriendlypasswordgenerator.yml b/metadata/org.secuso.privacyfriendlypasswordgenerator.yml index 7752aa2e65f2..2fa72cfaaaa4 100644 --- a/metadata/org.secuso.privacyfriendlypasswordgenerator.yml +++ b/metadata/org.secuso.privacyfriendlypasswordgenerator.yml @@ -10,14 +10,6 @@ IssueTracker: https://github.com/SecUSo/privacy-friendly-passwordgenerator/issue Changelog: https://github.com/SecUSo/privacy-friendly-passwordgenerator/blob/HEAD/CHANGELOG.md AutoName: Password Generator -Description: |- - With Privacy Friendly Password Generator you can generate different passwords - for all your accounts while remembering only one master password. - - Detailed information about generating passwords can be found at the app’s help - page or at [https://secuso.org/pfa]. The app belongs to the Privacy Friendly - Apps group developed by the research group SECUSO at Technische Universität - Darmstadt. More information can be found an [https://secuso.org/pfa]. RepoType: git Repo: https://github.com/SecUSo/privacy-friendly-passwordgenerator diff --git a/metadata/org.yuttadhammo.BodhiTimer.yml b/metadata/org.yuttadhammo.BodhiTimer.yml index 9340d7aed802..5def5a067f32 100644 --- a/metadata/org.yuttadhammo.BodhiTimer.yml +++ b/metadata/org.yuttadhammo.BodhiTimer.yml @@ -9,7 +9,6 @@ SourceCode: https://github.com/yuttadhammo/BodhiTimer IssueTracker: https://github.com/yuttadhammo/BodhiTimer/issues AutoName: Bodhi Timer -Description: An elegant minimalist count-down timer RepoType: git Repo: https://github.com/yuttadhammo/BodhiTimer diff --git a/metadata/pro.rudloff.openvegemap.yml b/metadata/pro.rudloff.openvegemap.yml index 5121f050ee11..5b3badfe42db 100644 --- a/metadata/pro.rudloff.openvegemap.yml +++ b/metadata/pro.rudloff.openvegemap.yml @@ -11,11 +11,6 @@ Changelog: https://github.com/Rudloff/openvegemap-cordova/releases LiberapayID: '34455' AutoName: OpenVegeMap -Description: |- - This app allows you to find vegetarian and vegan restaurants near you. It is - based on data from OpenStreetmap. - - A web version is available on openvegemap.netlib.re. RepoType: git Repo: https://github.com/Rudloff/openvegemap-cordova diff --git a/metadata/ru.henridellal.dialer.yml b/metadata/ru.henridellal.dialer.yml index d8631fb83f19..10da664fe0ae 100644 --- a/metadata/ru.henridellal.dialer.yml +++ b/metadata/ru.henridellal.dialer.yml @@ -7,13 +7,6 @@ IssueTracker: https://github.com/HenriDellal/emerald-dialer/issues Changelog: https://github.com/HenriDellal/emerald-dialer/releases AutoName: Emerald Dialer -Description: |- - Emerald Dialer is a lightweight dialer app. - - Features: - * T9 contacts search; - * Speed dial; - * Themes: light and dark. RepoType: git Repo: https://github.com/HenriDellal/emerald-dialer.git diff --git a/metadata/ru.yanus171.feedexfork.yml b/metadata/ru.yanus171.feedexfork.yml index e81811b993b6..ee52f912a83d 100644 --- a/metadata/ru.yanus171.feedexfork.yml +++ b/metadata/ru.yanus171.feedexfork.yml @@ -8,32 +8,6 @@ Translation: https://crowdin.com/project/handy-news-reader Changelog: https://github.com/yanus171/Handy-News-Reader/releases AutoName: Handy News Reader -Description: | - '''Main functions:''' - - * RSS feeds of articles - * search for a feed by keyword when adding - * automatic (by shedule) download offline full-text versions of articles with images - * import / export of the channel list from OPML - * filter articles by keywords or regular expressions - * full screen reading mode - - '''Additional features:''' - - * collapsing (folding) the groups of feeds - * hide read articles mode - * bold articles text font setting - * share a link with this app to prepare it for reading - * limit the number of downloadable images of the article - * the ability to download individual images of the article - * a detailed description of the process of downloading articles to understand what the application is doing at the moment - * the counter of the consumed traffic - * setting up automatic marking of articles as read while scrolling the list - * setting the display of the text of articles in the article list (these two items are useful for reading forums) - * Tap areas to go to the next / previous page while reading the article - * Swipe to change brightness while reading the article - * Quick transition to full screen mode and back, as well as showing / hiding the action bar - * much more ... RepoType: git Repo: https://github.com/yanus171/Handy-News-Reader diff --git a/metadata/ryey.colorsniffer.yml b/metadata/ryey.colorsniffer.yml index 17a7e9e9c109..5f68980b18db 100644 --- a/metadata/ryey.colorsniffer.yml +++ b/metadata/ryey.colorsniffer.yml @@ -9,10 +9,6 @@ Donate: https://me.ryey.icu/donate/ LiberapayID: '27842' AutoName: ColorSniffer -Description: |- - ColorSniffer is developed as a companion app for Last Launcher. You can use it to automatically generate color scheme for app launcher entries. - - The color scheme is generated based on each apps' own icon. There are several options for choosing the exact aspect to determine the color. RepoType: git Repo: https://github.com/renyuneyun/ColorSniffer.git diff --git a/metadata/ryey.easer.yml b/metadata/ryey.easer.yml index f6b671fd1cc3..d4877150401b 100644 --- a/metadata/ryey.easer.yml +++ b/metadata/ryey.easer.yml @@ -12,27 +12,6 @@ Donate: https://renyuneyun.github.io/Easer/en/DONATE LiberapayID: '27842' AutoName: Easer -Description: |- - Make your smart phone smarter: tell it what to do under what situation. - - Easer is an event-driven Android automation app. It knows various events, and - you, the user, could tell it what to do on what event (and even combine multiple - events!). Routine actions no longer need to be taken manually. - - This app was inspired by CyanogenMod’s 'profile' mechanism and IFTTT. The - original intuition was to automatically change the profile on certain time or - specific WiFi connections, and it was expanded for more general use then (so - Easer runs on any Android devices). - - Reminder: Easer is still under development. It may contain bugs and the UI - definitely needs to be improved. For more details or expansion of Easer, read - README, - HOWTO (creating more events / - operations), TODO (or - README, - HOWTO, - TODO if you can read Chinese) - document in the repo. RepoType: git Repo: https://github.com/renyuneyun/Easer.git diff --git a/metadata/taco.apkmirror.yml b/metadata/taco.apkmirror.yml index 8e5fb4c3ebfe..27154b607841 100644 --- a/metadata/taco.apkmirror.yml +++ b/metadata/taco.apkmirror.yml @@ -9,28 +9,6 @@ SourceCode: https://gitlab.com/TacoTheDank/APKMirror IssueTracker: https://gitlab.com/TacoTheDank/APKMirror/issues AutoName: APKMirror -Description: |- - An Android app that utilizes a WebView to browse APKMirror. - APKMirror provides APKs, as the name obviously suggests. - This app saves you the trouble of having to open up a browser - and visit APKMirror by typing the URL, and is the sole purpose of - this app existing (because who needs stupid boring browsers when - you can create an entire app for a site, amirite?). - - Features - - * Quick loading (depends on phone; newer models load much faster) - * Ability to choose any download manager - * Clean-ish material design - * Small-ish APK size (remember to clear the cache regularly, as it builds up when downloading APKs) - - Things that would constitute as Anti-Features (that aren't already shown by F-Droid) - - * The app itself does NOT contain any ad libraries whatsoever (it is completely FOSS). - However, as anyone who has visited the APKMirror site probably knows, they do display ads. - As this app utilizes a WebView, the site's ads will also end up being displayed in the app. - Remember that they show ads to be able to keep their site up, so try not to think too harshly - of them. RepoType: git Repo: https://gitlab.com/TacoTheDank/APKMirror.git diff --git a/metadata/tech.ula.yml b/metadata/tech.ula.yml index ce54e0de1d21..c4fa772bf0cc 100644 --- a/metadata/tech.ula.yml +++ b/metadata/tech.ula.yml @@ -8,30 +8,6 @@ IssueTracker: https://github.com/CypherpunkArmory/UserLAnd/issues Changelog: https://github.com/CypherpunkArmory/UserLAnd/releases AutoName: UserLAnd -Description: |- - UserLAnd provides the easiest way to run GNU/Linux Distros on Android. - - '''Features:''' - * Run full linux distros or specific applications on top of Android. - * Install and uninstall like a regular app. - * No root required. - - There are two ways to use UserLAnd - - Using single-click apps: - * Click an app. - * Fill out the required information. - * You're good to go! - Using user-defined custom sessions: - - * Define a session - This describes what filesystem you are going to use, and - what kind of service you want to use when connecting to it (ssh or vnc). - * Define a filesystem - This describes what distribution of Linux you want to - install. - * Once defined, just tap on the session to start up. This will download - necessary assets, setup the filesystem, start the server, and connect to it. - This will take several minutes for the first start up, but will be quicker - afterwards. RepoType: git Repo: https://github.com/CypherpunkArmory/UserLAnd diff --git a/metadata/uk.co.richyhbm.monochromatic.yml b/metadata/uk.co.richyhbm.monochromatic.yml index 9b0f12158682..7ed1e822ee05 100644 --- a/metadata/uk.co.richyhbm.monochromatic.yml +++ b/metadata/uk.co.richyhbm.monochromatic.yml @@ -9,10 +9,6 @@ SourceCode: https://github.com/RichyHBM/Monochromatic IssueTracker: https://github.com/RichyHBM/Monochromatic/issues AutoName: Monochromatic -Description: |- - This app makes use of the built-in black and white device feature to provide - a blue-light filtered screen without the use of an overlay screen, to help - relax your eyes at night and disincentivise phone usage. RepoType: git Repo: https://github.com/RichyHBM/Monochromatic diff --git a/metadata/xyz.hisname.fireflyiii.yml b/metadata/xyz.hisname.fireflyiii.yml index 1a041a07117d..c92f07a792e8 100644 --- a/metadata/xyz.hisname.fireflyiii.yml +++ b/metadata/xyz.hisname.fireflyiii.yml @@ -8,7 +8,6 @@ IssueTracker: https://github.com/emansih/FireflyMobile/issues Changelog: https://github.com/emansih/FireflyMobile/releases AutoName: Photuris III -Description: Unofficial mobile client for Firefly III, a personal finances manager. RepoType: git Repo: https://github.com/emansih/FireflyMobile -- GitLab