mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-18 11:49:12 +00:00
merge
This commit is contained in:
commit
f553d923b0
784 changed files with 15069 additions and 1932 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -17,3 +17,6 @@
|
|||
!/build/extlib/
|
||||
/build/.fdroidvcs-*
|
||||
/stats/publishsigkeys.jar
|
||||
|
||||
# used in fdroidserver's ./jenkins-test
|
||||
keystore.jks
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
# F-Droid Data
|
||||
|
||||
[](https://gitlab.com/fdroid/fdroiddata/builds)
|
||||
[](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.
37
metadata/androdns.android.leetdreams.ch.androdns.txt
Normal file
37
metadata/androdns.android.leetdreams.ch.androdns.txt
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
Categories:Internet
|
||||
License:Apache-2.0
|
||||
Web Site:
|
||||
Source Code:https://github.com/gryphius/androdns
|
||||
Issue Tracker:https://github.com/gryphius/androdns/issues
|
||||
|
||||
Auto Name:AndroDNS
|
||||
Summary:DNS client
|
||||
Description:
|
||||
This DNS client allows you to perform customized DNS queries directly from your
|
||||
mobile phone. In contrast to most other DNS clients, it does not impose
|
||||
restrictions on what you can query.
|
||||
|
||||
Features:
|
||||
|
||||
* Select recursive or authoritative server to query (default: system resolver)
|
||||
* Specify any question type (not just the most common A/AAAA/MX ....), you can even enter the type ID for new/experimental question types
|
||||
* Supports IN/CH/HS query class
|
||||
* Set question flags
|
||||
* DNSSEC aware (request / show RRSIGs ) - but it does not validate
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
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
|
||||
prebuild=sed -i -e "s/jcenter()/jcenter()\n maven { url 'https:\/\/maven.google.com' }/" ../build.gradle
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.4
|
||||
Current Version Code:6
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -73,7 +73,27 @@ Build:1.3.1,11
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.2,12
|
||||
commit=v1.3.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.3,13
|
||||
commit=v1.3.3
|
||||
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.1
|
||||
Current Version Code:11
|
||||
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
|
||||
|
|
|
|||
|
|
@ -539,6 +539,73 @@ Build:1.75,75
|
|||
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
|
||||
scanignore=app/src/main/res/raw/tumangaonline
|
||||
|
||||
Build:1.76,76
|
||||
commit=1.76
|
||||
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
|
||||
scanignore=app/src/main/res/raw/tumangaonline
|
||||
|
||||
Build:1.77,77
|
||||
commit=1.77
|
||||
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
|
||||
scanignore=app/src/main/res/raw/tumangaonline
|
||||
|
||||
Build:1.78,78
|
||||
commit=1.78
|
||||
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
|
||||
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
|
||||
|
||||
Build:1.82,82
|
||||
commit=1.82
|
||||
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.83,83
|
||||
commit=1.83
|
||||
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.
|
||||
|
|
@ -546,5 +613,5 @@ RapidDecoder 0.3.0 is required, but this version is not tagged.
|
|||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.75
|
||||
Current Version Code:75
|
||||
Current Version:1.83
|
||||
Current Version Code:83
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -691,7 +691,31 @@ Build:1.9.7-ose,195
|
|||
gradle=standard
|
||||
prebuild=sed -i -e 's/gradle-4.0.1/gradle-4.0/' ../gradle/wrapper/gradle-wrapper.properties
|
||||
|
||||
Build:1.9.8.1-ose,197
|
||||
commit=v1.9.8.1-ose
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=standard
|
||||
|
||||
Build:1.9.9-ose,199
|
||||
commit=v1.9.9-ose
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=standard
|
||||
|
||||
Build:1.9.10-ose,201
|
||||
commit=v1.9.10-ose
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=standard
|
||||
|
||||
Build:1.10.1.1-ose,205
|
||||
commit=v1.10.1.1-ose
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=standard
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags ^v[0-9.]+-ose$
|
||||
Current Version:1.9.7-ose
|
||||
Current Version Code:195
|
||||
Current Version:1.10.1.1-ose
|
||||
Current Version Code:205
|
||||
|
|
|
|||
|
|
@ -69,7 +69,12 @@ Build:1.4.4,700144
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.4.5,1500150
|
||||
commit=v1.4.5
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.4.4
|
||||
Current Version Code:700144
|
||||
Current Version:1.4.5
|
||||
Current Version Code:1500150
|
||||
|
|
|
|||
|
|
@ -297,7 +297,16 @@ Build:3.21.2,62
|
|||
rm=build.gradle
|
||||
prebuild=sed -i -e '/mavenCentral/ajcenter()' -e 's#http://guardian.github.com/maven/repo-releases#https://jitpack.io#' -e "s/com.gu:option.*/com.github.guardian:Option:e933c3a31d'/" build.gradle
|
||||
|
||||
Build:3.21.4,64
|
||||
commit=3.21.4
|
||||
subdir=reddinator
|
||||
init=sed -i -e '/bintray/d' build.gradle
|
||||
gradle=yes
|
||||
forceversion=yes
|
||||
rm=build.gradle
|
||||
prebuild=sed -i -e '/mavenCentral/ajcenter()' -e 's#http://guardian.github.com/maven/repo-releases#https://jitpack.io#' -e "s/com.gu:option.*/com.github.guardian:Option:e933c3a31d'/" build.gradle
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.21.2
|
||||
Current Version Code:62
|
||||
Current Version:3.21.4
|
||||
Current Version Code:64
|
||||
|
|
|
|||
|
|
@ -44,6 +44,8 @@ Supported cards:
|
|||
|
||||
- Shenzhen Tong - Shenzong, Guangdong Province, China (0)
|
||||
|
||||
- SmartRider - Western Australia, Australia (0) (1) (2)
|
||||
|
||||
- Suica, IOCOA, PASMO, Edy - Japan
|
||||
|
||||
- Transit Access Pass - Los Angeles, CA, USA (0) (1) (2)
|
||||
|
|
@ -90,7 +92,14 @@ Build:v2.9.31-fdroid,31
|
|||
gradle=yes
|
||||
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
|
||||
forceversion=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:2.9.31
|
||||
Current Version Code:31
|
||||
Current Version:2.9.32
|
||||
Current Version Code:32
|
||||
|
|
|
|||
|
|
@ -31,7 +31,11 @@ Build:1.3,4
|
|||
commit=1.3
|
||||
gradle=yes
|
||||
|
||||
Build:1.4,5
|
||||
commit=1.4
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.3
|
||||
Current Version Code:4
|
||||
Current Version:1.4
|
||||
Current Version Code:5
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
69
metadata/be.mygod.vpnhotspot.txt
Normal file
69
metadata/be.mygod.vpnhotspot.txt
Normal file
|
|
@ -0,0 +1,69 @@
|
|||
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
|
||||
|
||||
Build:1.1.5,13
|
||||
commit=1.1.5
|
||||
subdir=mobile
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags ^[0-9.]+$
|
||||
Current Version:1.1.5
|
||||
Current Version Code:13
|
||||
|
|
@ -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.11
|
||||
Current Version Code:23
|
||||
|
|
|
|||
|
|
@ -40,7 +40,12 @@ Build:1.0.1,1001
|
|||
rm=libs/*,build.xml
|
||||
prebuild=sed -i -e '/classpath/s/2.2.3/2.1.3/' build.gradle
|
||||
|
||||
Build:1.0.2,1002
|
||||
commit=v1.0.2_fdroid
|
||||
gradle=yes
|
||||
rm=libs/*,build.xml
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.0.1
|
||||
Current Version Code:1001
|
||||
Current Version:1.0.2
|
||||
Current Version Code:1002
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -348,7 +348,22 @@ Build:1.25.1,112501
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.26.1,112601
|
||||
commit=release-1.26.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.26.3,112603
|
||||
commit=release-1.26.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.26.4,112604
|
||||
commit=release-1.26.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version release-%v
|
||||
Update Check Mode:Tags ^release-
|
||||
Current Version:1.25.1
|
||||
Current Version Code:112501
|
||||
Current Version:1.26.4
|
||||
Current Version Code:112604
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -66,7 +66,12 @@ Build:0.3.1,8
|
|||
subdir=min-cal-widget
|
||||
gradle=yes
|
||||
|
||||
Build:0.3.2,9
|
||||
commit=v0.3.2
|
||||
subdir=min-cal-widget
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:0.3.1
|
||||
Current Version Code:8
|
||||
Current Version:0.3.2
|
||||
Current Version Code:9
|
||||
|
|
|
|||
|
|
@ -31,6 +31,31 @@ Build:0.0.4.2,16
|
|||
gradle=yes
|
||||
scandelete=asset/
|
||||
|
||||
Build:0.0.4.3,17
|
||||
commit=0.0.4.3
|
||||
subdir=app
|
||||
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.
|
||||
|
|
@ -38,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.2
|
||||
Current Version Code:16
|
||||
Current Version:0.0.4.6
|
||||
Current Version Code:20
|
||||
|
|
|
|||
|
|
@ -88,7 +88,17 @@ Build:v1.10-beta,20
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:v1.11-beta,21
|
||||
commit=v1.11-beta
|
||||
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.10-beta
|
||||
Current Version Code:20
|
||||
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
|
||||
|
|
|
|||
42
metadata/ch.deletescape.lawnchair.plah.txt
Normal file
42
metadata/ch.deletescape.lawnchair.plah.txt
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
AntiFeatures:UpstreamNonFree
|
||||
Categories:Theming
|
||||
License:GPL-3.0
|
||||
Web Site:https://lawnchair.info/
|
||||
Source Code:https://github.com/LawnchairLauncher/Lawnchair
|
||||
Issue Tracker:https://github.com/LawnchairLauncher/Lawnchair/issues
|
||||
|
||||
Summary:Pixel Launcher features plus customizability
|
||||
Description:
|
||||
Features:
|
||||
|
||||
* Android Oreo shortcuts and notification dots
|
||||
* Icon packs support
|
||||
* Variable icon size
|
||||
* Custom grid size
|
||||
* Dock customization
|
||||
* Adaptive icons (for Nougat & above)
|
||||
* BLUUUUUR (optional blurry UI for pretty much everything)
|
||||
* And much more!
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/LawnchairLauncher/Lawnchair
|
||||
|
||||
Build:1.1.0.1742,1742
|
||||
commit=1.1.0.1742
|
||||
subdir=app
|
||||
output=build/outputs/apk/release/app-release-unsigned.apk
|
||||
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 && \
|
||||
export TRAVIS_BUILD_NUMBER=$$VERCODE$$ && \
|
||||
gradle assembleRelease
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.1.0.1742
|
||||
Current Version Code:1742
|
||||
|
|
@ -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
|
||||
|
|
|
|||
42
metadata/co.pxhouse.sas.txt
Normal file
42
metadata/co.pxhouse.sas.txt
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
AntiFeatures:NonFreeNet
|
||||
Categories:Internet,System
|
||||
License:MIT
|
||||
Web Site:https://github.com/veniosg/JustSearch
|
||||
Source Code:https://github.com/veniosg/JustSearch
|
||||
Issue Tracker:https://github.com/veniosg/JustSearch/issues
|
||||
|
||||
Auto Name:Just Search
|
||||
Summary:Simple Assist app with multiple search providers
|
||||
Description:
|
||||
Just Search is an Assist replacement (the app that launches after long pressing
|
||||
home) and cannot be launched via the launcher. To use it, navigate to the device
|
||||
settings and change the default Assist app.
|
||||
|
||||
Just Search provides a simple way to search from everywhere without needing to
|
||||
launch the heavy (in terms of data and resources' needs) Google search app. Just
|
||||
Search uses DuckDuckGo by default, but allows opting for a multitude of
|
||||
predefined search providers instead. It also allows setting a custom search URL
|
||||
so that any search engine is supported.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/veniosg/JustSearch
|
||||
|
||||
Build:1.0.0,1
|
||||
commit=1.0.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.1.0,6
|
||||
commit=1.1.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Maintainer Notes:
|
||||
Cannot use AUM/UCM because version code and version name are dynamic.
|
||||
.
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.1.0
|
||||
Current Version Code:6
|
||||
|
|
@ -64,7 +64,13 @@ Build:2.0.8,28
|
|||
subdir=ShareViaHttp/app
|
||||
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
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags ^v[0-9\.]+$
|
||||
Current Version:2.0.8
|
||||
Current Version Code:28
|
||||
Current Version:2.0.9
|
||||
Current Version Code:29
|
||||
|
|
|
|||
|
|
@ -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,7 +216,19 @@ Build:2.0.1,49
|
|||
gradle=free
|
||||
prebuild=sed -i -e '/com.aaronjwood.portauthority.free/d' build.gradle
|
||||
|
||||
Build:2.2.6,54
|
||||
commit=v2.2.6
|
||||
subdir=app
|
||||
gradle=free
|
||||
prebuild=sed -i -e '/applicationIdSuffix/d; /versionNameSuffix/d' build.gradle
|
||||
|
||||
Build:2.2.8,55
|
||||
commit=v2.2.8
|
||||
subdir=app
|
||||
gradle=free
|
||||
prebuild=sed -i -e '/applicationIdSuffix/d; /versionNameSuffix/d' build.gradle
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.0.1
|
||||
Current Version Code:49
|
||||
Current Version:2.2.8
|
||||
Current Version Code:55
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -41,7 +41,17 @@ Build:1.4,4
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.5,5
|
||||
commit=2317f71a04b619ecafa56e282d63baeac72ba420
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.6,6
|
||||
commit=fb28250c74e59582e887ede69cf75c1f061caf3c
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.5
|
||||
Current Version Code:5
|
||||
Current Version:1.6
|
||||
Current Version Code:6
|
||||
|
|
|
|||
|
|
@ -68,5 +68,5 @@ Build:1.9,9
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.9
|
||||
Current Version Code:9
|
||||
Current Version:2.0
|
||||
Current Version Code:10
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,14 +1,18 @@
|
|||
Categories:Internet,System
|
||||
License:GPL-3.0
|
||||
Web Site:
|
||||
Web Site:https://andDevW.com
|
||||
Source Code:https://github.com/andDevW/getChromium
|
||||
Issue Tracker:https://github.com/andDevW/getChromium/issues
|
||||
Bitcoin:188RxvRnSXSZZnjuDdLwNirHDfNusVPobh
|
||||
|
||||
Auto Name:getChromium
|
||||
Summary:Installs/Updates the open-source Chromium browser
|
||||
Summary:Installs the latest build of Chromium
|
||||
Description:
|
||||
Companion app that downloads and installs Chromium updates.
|
||||
Installs the latest build of Chromium for Android. Push the button to install
|
||||
Chromium, then push the button and install Chromium again. Each time you install
|
||||
Chromium it updates Chromium. Chromium does NOT AUTO-UPDATE, getChromium does
|
||||
NOT AUTO-UPDATE. Genuine Chromium APK courtesy of the Chromium team
|
||||
[https://chromium.org]
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
|
|
@ -64,7 +68,13 @@ Build:4.0,20170318
|
|||
rm=app/libs/*
|
||||
prebuild=sed -i -e '/mcxiaoke/s@//@@g' build.gradle
|
||||
|
||||
Auto Update Mode:None
|
||||
Build:4.1,20170830
|
||||
commit=v4.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
rm=app/libs/*
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.1 beta 1
|
||||
Current Version:4.1
|
||||
Current Version Code:20170830
|
||||
|
|
|
|||
|
|
@ -223,7 +223,19 @@ Build:2.2.0.8,164
|
|||
gradle=flavor1
|
||||
rm=app/libs
|
||||
|
||||
Build:2.2.0.9,165
|
||||
commit=v2.2.0.9
|
||||
subdir=app
|
||||
gradle=flavor1
|
||||
rm=app/libs
|
||||
|
||||
Build:2.2.1,166
|
||||
commit=v2.2.1
|
||||
subdir=app
|
||||
gradle=flavor1
|
||||
rm=app/libs
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.2.0.8
|
||||
Current Version Code:164
|
||||
Current Version:2.2.1
|
||||
Current Version Code:166
|
||||
|
|
|
|||
36
metadata/com.android.talkback.txt
Normal file
36
metadata/com.android.talkback.txt
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
Categories:System
|
||||
License:Apache-2.0
|
||||
Web Site:https://support.google.com/accessibility/android/answer/6283677?hl=en
|
||||
Source Code:https://github.com/google/talkback
|
||||
Issue Tracker:
|
||||
|
||||
Auto Name:TalkBack
|
||||
Summary:Accessibility improvements
|
||||
Description:
|
||||
TalkBack is an Accessibility Service that helps blind and vision-impaired users
|
||||
interact with their devices more easily.
|
||||
|
||||
This application adds spoken, audible, and vibration feedback to your device.
|
||||
|
||||
It comes pre-installed on many devices so you won't be able to install this if
|
||||
that is the case.
|
||||
|
||||
It's only activated if you explicitly turn on Accessibility:
|
||||
|
||||
# Go to Settings
|
||||
# Select Accessibility
|
||||
# Enable TalkBack checkboxes
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/google/talkback.git
|
||||
|
||||
Build:5.0.7_aosp,50007000
|
||||
commit=12bdf2063e121a021f050c94cf5ebb2489c8af8a
|
||||
patch=play-services-50007000.patch
|
||||
gradle=yes
|
||||
output=build/outputs/apk/com.android.talkback-aosp-release.apk
|
||||
prebuild=rm libs/*.jar
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
73
metadata/com.android.talkback/play-services-50007000.patch
Normal file
73
metadata/com.android.talkback/play-services-50007000.patch
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
diff --git a/base.gradle b/base.gradle
|
||||
index 228d859..441df5a 100644
|
||||
--- a/base.gradle
|
||||
+++ b/base.gradle
|
||||
@@ -15,10 +15,6 @@ buildscript {
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
- maven {
|
||||
- // TODO: Remove this after support library v24 public release.
|
||||
- url "$rootDir/prebuilts/fullsdk/extras/android/m2repository"
|
||||
- }
|
||||
}
|
||||
|
||||
android {
|
||||
diff --git a/build.gradle b/build.gradle
|
||||
index ffb4460..8ea8d2c 100644
|
||||
--- a/build.gradle
|
||||
+++ b/build.gradle
|
||||
@@ -27,7 +27,6 @@ android {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
- compile 'com.google.android.gms:play-services:8.4.0'
|
||||
compile 'com.android.support:support-v4:24.0.0'
|
||||
}
|
||||
|
||||
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
|
||||
index 04948e9..9532e39 100644
|
||||
--- a/src/main/AndroidManifest.xml
|
||||
+++ b/src/main/AndroidManifest.xml
|
||||
@@ -282,10 +282,6 @@
|
||||
android:directBootAware="true"
|
||||
android:enabled="@bool/atLeastL" >
|
||||
</activity>
|
||||
-
|
||||
- <meta-data
|
||||
- android:name="com.google.android.gms.version"
|
||||
- android:value="@integer/google_play_services_version" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
diff --git a/src/main/java/com/android/talkback/TalkBackPreferencesActivity.java b/src/main/java/com/android/talkback/TalkBackPreferencesActivity.java
|
||||
index ba3bd6b..781e1c5 100644
|
||||
--- a/src/main/java/com/android/talkback/TalkBackPreferencesActivity.java
|
||||
+++ b/src/main/java/com/android/talkback/TalkBackPreferencesActivity.java
|
||||
@@ -61,8 +61,6 @@ import com.android.utils.AccessibilityEventUtils;
|
||||
import com.android.utils.LogUtils;
|
||||
import com.android.utils.PackageManagerUtils;
|
||||
import com.android.utils.SharedPreferencesUtils;
|
||||
-import com.google.android.gms.common.ConnectionResult;
|
||||
-import com.google.android.gms.common.GooglePlayServicesUtil;
|
||||
import com.google.android.marvin.talkback.TalkBackService;
|
||||
|
||||
import java.util.HashSet;
|
||||
@@ -957,17 +955,6 @@ public class TalkBackPreferencesActivity extends Activity {
|
||||
return;
|
||||
}
|
||||
|
||||
- if (GooglePlayServicesUtil.isGooglePlayServicesAvailable(activity)
|
||||
- != ConnectionResult.SUCCESS) {
|
||||
- // Not needed, but playing safe since this is hard to test outside of China
|
||||
- playStoreButton.setIntent(null);
|
||||
- final PreferenceGroup category = (PreferenceGroup)
|
||||
- findPreferenceByResId(R.string.pref_category_miscellaneous_key);
|
||||
- if (category != null) {
|
||||
- category.removePreference(playStoreButton);
|
||||
- }
|
||||
- }
|
||||
-
|
||||
if (playStoreButton.getIntent() != null &&
|
||||
activity.getPackageManager().queryIntentActivities(
|
||||
playStoreButton.getIntent(), 0).size() == 0) {
|
||||
|
|
@ -23,7 +23,37 @@ Build:4.1.6,416
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.1.7,417
|
||||
commit=4.1.7
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.1.9,419
|
||||
commit=4.1.9
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.2.0,420
|
||||
commit=4.2.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.2.1,421
|
||||
commit=4.2.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.2.2,422
|
||||
commit=4.2.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.2.3,423
|
||||
commit=4.2.3
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.1.6
|
||||
Current Version Code:416
|
||||
Current Version:4.2.3
|
||||
Current Version Code:423
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -180,7 +180,29 @@ Build:1.09.43,53
|
|||
sed -i -e 's/${AMPACHE_USERNAME}/null/g' build.gradle && \
|
||||
sed -i -e 's/${AMPACHE_PASSWORD}/null/g' build.gradle
|
||||
|
||||
Build:1.09.44,54
|
||||
commit=v1.09.44
|
||||
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
|
||||
|
||||
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.43
|
||||
Current Version Code:53
|
||||
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
|
||||
|
|
|
|||
|
|
@ -34,5 +34,5 @@ Build:1.1.2,5
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.1.2
|
||||
Current Version Code:5
|
||||
Current Version:1.1.3
|
||||
Current Version Code:6
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -236,8 +236,61 @@ Build:0.9.9,483
|
|||
gradle nativeLibsToJar
|
||||
ndk=r15c
|
||||
|
||||
Build:0.11.4,509
|
||||
commit=v0.11.4
|
||||
subdir=MessengerProj
|
||||
submodules=yes
|
||||
gradle=fat
|
||||
build=$$NDK$$/ndk-build -j `nproc` && \
|
||||
gradle nativeLibsToJar
|
||||
ndk=r15c
|
||||
|
||||
Build:0.12.0,510
|
||||
commit=v0.12.0
|
||||
subdir=MessengerProj
|
||||
submodules=yes
|
||||
gradle=fat
|
||||
build=$$NDK$$/ndk-build -j `nproc` && \
|
||||
gradle nativeLibsToJar
|
||||
ndk=r15c
|
||||
|
||||
Build:0.13.0,511
|
||||
commit=v0.13.0
|
||||
subdir=MessengerProj
|
||||
submodules=yes
|
||||
gradle=fat
|
||||
build=$$NDK$$/ndk-build -j `nproc` && \
|
||||
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
|
||||
|
||||
Build:0.16.0,514
|
||||
commit=v0.16.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
|
||||
Vercode Operation:%c*10 + 3
|
||||
Current Version:v0.10.0
|
||||
Current Version Code:33
|
||||
Current Version:0.16.0
|
||||
Current Version Code:514
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -25,7 +26,52 @@ Build:3.5.0,22
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.6.0,23
|
||||
commit=v3.6.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.7.1,27
|
||||
commit=v3.7.1
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.7.6,30
|
||||
commit=v3.7.6
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.8.0,32
|
||||
commit=v3.8.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.1.0,39
|
||||
commit=v4.1.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.1.4,43
|
||||
commit=v4.1.4
|
||||
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:3.5.0
|
||||
Current Version Code:22
|
||||
Current Version:4.5.4
|
||||
Current Version Code:62
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ Issue Tracker:https://github.com/hwki/SimpleBitcoinWidget/issues
|
|||
Bitcoin:15SHnY7HC5bTxzErHDPe7wHXj1HhtDKV7z
|
||||
|
||||
Auto Name:Simple Bitcoin Cash Widget
|
||||
Summary:Show current bitcoin cash exchange prices
|
||||
Summary:Show current bitcoin Cash exchange prices
|
||||
Description:
|
||||
A clean and simple bitcoin cash widget to show the current price from different
|
||||
A clean and simple Bitcoin Cash widget to show the current price from different
|
||||
exchanges.
|
||||
.
|
||||
|
||||
|
|
@ -36,11 +36,22 @@ Build:1.1.1,11
|
|||
gradle=yes
|
||||
|
||||
Build:1.2,20
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.0
|
||||
commit=bch-1.2
|
||||
subdir=bitcoincash
|
||||
gradle=yes
|
||||
|
||||
Build:1.3,22
|
||||
commit=bch-1.3
|
||||
subdir=bitcoincash
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.1,23
|
||||
commit=bch-1.3.1
|
||||
subdir=bitcoincash
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version bch-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2
|
||||
Current Version Code:20
|
||||
Current Version:1.3.1
|
||||
Current Version Code:23
|
||||
|
|
|
|||
|
|
@ -6,9 +6,9 @@ Issue Tracker:https://github.com/hwki/SimpleBitcoinWidget/issues
|
|||
Bitcoin:15SHnY7HC5bTxzErHDPe7wHXj1HhtDKV7z
|
||||
|
||||
Auto Name:Simple Bitcoin Widget
|
||||
Summary:Show current bitcoin exchange prices
|
||||
Summary:Show current Bitcoin exchange prices
|
||||
Description:
|
||||
A clean and simple bitcoin widget to show the current price from different
|
||||
A clean and simple Bitcoin widget to show the current price from different
|
||||
exchanges.
|
||||
.
|
||||
|
||||
|
|
@ -157,11 +157,22 @@ Build:5.2.2,122
|
|||
gradle=yes
|
||||
|
||||
Build:5.3,130
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.0
|
||||
commit=btc-5.3
|
||||
subdir=bitcoin
|
||||
gradle=yes
|
||||
|
||||
Build:6.0.1,151
|
||||
commit=btc-6.0.1
|
||||
subdir=bitcoin
|
||||
gradle=yes
|
||||
|
||||
Build:6.1.2,162
|
||||
commit=btc-6.1.2
|
||||
subdir=bitcoin
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version btc-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:5.3
|
||||
Current Version Code:130
|
||||
Current Version:6.1.2
|
||||
Current Version Code:162
|
||||
|
|
|
|||
|
|
@ -41,11 +41,22 @@ Build:1.2.2,22
|
|||
gradle=yes
|
||||
|
||||
Build:1.3,30
|
||||
disable=Could not find com.android.tools.build:gradle:3.0.0
|
||||
commit=eth-1.3
|
||||
subdir=ethereum
|
||||
gradle=yes
|
||||
|
||||
Build:1.4,32
|
||||
commit=eth-1.4
|
||||
subdir=ethereum
|
||||
gradle=yes
|
||||
|
||||
Build:1.4.1,33
|
||||
commit=eth-1.4.1
|
||||
subdir=ethereum
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version eth-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.3
|
||||
Current Version Code:30
|
||||
Current Version:1.4.1
|
||||
Current Version Code:33
|
||||
|
|
|
|||
|
|
@ -41,11 +41,22 @@ 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
|
||||
|
||||
Build:1.3,22
|
||||
commit=ltc-1.3
|
||||
subdir=litecoin
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.1,23
|
||||
commit=ltc-1.3.1
|
||||
subdir=litecoin
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:Version ltc-%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2
|
||||
Current Version Code:20
|
||||
Current Version:1.3.1
|
||||
Current Version Code:23
|
||||
|
|
|
|||
|
|
@ -93,5 +93,5 @@ Build:3.2,16
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:3.2
|
||||
Current Version Code:16
|
||||
Current Version:3.3
|
||||
Current Version Code:17
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -101,4 +101,4 @@ Build:1.075,52
|
|||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.075
|
||||
Current Version Code:53
|
||||
Current Version Code:55
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -157,7 +157,13 @@ Build:5.3.1,531
|
|||
subdir=PersianCalendar
|
||||
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
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags ^[0-9.v]*$
|
||||
Current Version:5.3.1
|
||||
Current Version Code:531
|
||||
Current Version:5.4.0
|
||||
Current Version Code:540
|
||||
|
|
|
|||
|
|
@ -39,7 +39,27 @@ Build:3.15,36
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.16,38
|
||||
commit=v3.16
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:3.17,39
|
||||
commit=v3.17
|
||||
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.15
|
||||
Current Version Code:36
|
||||
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,16 @@ Build:5.0,28
|
|||
Build:5.1,31
|
||||
commit=26774a278f36ffc3c8860372ebb9a8ed327ed688
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:5.3
|
||||
Current Version Code:45
|
||||
Build:5.5,54
|
||||
commit=v5.5
|
||||
|
||||
Build:6.0,60
|
||||
commit=v6.0
|
||||
|
||||
Build:6.1,61
|
||||
commit=v6.1
|
||||
|
||||
Auto Update Mode:Version v%v
|
||||
Update Check Mode:Tags
|
||||
Current Version:6.1
|
||||
Current Version Code:61
|
||||
|
|
|
|||
|
|
@ -31,5 +31,5 @@ Build:2.5.0,20
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:3.0.1
|
||||
Current Version Code:25
|
||||
Current Version:3.0.2
|
||||
Current Version Code:26
|
||||
|
|
|
|||
50
metadata/com.corphish.nightlight.generic.txt
Normal file
50
metadata/com.corphish.nightlight.generic.txt
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
Categories:System
|
||||
License:GPL-3.0
|
||||
Web Site:https://github.com/corphish/NightLight
|
||||
Source Code:https://github.com/corphish/NightLight
|
||||
Issue Tracker:https://github.com/corphish/NightLight/issues
|
||||
|
||||
Auto Name:Night Light
|
||||
Summary:An app to adjust blue light intensity, powered by KCAL
|
||||
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''
|
||||
|
||||
* Control blue light filter intensity to your liking.
|
||||
* Control green light filter to add reddish tint.
|
||||
* Easy one touch toggles, with a single slider to tweak blue light intensity.
|
||||
* Quick Setting tile for easy toggling on/off night light anywhere.
|
||||
* Automatic switching on/off night light at user specified timings.
|
||||
* Supports sunset/sunrise timings. (Limitation: Once sunset/sunrise times are set, Night Light will be toggled every day at that time. Calculating sunset/sunrise times everyday and setting times based on it is not supported as of now.)
|
||||
|
||||
''Requirements''
|
||||
|
||||
* Kernel supporting KCAL.
|
||||
* Root access.
|
||||
.
|
||||
|
||||
Requires Root:yes
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/corphish/NightLight
|
||||
|
||||
Build:1.1.6,11
|
||||
commit=b60d8a31c4de8f379fd7798c196e40cee504345e
|
||||
subdir=app
|
||||
gradle=foss
|
||||
prebuild=sed -i -e '/io.fabric/d' -e '/fabric.io/d' -e '/genericImplementation(.*) {/,/}/d' -e '/donateImplementation(.*) {/,/}/d' ../build.gradle build.gradle
|
||||
|
||||
Build:1.2.0,12
|
||||
commit=8c994c1139157b358c0bbd2bb54c69f682061c59
|
||||
subdir=app
|
||||
gradle=foss
|
||||
prebuild=sed -i -e '/io.fabric/d' -e '/fabric.io/d' -e '/genericImplementation(.*) {/,/}/d' -e '/donateImplementation(.*) {/,/}/d' ../build.gradle build.gradle
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:None
|
||||
Current Version:1.2.0
|
||||
Current Version Code:12
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -34,5 +34,5 @@ Upstream force-pushed to repo. Now uses crashlytics.
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:Tags
|
||||
Current Version:2.0
|
||||
Current Version Code:5
|
||||
Current Version:2.1
|
||||
Current Version Code:6
|
||||
|
|
|
|||
26
metadata/com.davidshewitt.admincontrol.yml
Normal file
26
metadata/com.davidshewitt.admincontrol.yml
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
Categories:
|
||||
- System
|
||||
License: GPL-3.0+
|
||||
SourceCode: https://github.com/linux-colonel/AdminControl
|
||||
IssueTracker: https://github.com/linux-colonel/AdminControl/issues
|
||||
|
||||
AutoName: AdminControl
|
||||
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
|
||||
CurrentVersion: 1.0.2
|
||||
CurrentVersionCode: 3
|
||||
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
|
||||
|
|
@ -1,19 +1,20 @@
|
|||
Categories:Theming,Multimedia
|
||||
License:GPL-3.0
|
||||
Web Site:https://github.com/dkanada/ICEcons/blob/HEAD/README.md
|
||||
Source Code:https://github.com/dkanada/ICEcons
|
||||
Issue Tracker:https://github.com/dkanada/ICEcons/issues
|
||||
Web Site:https://github.com/dkanada/frost/blob/HEAD/README.md
|
||||
Source Code:https://github.com/dkanada/frost
|
||||
Issue Tracker:https://github.com/dkanada/frost/issues
|
||||
Changelog:https://github.com/dkanada/frost/blob/HEAD/CHANGELOG.md
|
||||
|
||||
Name:ICEcons (fork)
|
||||
Auto Name:ICEcons
|
||||
Summary:Use monotone icons
|
||||
Auto Name:Frost
|
||||
Summary:Monotone icon pack
|
||||
Description:
|
||||
Monotone icon pack for Trebuchet, Kiss, Nova, Apex, Holo and Adw launchers, also
|
||||
includes 4k wallpapers. Based on [[ovh.ice.icecons]].
|
||||
Frost is a monotone icon pack that supports Trebuchet, Kiss, Nova, and most
|
||||
other popular launchers. It is based on [[ovh.ice.icecons]] and includes some
|
||||
nice wallpapers.
|
||||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/dkanada/ICEcons
|
||||
Repo:https://github.com/dkanada/frost
|
||||
|
||||
Build:1.0,12
|
||||
commit=v1.0
|
||||
|
|
@ -45,7 +46,17 @@ Build:1.3.2,17
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:1.3.3,18
|
||||
commit=v1.3.3
|
||||
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.2
|
||||
Current Version Code:17
|
||||
Current Version:1.3.4
|
||||
Current Version Code:19
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
Categories:System
|
||||
License:GPL-3.0
|
||||
Web Site:
|
||||
Web Site:https://github.com/dkanada/OpenAPK/blob/HEAD/README.md
|
||||
Source Code:https://github.com/dkanada/OpenAPK
|
||||
Issue Tracker:https://github.com/dkanada/OpenAPK/issues
|
||||
Changelog:https://github.com/dkanada/OpenAPK/blob/HEAD/CHANGELOG.md
|
||||
|
|
|
|||
|
|
@ -55,5 +55,5 @@ Build:1.1.6,11
|
|||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.2.3
|
||||
Current Version Code:15
|
||||
Current Version:1.2.4
|
||||
Current Version Code:16
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,25 +1,46 @@
|
|||
Categories:Internet
|
||||
License:Apache-2.0
|
||||
Web Site:https://duckduckgo.com
|
||||
Source Code:https://github.com/duckduckgo/android-search-and-stories
|
||||
Issue Tracker:https://github.com/duckduckgo/android-search-and-stories/issues
|
||||
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
|
||||
Repo:https://github.com/duckduckgo/android-search-and-stories.git
|
||||
Repo:https://github.com/duckduckgo/Android
|
||||
|
||||
Build:2.1.1,52
|
||||
commit=v2.1.1
|
||||
|
|
@ -153,7 +174,23 @@ Build:3.1.1,101
|
|||
gradle=yes
|
||||
scanignore=libs/OnionKit/libnetcipher/external/pinning/res/raw/cacerts
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:3.1.1
|
||||
Current Version Code:101
|
||||
Build:4.1.1,40101
|
||||
commit=4.1.1
|
||||
gradle=yes
|
||||
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.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.5
|
||||
Current Version Code:15
|
||||
|
|
|
|||
|
|
@ -43,6 +43,13 @@ Build:1.0.3.0,5
|
|||
gradle=yes
|
||||
prebuild=sed -i -e 's/v4:22.0.1/v4:22.0.0/g' -e '/target/aminSdkVersion 4' build.gradle
|
||||
|
||||
Build:1.0.3.1,6
|
||||
commit=290439ffa8bb7ee842236e0c8f9109ffa63aef58
|
||||
subdir=app
|
||||
gradle=yes
|
||||
rm=wuzzapcom.jks,build,app/build
|
||||
prebuild=sed -i -e 's/v4:22.0.1/v4:22.0.0/g' -e '/target/a\ minSdkVersion 4' build.gradle
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.0.3.1
|
||||
|
|
|
|||
|
|
@ -121,6 +121,43 @@ Build:0.19.3,21
|
|||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.19.4,22
|
||||
commit=v0.19.4
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.19.5,23
|
||||
commit=v0.19.5
|
||||
subdir=app
|
||||
submodules=yes
|
||||
gradle=yes
|
||||
|
||||
Build:0.19.6,24
|
||||
commit=v0.19.6
|
||||
subdir=app
|
||||
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:
|
||||
|
|
@ -129,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.3
|
||||
Current Version Code:21
|
||||
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
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
Categories:Connectivity,Development
|
||||
License:GPL-3.0
|
||||
Web Site:https://github.com/betaglop/eve-control/blob/HEAD/README.md
|
||||
Source Code:https://github.com/betaglop/eve-control
|
||||
Issue Tracker:https://github.com/betaglop/eve-control/issues
|
||||
Web Site:https://github.com/e-venement/eve-control/blob/HEAD/README.md
|
||||
Source Code:https://github.com/e-venement/eve-control
|
||||
Issue Tracker:https://github.com/e-venement/eve-control/issues
|
||||
|
||||
Auto Name:Eve-control
|
||||
Summary:Control eVenement instances
|
||||
|
|
@ -22,7 +22,7 @@ periodically to keep the session alive as long as needed.
|
|||
.
|
||||
|
||||
Repo Type:git
|
||||
Repo:https://github.com/betaglop/eve-control
|
||||
Repo:https://github.com/e-venement/eve-control
|
||||
|
||||
Build:1.0,1
|
||||
commit=36a87f06556c0192c6a9f8e969c41573f154f386
|
||||
|
|
@ -35,7 +35,12 @@ Build:1.1,2
|
|||
gradle=yes
|
||||
prebuild=sed -i -e '/versionCode/d' -e '/versionName/d' build.gradle
|
||||
|
||||
Build:1.2,3
|
||||
commit=1.2
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Auto Update Mode:None
|
||||
Update Check Mode:RepoManifest
|
||||
Current Version:1.1
|
||||
Current Version Code:2
|
||||
Update Check Mode:Tags
|
||||
Current Version:1.2
|
||||
Current Version Code:3
|
||||
|
|
|
|||
|
|
@ -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.1
|
||||
Current Version Code:183
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ License:GPL-3.0
|
|||
Web Site:https://github.com/thermatk/FastHub-Libre
|
||||
Source Code:https://github.com/thermatk/FastHub-Libre
|
||||
Issue Tracker:https://github.com/thermatk/FastHub-Libre/issues
|
||||
LiberapayID:27901
|
||||
|
||||
Auto Name:FastHub-Libre
|
||||
Summary:A GitHub client app built from ground up
|
||||
|
|
@ -100,7 +101,41 @@ Build:4.5.5,455
|
|||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.6.0,460
|
||||
commit=4.6.0
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.6.1,461
|
||||
commit=4.6.1
|
||||
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
|
||||
|
||||
Build:4.6.4,464
|
||||
commit=4.6.4
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Build:4.6.6,466
|
||||
commit=4.6.6
|
||||
subdir=app
|
||||
gradle=yes
|
||||
|
||||
Maintainer Notes:
|
||||
Bump for bugfix build.
|
||||
.
|
||||
|
||||
Auto Update Mode:Version %v
|
||||
Update Check Mode:Tags
|
||||
Current Version:4.5.5
|
||||
Current Version Code:455
|
||||
Current Version:4.6.6
|
||||
Current Version Code:466
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue