Merge remote-tracking branch 'upstream/master'
catch up with upstream
This commit is contained in:
commit
5cd4875f82
|
@ -2,19 +2,39 @@ image: registry.gitlab.com/fdroid/ci-images-server:latest
|
|||
|
||||
before_script:
|
||||
- rm -rf fdroidserver
|
||||
- git clone --depth=1 https://gitlab.com/fdroid/fdroidserver.git
|
||||
- mkdir fdroidserver
|
||||
- curl --silent https://gitlab.com/fdroid/fdroidserver/repository/master/archive.tar.gz
|
||||
| tar -xz --directory=fdroidserver --strip-components=1
|
||||
- export PATH="$PWD/fdroidserver:$PATH"
|
||||
- touch config.py
|
||||
|
||||
lint:
|
||||
script:
|
||||
# if this is a merge request fork, then only check relevant apps
|
||||
- if [ "$CI_PROJECT_NAMESPACE" != "fdroid" ]; then
|
||||
git fetch https://gitlab.com/fdroid/fdroiddata;
|
||||
test -d build || mkdir build;
|
||||
for f in `git diff --name-only --diff-filter=d FETCH_HEAD...HEAD`; do
|
||||
appid=`echo $f | sed -n -e 's,^metadata/\([^/][^/]*\)\.txt,\1,p'
|
||||
-e 's,^metadata/\([^/][^/]*\)\.yml,\1,p'`;
|
||||
export CHANGED="$CHANGED $appid";
|
||||
grep -q "^Repo *Type\W *git" $f && git -C build clone `sed -n "s,^Repo *:,,p" $f` $appid;
|
||||
done;
|
||||
./tools/audit-gradle.py $CHANGED;
|
||||
fi
|
||||
- export EXITVALUE=0
|
||||
- fdroid lint -f || {
|
||||
- fdroid lint -f $CHANGED || {
|
||||
export EXITVALUE=1;
|
||||
printf "\nThese files have lint issues:\n";
|
||||
fdroid rewritemeta -l;
|
||||
fdroid rewritemeta -l $CHANGED;
|
||||
printf "\nThese are the formatting issues:\n";
|
||||
fdroid rewritemeta;
|
||||
fdroid rewritemeta $CHANGED;
|
||||
git --no-pager diff --color=always;
|
||||
}
|
||||
- apt-get -qy update
|
||||
- apt-get -qy install --no-install-recommends exiftool
|
||||
- exiftool -all= `find metadata/ -name '*.jp*g' -o -name '*.png'`
|
||||
- echo "these images have EXIF that must be stripped:"
|
||||
- git --no-pager diff --stat
|
||||
- git --no-pager diff --name-only --exit-code || export EXITVALUE=1
|
||||
- exit $EXITVALUE
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
[](https://gitlab.com/fdroid/fdroiddata/builds)
|
||||
[](https://liberapay.com/F-Droid-Data/)
|
||||
**[Current Buildserver Activity](https://f-droid.org/wiki/index.php?title=Special:RecentChanges&days=7&from=&hidebots=0&hideanons=1&hideliu=1&limit=500)**
|
||||
|
||||
This repository holds general and build information for all the apps on our
|
||||
main repo on f-droid.org.
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -25,6 +25,7 @@ Repo:https://github.com/gryphius/androdns.git
|
|||
Binaries:https://github.com/gryphius/androdns/releases/download/v%v/androdns.apk
|
||||
|
||||
Build:1.4,6
|
||||
disable=verification fails
|
||||
commit=v1.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
|
|
@ -28,6 +28,6 @@ Build:1.3.1-beta,31
|
|||
buildjni=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.3.1-beta
|
||||
Current Version Code:31
|
||||
|
|
|
@ -83,7 +83,17 @@ Build:1.3.3,13
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.4.0,14
|
||||
commit=v1.4.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.4.1,15
|
||||
commit=v1.4.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.3.3
|
||||
Current Version Code:13
|
||||
Current Version:1.4.1
|
||||
Current Version Code:15
|
||||
|
|
|
@ -140,6 +140,6 @@ Use Color-Picker-2 next time
|
|||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:3.29.2
|
||||
Current Version Code:67
|
||||
|
|
|
@ -571,11 +571,29 @@ Build:1.78,78
|
|||
sed -i -e 's@https://github.com/suckgamony/RapidDecoder/raw/master/repository@https://jitpack.io@g' ../build.gradle
|
||||
scanignore=app/src/main/res/raw/tumangaonline
|
||||
|
||||
Build:1.80,80
|
||||
commit=1.80
|
||||
subdir=app
|
||||
gradle=yes
|
||||
srclibs=RapidDecoder@7cdfca4
|
||||
prebuild=cp -fR $$RapidDecoder$$/library/src/main/java/rapid src/main/java/ && \
|
||||
sed -i -e '/rapid.decoder/d' build.gradle && \
|
||||
sed -i -e 's@https://github.com/suckgamony/RapidDecoder/raw/master/repository@https://jitpack.io@g' ../build.gradle
|
||||
|
||||
Build:1.81,81
|
||||
commit=1.81
|
||||
subdir=app
|
||||
gradle=yes
|
||||
srclibs=RapidDecoder@7cdfca4
|
||||
prebuild=cp -fR $$RapidDecoder$$/library/src/main/java/rapid src/main/java/ && \
|
||||
sed -i -e '/rapid.decoder/d' build.gradle && \
|
||||
sed -i -e 's@https://github.com/suckgamony/RapidDecoder/raw/master/repository@https://jitpack.io@g' ../build.gradle
|
||||
|
||||
Maintainer Notes:
|
||||
RapidDecoder 0.3.0 is required, but this version is not tagged.
|
||||
.
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.78
|
||||
Current Version Code:78
|
||||
Current Version:1.81
|
||||
Current Version Code:81
|
||||
|
|
|
@ -19,6 +19,6 @@ Build:1.27,27
|
|||
target=android-8
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.27
|
||||
Current Version Code:27
|
||||
|
|
|
@ -93,6 +93,7 @@ Build:v2.9.31-fdroid,31
|
|||
forceversion=yes
|
||||
|
||||
Build:v2.9.32-fdroid,32
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.0
|
||||
commit=v2.9.32
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
|
|
@ -18,6 +18,6 @@ Build:1.06,12
|
|||
target=android-15
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.06
|
||||
Current Version Code:12
|
||||
|
|
|
@ -20,6 +20,6 @@ Build:1.4 Grymalkyn,5
|
|||
commit=9fa239eba7a6
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.4 Grymalkyn
|
||||
Current Version Code:5
|
||||
|
|
|
@ -109,7 +109,12 @@ Build:1.4.6,700146
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.5.0,1500150
|
||||
commit=1.5.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.4.6
|
||||
Current Version Code:700146
|
||||
Current Version:1.5.0
|
||||
Current Version Code:1500150
|
||||
|
|
|
@ -50,7 +50,7 @@ Build:1.1.1,10101
|
|||
ant release && \
|
||||
mv bin ant-build
|
||||
|
||||
Auto Update Mode:Version %c
|
||||
Update Check Mode:RepoManifest
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.1.1
|
||||
Current Version Code:10101
|
||||
|
|
64
metadata/be.mygod.vpnhotspot.txt
Normal file
64
metadata/be.mygod.vpnhotspot.txt
Normal file
|
@ -0,0 +1,64 @@
|
|||
Categories:Connectivity
|
||||
License:Apache-2.0
|
||||
Web Site:https://github.com/Mygod/VPNHotspot/blob/HEAD/README.md
|
||||
Source Code:https://github.com/Mygod/VPNHotspot
|
||||
Issue Tracker:https://github.com/Mygod/VPNHotspot/issues
|
||||
Donate:https://mygod.be/donate/
|
||||
FlattrID:e0ggg2
|
||||
|
||||
Auto Name:VPN Hotspot
|
||||
Summary:Share your VPN connection over hotspot or repeater
|
||||
Description:
|
||||
This app is useful for:
|
||||
|
||||
* Connecting things that don't support VPN like Chromecasts behind corporate firewalls;
|
||||
* Set up gapps behind corporate firewalls;
|
||||
* Connect to your mobile hotspot but you're not bothered to set up VPN on your device.
|
||||
|
||||
Requires root to set up networking.
|
||||
|
||||
This app is designed to do only minimal changes to your system, so there's
|
||||
almost no chance you will brick your device and/or break your Internet using
|
||||
this app under normal conditions. However there's also absolutely no guarantee
|
||||
it won't.
|
||||
.
|
||||
|
||||
Requires Root:yes
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/Mygod/VPNHotspot
|
||||
|
||||
Build:1.0.1,7
|
||||
commit=1.0.1
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.0,8
|
||||
commit=1.1.0
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.1,9
|
||||
commit=1.1.1
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.2,10
|
||||
commit=1.1.2
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.3,11
|
||||
commit=1.1.3
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.4,12
|
||||
commit=1.1.4
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags ^[0-9.]+$
|
||||
Current Version:1.1.4
|
||||
Current Version Code:12
|
|
@ -143,6 +143,12 @@ Build:2.17.1,21701
|
|||
gradle=fdroid_free
|
||||
prebuild=sed -i -e '/dl.bintray.com/d' -e '/shrinkResources/d' -e '/minifyEnabled/d' -e '/proguardFiles/d' build.gradle
|
||||
|
||||
Build:2.18,21800
|
||||
commit=v2.18
|
||||
subdir=app
|
||||
gradle=fdroid_free
|
||||
prebuild=sed -i -e '/dl.bintray.com/d' -e '/shrinkResources/d' -e '/minifyEnabled/d' -e '/proguardFiles/d' build.gradle
|
||||
|
||||
Maintainer Notes:
|
||||
Remove shrink/minify stuff since the proguard config is missing.
|
||||
.
|
||||
|
@ -150,5 +156,5 @@ Remove shrink/minify stuff since the proguard config is missing.
|
|||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Update Check Name:be.ppareit.swiftp
|
||||
Current Version:2.17.1
|
||||
Current Version Code:21701
|
||||
Current Version:2.18
|
||||
Current Version Code:21800
|
||||
|
|
|
@ -99,11 +99,18 @@ Build:1.4.9,21
|
|||
prebuild=sed -i -e '79,81d' pom.xml && \
|
||||
sed -i -e '44,70d' pom.xml
|
||||
|
||||
Build:1.4.10,22
|
||||
commit=3e48eea41be4c2ba4487d8adf504f2fcc1bd0159
|
||||
subdir=brouter-routing-app
|
||||
maven=yes@..
|
||||
prebuild=sed -i -e '79,81d' pom.xml && \
|
||||
sed -i -e '44,70d' pom.xml
|
||||
|
||||
Maintainer Notes:
|
||||
The sed's remove signing stuff.
|
||||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.4.9
|
||||
Current Version Code:21
|
||||
Current Version:1.4.10
|
||||
Current Version Code:22
|
||||
|
|
|
@ -34,5 +34,5 @@ Build:1.2,12
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.2
|
||||
Current Version Code:12
|
||||
Current Version:2.1.1
|
||||
Current Version Code:19
|
||||
|
|
|
@ -353,7 +353,12 @@ Build:1.26.1,112601
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.26.3,112603
|
||||
commit=release-1.26.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version release-%v
|
||||
Update Check Mode:Tags ^release-
|
||||
Current Version:1.26.1
|
||||
Current Version Code:112601
|
||||
Current Version:1.26.3
|
||||
Current Version Code:112603
|
||||
|
|
|
@ -125,7 +125,12 @@ Build:1.6.3,10603
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.6.4,10604
|
||||
commit=scrumchatter-1.6.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version scrumchatter-%v
|
||||
Update Check Mode:Tags ^scrumchatter.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*
|
||||
Current Version:1.6.3
|
||||
Current Version Code:10603
|
||||
Current Version:1.6.4
|
||||
Current Version Code:10604
|
||||
|
|
|
@ -24,6 +24,6 @@ Build:1.3,4
|
|||
svn co -r4000 https://openintents.googlecode.com/svn/trunk/shoppinglist/ShoppingList/src/org/openintents/intents
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.3
|
||||
Current Version Code:4
|
||||
|
|
|
@ -37,6 +37,25 @@ Build:0.0.4.3,17
|
|||
gradle=yes
|
||||
scandelete=asset/
|
||||
|
||||
Build:0.0.4.4,18
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.1
|
||||
commit=0.0.4.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
scandelete=asset/
|
||||
|
||||
Build:0.0.4.5,19
|
||||
commit=0.0.4.5
|
||||
subdir=app
|
||||
gradle=yes
|
||||
scandelete=asset/
|
||||
|
||||
Build:0.0.4.6,20
|
||||
commit=0.0.4.6
|
||||
subdir=app
|
||||
gradle=yes
|
||||
scandelete=asset/
|
||||
|
||||
Maintainer Notes:
|
||||
The repository hosts asset files for the html landing page which are not
|
||||
part of the android build (asset/, landing/), so we scandelete them.
|
||||
|
@ -44,5 +63,5 @@ part of the android build (asset/, landing/), so we scandelete them.
|
|||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags .*[0-9]$
|
||||
Current Version:0.0.4.3
|
||||
Current Version Code:17
|
||||
Current Version:0.0.4.6
|
||||
Current Version Code:20
|
||||
|
|
|
@ -93,7 +93,12 @@ Build:v1.11-beta,21
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:v1.12-beta,22
|
||||
commit=v1.12-beta
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:v1.11-beta
|
||||
Current Version Code:21
|
||||
Current Version:v1.12-beta
|
||||
Current Version Code:22
|
||||
|
|
|
@ -176,7 +176,15 @@ Build:1.0.57,10571
|
|||
Build:1.0.58,10580
|
||||
commit=1.0.58
|
||||
|
||||
Build:1.0.59,10591
|
||||
commit=1.0.59
|
||||
|
||||
Build:1.0.60,10600
|
||||
commit=1.0.60
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.0.58
|
||||
Current Version Code:10580
|
||||
Current Version:1.0.60
|
||||
Current Version Code:10600
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
AntiFeatures:UpstreamNonFree
|
||||
Categories:Theming
|
||||
License:Apache-2.0
|
||||
License:GPL-3.0
|
||||
Web Site:https://lawnchair.info/
|
||||
Source Code:https://github.com/LawnchairLauncher/Lawnchair
|
||||
Issue Tracker:https://github.com/LawnchairLauncher/Lawnchair/issues
|
||||
|
@ -29,6 +29,7 @@ Build:1.1.0.1742,1742
|
|||
rm=app/src/main/java/ch/deletescape/lawnchair/weather/AwarenessWeatherAPI.kt
|
||||
prebuild=sed -i -e '/play-services-awareness/d' build.gradle && \
|
||||
sed -i -e '/AwarenessWeatherAPI/d' src/main/java/ch/deletescape/lawnchair/weather/WeatherAPI.kt && \
|
||||
sed -i -e 's/PREF_WEATHER_PROVIDER_AWARENESS = "1"/PREF_WEATHER_PROVIDER_AWARENESS = "0"/' src/main/java/ch/deletescape/lawnchair/preferences/PreferenceFlags.kt && \
|
||||
sed -i -e 's/android:defaultValue="1"/android:defaultValue="0"/' src/main/res/xml/launcher_theme_preferences.xml
|
||||
build=export TRAVIS=true && \
|
||||
export MAJOR_MINOR=1.1.0 && \
|
||||
|
|
|
@ -37,7 +37,12 @@ Build:1.3,5
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.1,6
|
||||
commit=1.3.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.3
|
||||
Current Version Code:5
|
||||
Current Version:1.3.1
|
||||
Current Version Code:6
|
||||
|
|
|
@ -65,6 +65,7 @@ Build:2.0.8,28
|
|||
gradle=yes
|
||||
|
||||
Build:2.0.9,29
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.1
|
||||
commit=v2.0.9
|
||||
subdir=ShareViaHttp/app
|
||||
gradle=yes
|
||||
|
|
|
@ -50,7 +50,18 @@ Build:4.1,578
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:5.0,642
|
||||
disable=ProGuard fails: there were 14 unresolved references to classes or interfaces
|
||||
commit=5.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:5.3.2,656
|
||||
commit=5.3.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.1
|
||||
Current Version Code:578
|
||||
Current Version:5.3.2
|
||||
Current Version Code:656
|
||||
|
|
|
@ -216,19 +216,13 @@ Build:2.0.1,49
|
|||
gradle=free
|
||||
prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle
|
||||
|
||||
Build:2.2.0,50
|
||||
commit=v2.2.0
|
||||
Build:2.2.6,54
|
||||
commit=v2.2.6
|
||||
subdir=app
|
||||
gradle=free
|
||||
prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle
|
||||
|
||||
Build:2.2.4,53
|
||||
commit=v2.2.4
|
||||
subdir=app
|
||||
gradle=free
|
||||
prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle
|
||||
prebuild=sed -i -e '/applicationIdSuffix/d; /versionNameSuffix/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.2.4
|
||||
Current Version Code:53
|
||||
Current Version:2.2.6
|
||||
Current Version Code:54
|
||||
|
|
|
@ -70,7 +70,12 @@ Build:1.5.5,46
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.5.7,48
|
||||
commit=v1.5.7
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.5.5
|
||||
Current Version Code:46
|
||||
Current Version:1.5.7
|
||||
Current Version Code:48
|
||||
|
|
|
@ -34,6 +34,6 @@ Build:1.98,44
|
|||
buildjni=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.98
|
||||
Current Version Code:44
|
||||
|
|
|
@ -26,6 +26,6 @@ Build:1.3,103
|
|||
subdir=asqare
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.3
|
||||
Current Version Code:103
|
||||
|
|
|
@ -38,7 +38,12 @@ Build:4.2.0,420
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.2.1,421
|
||||
commit=4.2.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.2.0
|
||||
Current Version Code:420
|
||||
Current Version:4.2.1
|
||||
Current Version Code:421
|
||||
|
|
|
@ -21,6 +21,6 @@ Build:1.4.4,14
|
|||
commit=15
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.4.4
|
||||
Current Version Code:14
|
||||
|
|
|
@ -191,7 +191,18 @@ Build:1.09.44,54
|
|||
sed -i -e 's/${AMPACHE_USERNAME}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_PASSWORD}/null/g' build.gradle
|
||||
|
||||
Build:1.09.45,55
|
||||
commit=v1.09.45
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
prebuild=sed -i -e 's/${LASTFM_API_KEY}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_URL}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_URL_LOCAL}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_USERNAME}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_PASSWORD}/null/g' build.gradle
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.09.44
|
||||
Current Version Code:54
|
||||
Current Version:1.09.45
|
||||
Current Version Code:55
|
||||
|
|
|
@ -28,5 +28,5 @@ Build:2.0,100
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest/Brazilian
|
||||
Current Version:2.0.2
|
||||
Current Version Code:102
|
||||
Current Version:2.0.3
|
||||
Current Version Code:103
|
||||
|
|
|
@ -33,6 +33,6 @@ Build:20110220,3
|
|||
build=java -jar $$AnySoftKeyboardTools$$/makedict/makedict.jar
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:20110220
|
||||
Current Version Code:3
|
||||
|
|
|
@ -32,6 +32,6 @@ Build:20100613,2
|
|||
build=java -jar $$AnySoftKeyboardTools$$/makedict/makedict.jar
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:20100613
|
||||
Current Version Code:2
|
||||
|
|
35
metadata/com.anysoftkeyboard.languagepack.french.txt
Normal file
35
metadata/com.anysoftkeyboard.languagepack.french.txt
Normal file
|
@ -0,0 +1,35 @@
|
|||
Provides:com.anysoftkeyboard.languagepack.french_xlarge
|
||||
Categories:Writing
|
||||
License:Apache-2.0
|
||||
Web Site:http://anysoftkeyboard.github.io/
|
||||
Source Code:https://github.com/AnySoftKeyboard/LanguagePack/tree/French
|
||||
Issue Tracker:https://github.com/anysoftkeyboard/LanguagePack/issues
|
||||
Changelog:https://github.com/AnySoftKeyboard/LanguagePack/blob/French/src/main/play/en-US/whatsnew
|
||||
Donate:http://anysoftkeyboard.github.io/
|
||||
|
||||
Auto Name:AnySoftKeyboard - French Language Pack
|
||||
Summary:AnySoftKeyboard French Language pack
|
||||
Description:
|
||||
French dictionary based on Dicollecte "classique" dictionary (v6.1, 10/07/2017)
|
||||
- https://www.dicollecte.org/home.php?prj=fr More than 250,000 inflected words
|
||||
(corresponding to more than 75.000 distinct lemas).
|
||||
|
||||
Include three keyboard layouts, AZERTY, QWERTY and BÉPO, with many symbols and
|
||||
rapid acces to apostrophe and hyphen.
|
||||
|
||||
This is an expansion language pack for AnySoftKeyboard. Install
|
||||
[[com.menny.android.anysoftkeyboard]] first, and then select the French keyboard
|
||||
from AnySoftKeyboard's Settings -> Languages -> Keyboards menu.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/AnySoftKeyboard/LanguagePack/
|
||||
|
||||
Build:1.0.67,67
|
||||
commit=adc03a2d1870d804212314f6c730f39604b39409
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Static
|
||||
Current Version:1.0.67
|
||||
Current Version Code:67
|
|
@ -34,6 +34,6 @@ Build:20111029,1
|
|||
build=java -jar $$AnySoftKeyboardTools$$/makedict/makedict.jar
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:20111029
|
||||
Current Version Code:1
|
||||
|
|
|
@ -21,8 +21,8 @@ Install [[com.menny.android.anysoftkeyboard]] first, then select the desired
|
|||
layout from AnySoftKeyboard's Settings->Keyboards menu.
|
||||
.
|
||||
|
||||
Repo Type:srclib
|
||||
Repo:AnySoftKeyboardPacks
|
||||
Repo Type:git
|
||||
Repo:https://github.com/AnySoftKeyboard/LanguagePack
|
||||
|
||||
Build:20121101,10
|
||||
commit=421e0212c
|
||||
|
|
|
@ -25,6 +25,6 @@ Build:1.0.1-201200304,2
|
|||
sed -i '/key/d' project.properties
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.0.1-201200304
|
||||
Current Version Code:2
|
||||
|
|
|
@ -31,6 +31,6 @@ Build:1.1,3
|
|||
prebuild=sed -i 's@\(android.library.reference.1=\).*@\1$$MobAdMob$$@' project.properties
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.1
|
||||
Current Version Code:3
|
||||
|
|
|
@ -51,6 +51,6 @@ Build:1.3.6,26
|
|||
target=Google Inc.:Google APIs:17
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Update Check Mode:Static
|
||||
Current Version:1.3.7
|
||||
Current Version Code:27
|
||||
|
|
|
@ -1,49 +0,0 @@
|
|||
Categories:Reading
|
||||
License:AGPL-3.0+
|
||||
Web Site:http://mupdf.com
|
||||
Source Code:http://git.ghostscript.com/?p=mupdf.git;a=summary
|
||||
Issue Tracker:http://bugs.ghostscript.com
|
||||
Changelog:http://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=HEAD
|
||||
|
||||
Name:MuPDF (experimental)
|
||||
Auto Name:MuPDF
|
||||
Summary:Lightweight document viewer
|
||||
Description:
|
||||
MuPDF supports PDF 1.7 with transparency, encryption, hyperlinks, annotations,
|
||||
searching, form editing and more. It also reads OpenXPS and CBZ (comic book)
|
||||
documents.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:http://git.ghostscript.com/mupdf-android-viewer-nui.git
|
||||
|
||||
Build:1.11-nui,111
|
||||
disable=wait for release
|
||||
commit=61f069e53bc9a3f598f6ea9ed766ad5fdd149186
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
forceversion=yes
|
||||
forcevercode=yes
|
||||
prebuild=pushd ../libmupdf && \
|
||||
make generate && \
|
||||
popd
|
||||
ndk=r11c
|
||||
|
||||
Maintainer Notes:
|
||||
The basename "bears no resemblance to the app version", however 1.4
|
||||
used 40 and 1.5 used 50. This would make 1.6 start with 60 -- or
|
||||
even a 16xx scheme.
|
||||
|
||||
Documents:
|
||||
http://www.mupdf.com/docs/how-to-build-mupdf-for-android
|
||||
http://mupdf.com/downloads/
|
||||
http://twiki.ghostscript.com/do/view/MuPDF/AndroidReleases
|
||||
http://git.ghostscript.com/?p=mupdf.git;a=blob;f=platform/android/jni/Application.mk;h=60909b6e9989b79231a6f3a7a04f371039185dbf;hb=HEAD
|
||||
.
|
||||
|
||||
Archive Policy:0 versions
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.11
|
||||
Current Version Code:111
|
|
@ -1,3 +1,4 @@
|
|||
AntiFeatures:KnownVuln
|
||||
Categories:Reading
|
||||
License:AGPL-3.0+
|
||||
Web Site:https://mupdf.com
|
||||
|
@ -8,6 +9,15 @@ Changelog:https://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=HEA
|
|||
Auto Name:MuPDF mini
|
||||
Summary:Extra simple document viewer
|
||||
Description:
|
||||
Deprecated in favor of [[com.artifex.mupdf.viewer.app]].
|
||||
|
||||
1.11 has multiple vulnerabilities:
|
||||
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-15587
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14687
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14686
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14685
|
||||
|
||||
The mini version of [[com.artifex.mupdfdemo]] is designed to be an extra simple
|
||||
document viewer with no frills.
|
||||
|
||||
|
@ -39,6 +49,8 @@ Build:1.11,112
|
|||
ndk=r14b
|
||||
|
||||
Maintainer Notes:
|
||||
There's 1.12.0 tag in Git, but that's a different app with a different app ID.
|
||||
|
||||
The version code "bears no resemblance to the version name", however it
|
||||
follows this pattern:
|
||||
* MINOR + "1" for armeabi-v7a
|
||||
|
@ -51,6 +63,7 @@ Documents:
|
|||
* https://twiki.ghostscript.com/do/view/MuPDF/AndroidReleases
|
||||
.
|
||||
|
||||
Archive Policy:0 versions
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.11
|
||||
|
|
46
metadata/com.artifex.mupdf.viewer.app.txt
Normal file
46
metadata/com.artifex.mupdf.viewer.app.txt
Normal file
|
@ -0,0 +1,46 @@
|
|||
Categories:Reading
|
||||
License:AGPL-3.0+
|
||||
Web Site:https://mupdf.com
|
||||
Source Code:https://git.ghostscript.com/?p=mupdf-android-viewer.git;a=summary
|
||||
Issue Tracker:https://bugs.ghostscript.com
|
||||
Changelog:https://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=HEAD
|
||||
|
||||
Auto Name:MuPDF viewer
|
||||
Summary:Lightweight document viewer
|
||||
Description:
|
||||
MuPDF supports PDF 1.7 with transparency, encryption, hyperlinks, annotations,
|
||||
searching, form editing and more. It also reads OpenXPS and CBZ (comic book)
|
||||
documents.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:git://git.ghostscript.com/mupdf-android-viewer.git
|
||||
|
||||
Build:1.12.0,20
|
||||
commit=1.12.0
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/maven.ghostscript.com/d' ../build.gradle && \
|
||||
sed -i -e 's/enable true/enable false/' build.gradle && \
|
||||
sed -i -e "s/'-j4'/'-j`nproc`'/" ../jni/build.gradle && \
|
||||
sed -i -e "/Uncomment/a\ ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86'" ../jni/build.gradle && \
|
||||
make -C ../jni/libmupdf generate
|
||||
scandelete=jni/libmupdf/thirdparty,jni/libmupdf/build/release/scripts
|
||||
ndk=r16b
|
||||
|
||||
Maintainer Notes:
|
||||
Upstream builds separate APKs for all target architectures supported by NDK
|
||||
(7 as of r16). We build universal APK with armeabi-v7a, arm64-v8a and x86
|
||||
support only.
|
||||
|
||||
Documents:
|
||||
* https://www.mupdf.com/docs/how-to-build-mupdf-for-android
|
||||
* https://mupdf.com/downloads/
|
||||
* https://twiki.ghostscript.com/do/view/MuPDF/AndroidReleases
|
||||
.
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.12
|
||||
Current Version Code:20
|
|
@ -1,3 +1,4 @@
|
|||
AntiFeatures:KnownVuln
|
||||
Categories:Reading
|
||||
License:AGPL-3.0+
|
||||
Web Site:https://mupdf.com
|
||||
|
@ -8,6 +9,15 @@ Changelog:https://git.ghostscript.com/?p=mupdf.git;a=blob_plain;f=CHANGES;hb=HEA
|
|||
Auto Name:MuPDF
|
||||
Summary:Lightweight document viewer
|
||||
Description:
|
||||
Deprecated in favor of [[com.artifex.mupdf.viewer.app]].
|
||||
|
||||
The last version has multiple vulnerabilities:
|
||||
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-15587
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14687
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14686
|
||||
* https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-14685
|
||||
|
||||
MuPDF supports PDF 1.7 with transparency, encryption, hyperlinks, annotations,
|
||||
searching, form editing and more. It also reads OpenXPS and CBZ (comic book)
|
||||
documents.
|
||||
|
@ -362,6 +372,7 @@ Split Android and iOS viewers into separate projects:
|
|||
* mupdf-viewer-android-mini.git has a new minimalist Android viewer.
|
||||
.
|
||||
|
||||
Archive Policy:0 versions
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.11
|
||||
|
|
|
@ -19,7 +19,7 @@ data are not related to Delta Chat, you won't even add new dependencies here.
|
|||
|
||||
Some features at a glance:
|
||||
|
||||
* Secure with automatic end-to-end-encryption, supporting the new [https://autocrypt.readthedocs.io/en/latest/ Autocrypt] standard
|
||||
* Secure with automatic end-to-end-encryption, supporting the new [https://autocrypt.org Autocrypt] standard
|
||||
* Fast by the use of Push-IMAP
|
||||
* Largest userbase -- receivers not using Delta Chat can be reached as well
|
||||
* Compatible -- not only to itself
|
||||
|
@ -263,7 +263,25 @@ Build:0.13.0,511
|
|||
gradle nativeLibsToJar
|
||||
ndk=r15c
|
||||
|
||||
Build:0.14.0,512
|
||||
commit=v0.14.0
|
||||
subdir=MessengerProj
|
||||
submodules=yes
|
||||
gradle=fat
|
||||
build=$$NDK$$/ndk-build -j `nproc` && \
|
||||
gradle nativeLibsToJar
|
||||
ndk=r14b
|
||||
|
||||
Build:0.15.0,513
|
||||
commit=v0.15.0
|
||||
subdir=MessengerProj
|
||||
submodules=yes
|
||||
gradle=fat
|
||||
build=$$NDK$$/ndk-build -j `nproc` && \
|
||||
gradle nativeLibsToJar
|
||||
ndk=r14b
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.13.0
|
||||
Current Version Code:511
|
||||
Current Version:0.15.0
|
||||
Current Version Code:513
|
||||
|
|
|
@ -110,7 +110,16 @@ Build:0.5.8(alpha),30
|
|||
subdir=app
|
||||
gradle=FlavorDefault
|
||||
|
||||
Build:0.5.10,33
|
||||
commit=v0.5.10
|
||||
subdir=app
|
||||
gradle=FlavorDefault
|
||||
|
||||
Maintainer Notes:
|
||||
checkupdates currently broken
|
||||
.
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.5.8(alpha)
|
||||
Current Version Code:30
|
||||
Current Version:0.5.10
|
||||
Current Version Code:33
|
||||
|
|
|
@ -3,6 +3,7 @@ License:GPL-3.0
|
|||
Web Site:
|
||||
Source Code:https://github.com/BijoySingh/Material-Notes-Android-App
|
||||
Issue Tracker:https://github.com/BijoySingh/Material-Notes-Android-App/issues
|
||||
Changelog:https://github.com/BijoySingh/Material-Notes-Android-App/releases
|
||||
|
||||
Auto Name:Material Notes
|
||||
Summary:Quick and beautiful note-taking
|
||||
|
@ -55,7 +56,22 @@ Build:4.1.4,43
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.3.1,48
|
||||
commit=v4.3.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.4.1,57
|
||||
commit=v4.4.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.5.4,62
|
||||
commit=v4.5.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.1.4
|
||||
Current Version Code:43
|
||||
Current Version:4.5.4
|
||||
Current Version Code:62
|
||||
|
|
|
@ -41,6 +41,7 @@ Build:1.1.2,12
|
|||
gradle=yes
|
||||
|
||||
Build:1.2,20
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.0
|
||||
commit=ltc-1.2
|
||||
subdir=litecoin
|
||||
gradle=yes
|
||||
|
|
|
@ -23,6 +23,6 @@ Build:0.3.3,17
|
|||
commit=24
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:0.3.3
|
||||
Current Version Code:17
|
||||
|
|
|
@ -25,6 +25,6 @@ Build:Copter-GCS,9
|
|||
subdir=copter-gcs
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:Copter-GCS
|
||||
Current Version Code:9
|
||||
|
|
|
@ -158,6 +158,7 @@ Build:5.3.1,531
|
|||
gradle=yes
|
||||
|
||||
Build:5.4.0,540
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.1
|
||||
commit=v5.4.0
|
||||
subdir=PersianCalendar
|
||||
gradle=yes
|
||||
|
|
|
@ -49,7 +49,17 @@ Build:3.17,39
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.18,40
|
||||
commit=v3.18
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.19,41
|
||||
commit=v3.19
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.17
|
||||
Current Version Code:39
|
||||
Current Version:3.19
|
||||
Current Version Code:41
|
||||
|
|
|
@ -32,6 +32,6 @@ GPLv3 as seen on the GoggleCode project page.
|
|||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:2.0.3
|
||||
Current Version Code:24
|
||||
|
|
|
@ -35,7 +35,10 @@ Build:5.0,28
|
|||
Build:5.1,31
|
||||
commit=26774a278f36ffc3c8860372ebb9a8ed327ed688
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Build:5.5,54
|
||||
commit=v5.5
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:5.5
|
||||
Current Version Code:54
|
||||
|
|
|
@ -22,8 +22,8 @@ Description:
|
|||
This build doesn't include SILK (Skype) support.
|
||||
.
|
||||
|
||||
Repo Type:srclib
|
||||
Repo:CSipSimple
|
||||
Repo Type:git-svn
|
||||
Repo:https://csipsimple.googlecode.com/svn/trunk
|
||||
|
||||
Build:1.02.01-2417,2417
|
||||
commit=2418
|
||||
|
@ -77,6 +77,6 @@ question yet.
|
|||
|
||||
Archive Policy:0 versions
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.02.03
|
||||
Current Version Code:2459
|
||||
|
|
23
metadata/com.davidshewitt.admincontrol.yml
Normal file
23
metadata/com.davidshewitt.admincontrol.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
Categories:
|
||||
- System
|
||||
License: GPL-3.0+
|
||||
SourceCode: https://github.com/linux-colonel/AdminControl
|
||||
IssueTracker: https://github.com/linux-colonel/AdminControl/issues
|
||||
|
||||
Summary: Additional security settings
|
||||
Description: Allows you to disable the fingerprint reader on the Lock Screen without
|
||||
deleting all of your fingerprints.
|
||||
|
||||
RepoType: git
|
||||
Repo: https://github.com/linux-colonel/AdminControl
|
||||
|
||||
Builds:
|
||||
- versionName: 1.0.2
|
||||
versionCode: 3
|
||||
commit: v1.0.2
|
||||
subdir: app
|
||||
gradle:
|
||||
- yes
|
||||
|
||||
AutoUpdateMode: Version v%v
|
||||
UpdateCheckMode: Tags
|
32
metadata/com.dkanada.chip.txt
Normal file
32
metadata/com.dkanada.chip.txt
Normal file
|
@ -0,0 +1,32 @@
|
|||
Categories:Games
|
||||
License:GPL-3.0
|
||||
Web Site:https://github.com/dkanada/Chip8/blob/HEAD/README.md
|
||||
Source Code:https://github.com/dkanada/Chip8
|
||||
Issue Tracker:https://github.com/dkanada/Chip8/issues
|
||||
Changelog:https://github.com/dkanada/Chip8/blob/HEAD/CHANGELOG.md
|
||||
|
||||
Auto Name:Chip8
|
||||
Summary:Chip8 emulator
|
||||
Description:
|
||||
This is a basic Chip8 emulator that supports all of the Chip8 instructions, key
|
||||
input, and video output. If you are having issues with a specific game, try
|
||||
enabling one of the two common emulation quirks in the settings.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/dkanada/Chip8
|
||||
|
||||
Build:0.7,1
|
||||
commit=v0.7
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.7.1,2
|
||||
commit=v0.7.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.7.1
|
||||
Current Version Code:2
|
|
@ -51,7 +51,12 @@ Build:1.3.3,18
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.4,19
|
||||
commit=v1.3.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.3.3
|
||||
Current Version Code:18
|
||||
Current Version:1.3.4
|
||||
Current Version Code:19
|
||||
|
|
|
@ -17,6 +17,6 @@ Build:1.4.3,8
|
|||
commit=11
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.4.3
|
||||
Current Version Code:8
|
||||
|
|
|
@ -132,5 +132,5 @@ Build:2.9.2,60
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.9.2
|
||||
Current Version Code:60
|
||||
Current Version:3.0.6
|
||||
Current Version Code:67
|
||||
|
|
|
@ -4,18 +4,39 @@ Web Site:https://duckduckgo.com
|
|||
Source Code:https://github.com/duckduckgo/Android
|
||||
Issue Tracker:https://github.com/duckduckgo/Android/issues
|
||||
|
||||
Name:DuckDuckGo Privacy Browser
|
||||
Auto Name:DuckDuckGo
|
||||
Summary:Search the web
|
||||
Summary:Privacy, simplified
|
||||
Description:
|
||||
Search the web via duckduckgo.com, a search engine that's focussed on privacy.
|
||||
At DuckDuckGo, we believe the Internet shouldn't feel so creepy, and getting the
|
||||
privacy you deserve online should be as simple as closing the blinds.
|
||||
|
||||
The app also works like a news reader, showing popular stories from a
|
||||
customizable list of websites, until you enter a query.
|
||||
Our app provides the privacy essentials you need to seamlessly take control of
|
||||
your personal information as you search and browse the web, no matter where the
|
||||
Internet takes you:
|
||||
|
||||
Works with [[org.torproject.android]] (though not on Android 4.4).
|
||||
* Escape Advertising Tracker Networks — Our Privacy Protection will block all the hidden trackers we can find, exposing the major advertising networks tracking you over time, so that you can track who's trying to track you.
|
||||
* Increase Encryption Protection — We force sites to use an encrypted connection where available, protecting your data from prying eyes, like ISPs.
|
||||
* Search Privately — You share your most personal information with your search engine, like your financial, medical, and political questions. What you search for is your own business, which is why DuckDuckGo search doesn't track you. Ever.
|
||||
* Decode Privacy Policies — We’ve partnered with Terms of Service Didn't Read to include their scores and labels of website terms of service and privacy policies, where available.
|
||||
|
||||
Please note that using this app as a browser will expose your visited sites to
|
||||
DuckDuckGo.
|
||||
As you search and browse, the DuckDuckGo Privacy Browser shows you a Privacy
|
||||
Grade rating when you visit a website (A-F). This rating lets you see how
|
||||
protected you are at a glance, dig into the details to see who we caught trying
|
||||
to track you, and learn how we enhanced the underlying site's privacy measures.
|
||||
The Privacy Grade is scored automatically based on the prevalence of hidden
|
||||
tracker networks, encryption availability, and website privacy practices.
|
||||
|
||||
Our app provides standard browsing functionality including tabs, bookmarks, and
|
||||
autocomplete. In addition to strong Privacy Protection as described above, we
|
||||
also packed in some extra privacy features into the browser itself:
|
||||
|
||||
* Fire Button — Clear all your tabs and data with one tap.
|
||||
* Application Lock — Secure the app with Touch ID or Face ID.
|
||||
|
||||
Too many people believe you simply can’t expect privacy on the Internet. We're
|
||||
fighting to change that, and have made it our mission to set a new standard of
|
||||
trust online. Install DuckDuckGo and take back your privacy!
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
@ -159,11 +180,17 @@ Build:4.1.1,40101
|
|||
output=app/build/outputs/apk/release/duckduckgo-$$VERSION$$-release-unsigned.apk
|
||||
ndk=r15c
|
||||
|
||||
Build:4.3.0,40300
|
||||
commit=4.3.0
|
||||
gradle=yes
|
||||
output=app/build/outputs/apk/release/duckduckgo-$$VERSION$$-release-unsigned.apk
|
||||
ndk=r16b
|
||||
|
||||
Maintainer Notes:
|
||||
Cannot use AUM/UCM because version code and version name are dynamic.
|
||||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:4.1.1
|
||||
Current Version Code:40101
|
||||
Current Version:4.3.0
|
||||
Current Version Code:40300
|
||||
|
|
|
@ -21,6 +21,6 @@ Build:2.5,11
|
|||
commit=44
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:2.5
|
||||
Current Version Code:11
|
||||
|
|
|
@ -23,6 +23,6 @@ Build:4.1,41001
|
|||
commit=1416
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:4.1
|
||||
Current Version Code:41001
|
||||
|
|
|
@ -23,5 +23,5 @@ Build:1.3,13
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.3
|
||||
Current Version Code:13
|
||||
Current Version:1.4
|
||||
Current Version Code:14
|
||||
|
|
|
@ -139,6 +139,25 @@ Build:0.19.6,24
|
|||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.20.0,25
|
||||
disable=old and failing
|
||||
commit=v0.20.0
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.20.1,26
|
||||
commit=v0.20.1
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.20.2,27
|
||||
commit=v0.20.2
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Maintainer Notes:
|
||||
Summary and Description are maintained by upstream using fastlane in
|
||||
the source repo:
|
||||
|
@ -147,5 +166,5 @@ https://f-droid.org/docs/All_About_Descriptions_Graphics_and_Screenshots
|
|||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.19.6
|
||||
Current Version Code:24
|
||||
Current Version:0.20.2
|
||||
Current Version Code:27
|
||||
|
|
|
@ -24,6 +24,6 @@ Build:1.0.16,16
|
|||
sed -i '/2/d' project.properties
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Update Check Mode:Static
|
||||
Current Version:1.0.16
|
||||
Current Version Code:16
|
||||
|
|
|
@ -313,5 +313,5 @@ See here: https://github.com/farmerbb/Taskbar/issues/4
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:3.8
|
||||
Current Version Code:174
|
||||
Current Version:3.9
|
||||
Current Version Code:182
|
||||
|
|
|
@ -111,7 +111,21 @@ Build:4.6.1,461
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.6.2,462
|
||||
commit=4.6.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.6.3,463
|
||||
commit=4.6.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Maintainer Notes:
|
||||
Bump for bugfix build.
|
||||
.
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.6.1
|
||||
Current Version Code:461
|
||||
Current Version:4.6.3
|
||||
Current Version Code:463
|
||||
|
|
|
@ -84,7 +84,37 @@ Build:0.6.0,16
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.6.1,17
|
||||
commit=v0.6.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.6.2,18
|
||||
commit=v0.6.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.7.0,19
|
||||
commit=v0.7.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.7.1,20
|
||||
commit=v0.7.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.7.2,21
|
||||
commit=v0.7.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.7.3,22
|
||||
commit=v0.7.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.6.0
|
||||
Current Version Code:16
|
||||
Current Version:0.7.3
|
||||
Current Version Code:22
|
||||
|
|
22
metadata/com.fr3ts0n.androbd.plugin.mqtt.txt
Normal file
22
metadata/com.fr3ts0n.androbd.plugin.mqtt.txt
Normal file
|
@ -0,0 +1,22 @@
|
|||
Categories:Connectivity
|
||||
License:GPL-3.0+
|
||||
Web Site:https://github.com/fr3ts0n/AndrOBD-Plugin/wiki
|
||||
Source Code:https://github.com/fr3ts0n/AndrOBD-Plugin
|
||||
Issue Tracker:https://github.com/fr3ts0n/AndrOBD-Plugin/issues
|
||||
Changelog:https://github.com/fr3ts0n/AndrOBD-Plugin/releases
|
||||
Bitcoin:19UApzsc5eDJ5VNDNYCA1bpszPnkcpWeFP
|
||||
|
||||
Auto Name:MqttPublisher Plugin
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/fr3ts0n/AndrOBD-Plugin
|
||||
|
||||
Build:V1.0.0,10000
|
||||
commit=V1.0.0
|
||||
subdir=MqttPublisher
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:V1.0.0
|
||||
Current Version Code:10000
|
|
@ -4,7 +4,7 @@ Web Site:https://github.com/fr3ts0n/AndrOBD/wiki
|
|||
Source Code:https://github.com/fr3ts0n/AndrOBD
|
||||
Issue Tracker:https://github.com/fr3ts0n/AndrOBD/issues
|
||||
Changelog:https://github.com/fr3ts0n/AndrOBD/releases
|
||||
Bitcoin:12xyTZnMMDaKMcHaeseXPd8e4NNbMFF8rt
|
||||
Bitcoin:19UApzsc5eDJ5VNDNYCA1bpszPnkcpWeFP
|
||||
|
||||
Auto Name:AndrOBD
|
||||
Summary:Connect to your car's OBD system
|
||||
|
@ -588,11 +588,19 @@ Build:V1.5.5,10505
|
|||
cp -fR $$UsbSerial4Android$$/usbSerialForAndroid/src/main/java/com src/ && \
|
||||
cp $$AChartEngineFr3ts0n$$/target/achartengine-1.2.0.jar libs/
|
||||
|
||||
Maintainer Notes:
|
||||
Very unstable and complex build, do not enable auto updates.
|
||||
.
|
||||
Build:V2.0.1,20001
|
||||
commit=V2.0.1
|
||||
subdir=androbd
|
||||
gradle=yes
|
||||
srclibs=AChartEngineFr3ts0n@e2594a4a257cfeacba3595f1b16218a5541810c3,UsbSerial4Android@a213f06ad0b19fd6f1a6b4f8b2f74f986a00ea68
|
||||
rm=androbd/libs/*.jar
|
||||
build=pushd $$AChartEngineFr3ts0n$$ && \
|
||||
$$MVN3$$ package && \
|
||||
popd && \
|
||||
cp -fR $$UsbSerial4Android$$/usbSerialForAndroid/src/main/java/com src/main/java/ && \
|
||||
cp $$AChartEngineFr3ts0n$$/target/achartengine-1.2.0.jar libs/
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:V1.5.5
|
||||
Current Version Code:10505
|
||||
Current Version:V2.0.1
|
||||
Current Version Code:20001
|
||||
|
|
|
@ -22,6 +22,6 @@ Beware the stupid sed in prebuild when updating.
|
|||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Update Check Mode:Static
|
||||
Current Version:1.5
|
||||
Current Version Code:10
|
||||
|
|
|
@ -19,6 +19,6 @@ Build:6.0,60
|
|||
target=android-14
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Update Check Mode:Static
|
||||
Current Version:6.0
|
||||
Current Version Code:60
|
||||
|
|
|
@ -36,7 +36,13 @@ Build:2.0.0,200000000
|
|||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:2.1.2,200102000
|
||||
commit=ReLaunchX_2.1.2
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version ReLaunchX_%v
|
||||
Update Check Mode:Tags ^ReLaunchX_
|
||||
Current Version:2.0.0
|
||||
Current Version Code:200000000
|
||||
Current Version:2.1.2
|
||||
Current Version Code:200102000
|
||||
|
|
|
@ -81,7 +81,42 @@ Build:1.2.5.2,57
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.3,58
|
||||
commit=1.2.5.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.4,59
|
||||
commit=1.2.5.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.5,60
|
||||
commit=1.2.5.5
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.6,61
|
||||
commit=1.2.5.6
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.7,62
|
||||
commit=1.2.5.7
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.8,63
|
||||
commit=1.2.5.8
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.5.9,64
|
||||
commit=1.2.5.9
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags ^[0-9\.]*$
|
||||
Current Version:1.2.5.2
|
||||
Current Version Code:57
|
||||
Current Version:1.2.5.9
|
||||
Current Version Code:64
|
||||
|
|
|
@ -90,7 +90,13 @@ Build:4.2.1,55
|
|||
gradle=foss
|
||||
prebuild=sed -i -e '/fabric/d' -e '/playstoreCompile(.*) {/,/}/d' -e s/ClientId/\'\"f0f32f2ee4a709ba3640\"\'/ -e s/ClientSecret/\'\"f94cffda88486696c2762ad986bc0b8b830c9cff\"\'/ build.gradle
|
||||
|
||||
Build:4.3.1,58
|
||||
commit=v4.3.1
|
||||
subdir=app
|
||||
gradle=foss
|
||||
prebuild=sed -i -e '/fabric/d' -e '/playstoreImplementation(.*) {/,/}/d' -e s/ClientId/\'\"f0f32f2ee4a709ba3640\"\'/ -e s/ClientSecret/\'\"f94cffda88486696c2762ad986bc0b8b830c9cff\"\'/ build.gradle
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.2.1
|
||||
Current Version Code:55
|
||||
Current Version:4.3.1
|
||||
Current Version Code:58
|
||||
|
|
|
@ -110,5 +110,5 @@ Build:1.32,62
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.32.1b3
|
||||
Current Version Code:65
|
||||
Current Version:1.33b2
|
||||
Current Version Code:72
|
||||
|
|
|
@ -92,5 +92,5 @@ be used.
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.14.5b3
|
||||
Current Version Code:31
|
||||
Current Version:1.14.5
|
||||
Current Version Code:34
|
||||
|
|
|
@ -307,5 +307,5 @@ The scanignore is for the dex class loading which is used for loading plugins.
|
|||
Archive Policy:4 versions
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.55b7
|
||||
Current Version Code:339
|
||||
Current Version:1.56b3
|
||||
Current Version Code:348
|
||||
|
|
|
@ -216,6 +216,7 @@ Build:3.0.54,220
|
|||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.0.55,221
|
||||
disable=old and failing
|
||||
commit=audiorecorder-3.0.55
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
@ -257,7 +258,61 @@ Build:3.1.7,238
|
|||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.8,239
|
||||
commit=audiorecorder-3.1.8
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.12,243
|
||||
commit=audiorecorder-3.1.12
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.16,247
|
||||
commit=audiorecorder-3.1.16
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.17,248
|
||||
commit=audiorecorder-3.1.17
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.18,249
|
||||
commit=audiorecorder-3.1.18
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.19,250
|
||||
commit=audiorecorder-3.1.19
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.20,251
|
||||
commit=audiorecorder-3.1.20
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.22,253
|
||||
commit=audiorecorder-3.1.22
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.1.25,256
|
||||
commit=audiorecorder-3.1.25
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version audiorecorder-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.1.7
|
||||
Current Version Code:238
|
||||
Current Version:3.1.25
|
||||
Current Version Code:256
|
||||
|
|
|
@ -29,7 +29,85 @@ Build:0.0.78,77
|
|||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.0.0,97
|
||||
commit=bookreader-1.0.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.0.8,105
|
||||
commit=bookreader-1.0.8
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.0.14,111
|
||||
commit=bookreader-1.0.14
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.0.16,113
|
||||
commit=bookreader-1.0.16
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.0.27,126
|
||||
commit=bookreader-1.0.27
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.13,141
|
||||
commit=bookreader-1.1.13
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.16,144
|
||||
commit=bookreader-1.1.16
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.24,152
|
||||
commit=bookreader-1.1.24
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.27,155
|
||||
commit=bookreader-1.1.27
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.37,165
|
||||
commit=bookreader-1.1.37
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.38,166
|
||||
commit=bookreader-1.1.38
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.39,167
|
||||
commit=bookreader-1.1.39
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.1.46,174
|
||||
commit=bookreader-1.1.46
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version bookreader-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.0.78
|
||||
Current Version Code:77
|
||||
Current Version:1.1.46
|
||||
Current Version Code:174
|
||||
|
|
|
@ -166,6 +166,7 @@ Build:1.4.10,113
|
|||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.4.11,114
|
||||
disable=old and failing
|
||||
commit=callrecorder-1.4.11
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
@ -219,7 +220,49 @@ Build:1.5.20,141
|
|||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.22,143
|
||||
commit=callrecorder-1.5.22
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.24,145
|
||||
commit=callrecorder-1.5.24
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.25,146
|
||||
commit=callrecorder-1.5.25
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.29,150
|
||||
commit=callrecorder-1.5.29
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.32,153
|
||||
commit=callrecorder-1.5.32
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.5.33,154
|
||||
commit=callrecorder-1.5.33
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:1.6.1,156
|
||||
commit=callrecorder-1.6.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version callrecorder-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.5.20
|
||||
Current Version Code:141
|
||||
Current Version:1.6.1
|
||||
Current Version Code:156
|
||||
|
|
|
@ -231,7 +231,22 @@ Build:3.1.20,341
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.1.21,342
|
||||
commit=hourlyreminder-3.1.21
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.1.22,343
|
||||
commit=hourlyreminder-3.1.22
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.1.23,344
|
||||
commit=hourlyreminder-3.1.23
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version hourlyreminder-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.1.20
|
||||
Current Version Code:341
|
||||
Current Version:3.1.23
|
||||
Current Version Code:344
|
||||
|
|
52
metadata/com.github.axet.maps.txt
Normal file
52
metadata/com.github.axet.maps.txt
Normal file
|
@ -0,0 +1,52 @@
|
|||
Categories:Navigation
|
||||
License:Apache-2.0
|
||||
Web Site:
|
||||
Source Code:https://gitlab.com/axet/omim/tree/HEAD
|
||||
Issue Tracker:https://gitlab.com/axet/omim/issues
|
||||
|
||||
Summary:Offline OpenStreetMap maps
|
||||
Description:
|
||||
OpenStreetMap offline maps with track recording and custom bookmarks .kml path.
|
||||
Based on MAPS.ME project.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://gitlab.com/axet/omim.git
|
||||
|
||||
Build:8.0.2-1-Google,1027
|
||||
commit=omim-8.0.2-1
|
||||
timeout=10800
|
||||
subdir=android
|
||||
submodules=yes
|
||||
gradle=google
|
||||
rm=3party/Alohalytics/examples,iphone,tools/shaders_compiler
|
||||
scanignore=data/*.bin
|
||||
scandelete=3party
|
||||
ndk=r16b
|
||||
|
||||
Build:8.1.0-2-Google,1030
|
||||
commit=omim-8.1.0-2
|
||||
timeout=10800
|
||||
subdir=android
|
||||
submodules=yes
|
||||
gradle=google
|
||||
rm=3party/Alohalytics/examples,iphone,tools/shaders_compiler
|
||||
scanignore=data/*.bin
|
||||
scandelete=3party
|
||||
ndk=r16b
|
||||
|
||||
Build:8.1.0-4-Google,1032
|
||||
commit=omim-8.1.0-4
|
||||
timeout=10800
|
||||
subdir=android
|
||||
submodules=yes
|
||||
gradle=google
|
||||
rm=3party/Alohalytics/examples,iphone,tools/shaders_compiler
|
||||
scanignore=data/*.bin
|
||||
scandelete=3party
|
||||
ndk=r16b
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:8.1.0-4-Google
|
||||
Current Version Code:1032
|
|
@ -157,7 +157,17 @@ Build:1.2.98,112
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.99,113
|
||||
commit=mover-1.2.99
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.2.100,114
|
||||
commit=mover-1.2.100
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version mover-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2.98
|
||||
Current Version Code:112
|
||||
Current Version:1.2.100
|
||||
Current Version Code:114
|
||||
|
|
|
@ -35,7 +35,17 @@ Build:1.0.13,15
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.0.15,17
|
||||
commit=tonegenerator-1.0.15
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.0.17,18
|
||||
commit=tonegenerator-1.0.17
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version tonegenerator-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.0.13
|
||||
Current Version Code:15
|
||||
Current Version:1.0.17
|
||||
Current Version Code:18
|
||||
|
|
|
@ -313,7 +313,67 @@ Build:3.4.96,584
|
|||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.98,586
|
||||
commit=torrentclient-3.4.98
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.105,593
|
||||
commit=torrentclient-3.4.105
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.106,594
|
||||
commit=torrentclient-3.4.106
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.107,595
|
||||
commit=torrentclient-3.4.107
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.108,596
|
||||
commit=torrentclient-3.4.108
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.111,599
|
||||
commit=torrentclient-3.4.111
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.116,604
|
||||
commit=torrentclient-3.4.116
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.117,605
|
||||
commit=torrentclient-3.4.117
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.120,608
|
||||
commit=torrentclient-3.4.120
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Build:3.4.122,610
|
||||
commit=torrentclient-3.4.122
|
||||
subdir=app
|
||||
gradle=yes
|
||||
prebuild=sed -i -e '/variant.outputs.each/,/}$/d; /enable true/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version torrentclient-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.4.96
|
||||
Current Version Code:584
|
||||
Current Version:3.4.122
|
||||
Current Version Code:610
|
||||
|
|
|
@ -85,7 +85,17 @@ Build:2.3,14
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:2.4,15
|
||||
commit=v2.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:2.5,16
|
||||
commit=v2.5
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.3
|
||||
Current Version Code:14
|
||||
Current Version:2.5
|
||||
Current Version Code:16
|
||||
|
|
|
@ -133,11 +133,21 @@ Build:1.0.8,28
|
|||
subdir=app
|
||||
gradle=FlavorDefault
|
||||
|
||||
Build:1.1.0,29
|
||||
commit=v1.1.0
|
||||
subdir=app
|
||||
gradle=FlavorDefault
|
||||
|
||||
Build:1.1.1,30
|
||||
commit=v1.1.1
|
||||
subdir=app
|
||||
gradle=FlavorDefault
|
||||
|
||||
Maintainer Notes:
|
||||
Description and summary in app git repository
|
||||
.
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.0.8
|
||||
Current Version Code:28
|
||||
Current Version:1.1.1
|
||||
Current Version Code:30
|
||||
|
|
|
@ -1,20 +1,26 @@
|
|||
Categories:System
|
||||
License:GPL-3.0
|
||||
Web Site:https://github.com/mueller-ma/View-android-version/blob/HEAD/README.md
|
||||
Source Code:https://github.com/mueller-ma/View-android-version
|
||||
Issue Tracker:https://github.com/mueller-ma/View-android-version/issues
|
||||
Web Site:https://gitlab.com/mueller-ma/View-android-version/blob/HEAD/README.md
|
||||
Source Code:https://gitlab.com/mueller-ma/View-android-version
|
||||
Issue Tracker:https://gitlab.com/mueller-ma/View-android-version/issues
|
||||
Changelog:https://gitlab.com/mueller-ma/View-android-version/commits/HEAD
|
||||
|
||||
Auto Name:Android version
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/mueller-ma/View-android-version.git
|
||||
Repo:https://gitlab.com/mueller-ma/View-android-version.git
|
||||
|
||||
Build:1.2,2
|
||||
commit=v1.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3,3
|
||||
commit=v1.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2
|
||||
Current Version Code:2
|
||||
Current Version:1.3
|
||||
Current Version Code:3
|
||||
|
|
43
metadata/com.github.onetimepass.txt
Normal file
43
metadata/com.github.onetimepass.txt
Normal file
|
@ -0,0 +1,43 @@
|
|||
Categories:Security
|
||||
License:LGPL-2.1
|
||||
Web Site:https://github.com/OneTimePass/OneTimePass
|
||||
Source Code:https://github.com/OneTimePass/OneTimePass
|
||||
Issue Tracker:https://github.com/OneTimePass/OneTimePass/issues
|
||||
|
||||
Auto Name:OneTimePass
|
||||
Summary:Two-factor (TOTP) authentication
|
||||
Description:
|
||||
OneTimePass is a clean and robust two-factor TOTP application and supports the
|
||||
following features:
|
||||
|
||||
* Supports opening otpauth:// URLs
|
||||
* Scan QR codes to create new accounts easily
|
||||
* View QR codes to export existing accounts
|
||||
* Searchable, sortable listing of accounts
|
||||
* Manual entry account creation
|
||||
* Import/Export for backup and restore purposes
|
||||
* Relies upon AES-256 for on-device encryption
|
||||
* Supports Android 5.0 (and up)
|
||||
|
||||
OneTimePass is the reincarnation of the now-retired OneTimePad app. If you used
|
||||
OneTimePad, you should really migrate to this [or any other TOTP based]
|
||||
application.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/OneTimePass/OneTimePass
|
||||
|
||||
Build:1.2.2,1002002
|
||||
commit=v1.2.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Maintainer Notes:
|
||||
This repo is tag-based for it's releases on the "production" branch.
|
||||
Everything else should be pretty straight forward and simple.
|
||||
.
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2.2
|
||||
Current Version Code:1002002
|
|
@ -208,8 +208,24 @@ Build:2.3.29,229
|
|||
sed -i -e '/fabric/d' -e '/crashlytics/,+2d' -e '/play-services/d' -e '/google-services/d' build.gradle && \
|
||||
sed -i -e '/dl.bintray.com\/lukaville/d' -e 's/com.nbsp:library:1.6/com.github.nbsp-team:MaterialFilePicker:5e0a4834/g' build.gradle
|
||||
|
||||
Build:2.4.02,232
|
||||
commit=232
|
||||
subdir=app
|
||||
gradle=purefloss
|
||||
prebuild=touch translate.properties && \
|
||||
sed -i -e '/fabric/d' -e '/crashlytics/,+2d' -e '/play-services/d' -e '/google-services/d' build.gradle && \
|
||||
sed -i -e '/dl.bintray.com\/lukaville/d' -e 's/com.nbsp:library:1.6/com.github.nbsp-team:MaterialFilePicker:5e0a4834/g' build.gradle
|
||||
|
||||
Build:2.4.04,234
|
||||
commit=234
|
||||
subdir=app
|
||||
gradle=purefloss
|
||||
prebuild=touch translate.properties && \
|
||||
sed -i -e '/fabric/d' -e '/crashlytics/,+2d' -e '/play-services/d' -e '/google-services/d' build.gradle && \
|
||||
sed -i -e '/dl.bintray.com\/lukaville/d' -e 's/com.nbsp:library:1.6/com.github.nbsp-team:MaterialFilePicker:5e0a4834/g' build.gradle
|
||||
|
||||
Auto Update Mode:Version %c
|
||||
Update Check Mode:HTTP
|
||||
Update Check Data:https://raw.githubusercontent.com/premnirmal/StockTicker/master/app/version.properties|versionCode=(.*)|.|versionName=(.*)
|
||||
Current Version:2.3.29
|
||||
Current Version Code:229
|
||||
Current Version:2.4.04
|
||||
Current Version Code:234
|
||||
|
|
|
@ -218,7 +218,12 @@ Build:0.34,34
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:0.35,35
|
||||
commit=0.35
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.34
|
||||
Current Version Code:34
|
||||
Current Version:0.35
|
||||
Current Version Code:35
|
||||
|
|
|
@ -106,7 +106,21 @@ Build:1.4.7,1004007
|
|||
rm=desktop
|
||||
scanignore=android/libs/*
|
||||
|
||||
Build:1.4.8,1004008
|
||||
commit=v1.4.8
|
||||
subdir=android
|
||||
gradle=yes
|
||||
rm=desktop
|
||||
scanignore=android/libs/*
|
||||
|
||||
Build:1.4.9,1004009
|
||||
commit=v1.4.9
|
||||
subdir=android
|
||||
gradle=yes
|
||||
rm=desktop
|
||||
scanignore=android/libs/*
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.4.7
|
||||
Current Version Code:1004007
|
||||
Current Version:1.4.9
|
||||
Current Version Code:1004009
|
||||
|
|
|
@ -19,6 +19,6 @@ Build:1.2.8,19
|
|||
target=Google Inc.:Google APIs:16
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Update Check Mode:Static
|
||||
Current Version:1.2.8
|
||||
Current Version Code:19
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue