From 04b24e4f10a0ab4bb35a3a2c584cf270bdeaaad8 Mon Sep 17 00:00:00 2001 From: Izzy Date: Thu, 19 Sep 2019 07:49:23 +0000 Subject: [PATCH] Metadata YAMLification --- metadata/io.mrarm.irc.txt | 66 ----- metadata/io.mrarm.irc.yml | 79 ++++++ metadata/io.trezor.app.txt | 99 -------- metadata/io.trezor.app.yml | 126 +++++++++ metadata/it.devapp.android.txt | 29 --- metadata/it.devapp.android.yml | 32 +++ metadata/it.fabmazz.triestebus.txt | 32 --- metadata/it.fabmazz.triestebus.yml | 34 +++ metadata/it.faerb.crond.txt | 54 ---- metadata/it.faerb.crond.yml | 64 +++++ metadata/it.greenaddress.cordova.txt | 221 ---------------- metadata/it.greenaddress.cordova.yml | 324 ++++++++++++++++++++++++ metadata/it.lucci.cm.greyscaletheme.txt | 64 ----- metadata/it.lucci.cm.greyscaletheme.yml | 76 ++++++ metadata/it.reyboz.bustorino.txt | 123 --------- metadata/it.reyboz.bustorino.yml | 174 +++++++++++++ 16 files changed, 909 insertions(+), 688 deletions(-) delete mode 100644 metadata/io.mrarm.irc.txt create mode 100644 metadata/io.mrarm.irc.yml delete mode 100644 metadata/io.trezor.app.txt create mode 100644 metadata/io.trezor.app.yml delete mode 100644 metadata/it.devapp.android.txt create mode 100644 metadata/it.devapp.android.yml delete mode 100644 metadata/it.fabmazz.triestebus.txt create mode 100644 metadata/it.fabmazz.triestebus.yml delete mode 100644 metadata/it.faerb.crond.txt create mode 100644 metadata/it.faerb.crond.yml delete mode 100644 metadata/it.greenaddress.cordova.txt create mode 100644 metadata/it.greenaddress.cordova.yml delete mode 100644 metadata/it.lucci.cm.greyscaletheme.txt create mode 100644 metadata/it.lucci.cm.greyscaletheme.yml delete mode 100644 metadata/it.reyboz.bustorino.txt create mode 100644 metadata/it.reyboz.bustorino.yml diff --git a/metadata/io.mrarm.irc.txt b/metadata/io.mrarm.irc.txt deleted file mode 100644 index e0b106a943..0000000000 --- a/metadata/io.mrarm.irc.txt +++ /dev/null @@ -1,66 +0,0 @@ -Categories:Internet -License:GPL-3.0-only -Web Site:https://mrarm.io/ -Source Code:https://github.com/MCMrARM/revolution-irc -Issue Tracker:https://github.com/MCMrARM/revolution-irc/issues -Changelog:https://github.com/MCMrARM/revolution-irc/releases - -Auto Name:Revolution IRC -Summary:The next-generation IRC client -Description: -Revolution IRC Client is the next-generation IRC client for Android, made with -design and functionality in mind. Let's start this revolution! - -This client features a modern Material design as well as many other awesome -features: - -* Stays in background properly, even on more recent Android versions -* Store chat messages to be displayed after reconnecting to the server later -* Nick/channel/command autocomplete -* Ignore list -* mIRC color formatting support -* SSL certificate exception list -* Command list to run after connecting -* Customization: custom command aliases, notification rules, reconnection interval, chat font, message format, app colors - -...and much more! - -Please note that this client is not finished yet and may be missing some -features - if you find something missing, feel free to open an issue on the -project's GitHub page! -. - -Repo Type:git -Repo:https://github.com/MCMrARM/revolution-irc.git - -Build:0.3.2,5 - commit=0.3.2 - subdir=app - gradle=yes - -Build:0.4.1,7 - commit=0.4.1 - subdir=app - gradle=yes - -Build:0.5.0,8 - commit=0.5.0 - subdir=app - gradle=yes - -Build:0.5.1,9 - commit=0.5.1 - subdir=app - gradle=yes - scanignore=app/buildSrc/build/* - -Build:0.5.2,10 - commit=0.5.2 - subdir=app - gradle=yes - scanignore=app/buildSrc/build/* - -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:0.5.2 -Current Version Code:10 diff --git a/metadata/io.mrarm.irc.yml b/metadata/io.mrarm.irc.yml new file mode 100644 index 0000000000..486c67fe8e --- /dev/null +++ b/metadata/io.mrarm.irc.yml @@ -0,0 +1,79 @@ +Categories: + - Internet +License: GPL-3.0-only +WebSite: https://mrarm.io/ +SourceCode: https://github.com/MCMrARM/revolution-irc +IssueTracker: https://github.com/MCMrARM/revolution-irc/issues +Changelog: https://github.com/MCMrARM/revolution-irc/releases + +AutoName: Revolution IRC +Summary: The next-generation IRC client +Description: |- + Revolution IRC Client is the next-generation IRC client for Android, made with + design and functionality in mind. Let's start this revolution! + + This client features a modern Material design as well as many other awesome + features: + + * Stays in background properly, even on more recent Android versions + * Store chat messages to be displayed after reconnecting to the server later + * Nick/channel/command autocomplete + * Ignore list + * mIRC color formatting support + * SSL certificate exception list + * Command list to run after connecting + * Customization: custom command aliases, notification rules, reconnection interval, chat font, message format, app colors + + ...and much more! + + Please note that this client is not finished yet and may be missing some + features - if you find something missing, feel free to open an issue on the + project's GitHub page! + +RepoType: git +Repo: https://github.com/MCMrARM/revolution-irc.git + +Builds: + - versionName: 0.3.2 + versionCode: 5 + commit: 0.3.2 + subdir: app + gradle: + - yes + + - versionName: 0.4.1 + versionCode: 7 + commit: 0.4.1 + subdir: app + gradle: + - yes + + - versionName: 0.5.0 + versionCode: 8 + commit: 0.5.0 + subdir: app + gradle: + - yes + + - versionName: 0.5.1 + versionCode: 9 + commit: 0.5.1 + subdir: app + gradle: + - yes + scanignore: + - app/buildSrc/build/* + + - versionName: 0.5.2 + versionCode: 10 + commit: 0.5.2 + subdir: app + gradle: + - yes + scanignore: + - app/buildSrc/build/* + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 0.5.2 +CurrentVersionCode: 10 diff --git a/metadata/io.trezor.app.txt b/metadata/io.trezor.app.txt deleted file mode 100644 index 33b7e1198a..0000000000 --- a/metadata/io.trezor.app.txt +++ /dev/null @@ -1,99 +0,0 @@ -Categories:Money -License:LGPL-3.0-only -Web Site:http://trezor.io -Source Code:https://github.com/trezor/trezor-android -Issue Tracker:https://github.com/trezor/trezor-android/issues - -Auto Name:TREZOR Manager -Summary:TREZOR hardware wallet Manager -Description: -TREZOR Manager lets you control your TREZOR device from your tablet or phone. It -eliminates the necessity of a desktop computer, letting you depend solely on -your mobile device. Together with a wallet app, it is the perfect portable -solution to a secure hardware wallet. - -This application is designed for management of your TREZOR device. - -Features include: - -* Initialize & Setup -* Recovery -* Change label -* Change PIN -* Enable/Disable passphrase protection -* Change the Homescreen -* Upgrade firmware -* Wipe the device - -This application contains a binary Firmware for updating the device when needed. -This firmware is build and signed by SatoshiLabs - the vendor of TREZOR. -. - -Repo Type:git -Repo:https://github.com/trezor/trezor-android - -Build:1.0.4,8 - disable=failing - commit=v1.0.4 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware/trezor*.bin - -Build:1.0.5,9 - commit=v1.0.5 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware/trezor*.bin - -Build:1.0.6,10 - commit=v1.0.6 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware/trezor*.bin - -Build:1.0.8,12 - commit=v1.0.8 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware/trezor*.bin - -Build:2.0.0,14 - commit=v2.0.0 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware*/trezor*.bin - -Build:2.0.1,15 - commit=v2.0.1 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware*/trezor*.bin - -Build:2.0.2,16 - commit=v2.0.2 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware*/trezor*.bin - -Build:2.0.9,17 - commit=v2.0.9 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware*/trezor*.bin - -Build:2.0.10,18 - commit=v2.0.10 - subdir=trezor-app - gradle=yes - scanignore=trezor-app/src/main/assets/firmware*/trezor*.bin - -Maintainer Notes: -Firmware source is available at https://github.com/trezor/trezor-mcu but -we cannot build it since its required to be signed by upstream. Check -once in a while. -. - -Auto Update Mode:Version v%v -Update Check Mode:Tags -Current Version:2.0.10 -Current Version Code:18 diff --git a/metadata/io.trezor.app.yml b/metadata/io.trezor.app.yml new file mode 100644 index 0000000000..6916067edd --- /dev/null +++ b/metadata/io.trezor.app.yml @@ -0,0 +1,126 @@ +Categories: + - Money +License: LGPL-3.0-only +WebSite: http://trezor.io +SourceCode: https://github.com/trezor/trezor-android +IssueTracker: https://github.com/trezor/trezor-android/issues + +AutoName: TREZOR Manager +Summary: TREZOR hardware wallet Manager +Description: |- + TREZOR Manager lets you control your TREZOR device from your tablet or phone. It + eliminates the necessity of a desktop computer, letting you depend solely on + your mobile device. Together with a wallet app, it is the perfect portable + solution to a secure hardware wallet. + + This application is designed for management of your TREZOR device. + + Features include: + + * Initialize & Setup + * Recovery + * Change label + * Change PIN + * Enable/Disable passphrase protection + * Change the Homescreen + * Upgrade firmware + * Wipe the device + + This application contains a binary Firmware for updating the device when needed. + This firmware is build and signed by SatoshiLabs - the vendor of TREZOR. + +RepoType: git +Repo: https://github.com/trezor/trezor-android + +Builds: + - versionName: 1.0.4 + versionCode: 8 + disable: failing + commit: v1.0.4 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware/trezor*.bin + + - versionName: 1.0.5 + versionCode: 9 + commit: v1.0.5 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware/trezor*.bin + + - versionName: 1.0.6 + versionCode: 10 + commit: v1.0.6 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware/trezor*.bin + + - versionName: 1.0.8 + versionCode: 12 + commit: v1.0.8 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware/trezor*.bin + + - versionName: 2.0.0 + versionCode: 14 + commit: v2.0.0 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware*/trezor*.bin + + - versionName: 2.0.1 + versionCode: 15 + commit: v2.0.1 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware*/trezor*.bin + + - versionName: 2.0.2 + versionCode: 16 + commit: v2.0.2 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware*/trezor*.bin + + - versionName: 2.0.9 + versionCode: 17 + commit: v2.0.9 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware*/trezor*.bin + + - versionName: 2.0.10 + versionCode: 18 + commit: v2.0.10 + subdir: trezor-app + gradle: + - yes + scanignore: + - trezor-app/src/main/assets/firmware*/trezor*.bin + +MaintainerNotes: |- + Firmware source is available at https://github.com/trezor/trezor-mcu but + we cannot build it since its required to be signed by upstream. Check + once in a while. + +AutoUpdateMode: Version v%v +UpdateCheckMode: Tags +CurrentVersion: 2.0.10 +CurrentVersionCode: 18 diff --git a/metadata/it.devapp.android.txt b/metadata/it.devapp.android.txt deleted file mode 100644 index 32c4cee8c2..0000000000 --- a/metadata/it.devapp.android.txt +++ /dev/null @@ -1,29 +0,0 @@ -Disabled:Pointless without Google Maps -AntiFeatures:NonFreeDep -Categories:Navigation -License:GPL-3.0-only -Web Site:https://sourceforge.net/projects/geosearch -Source Code:https://sourceforge.net/projects/geosearch/files/source -Issue Tracker: - -Auto Name:Geosearch -Summary:Monitor the movement of a friend -Description: -Select users from your phone's address book - -* Display users and their movements on a Google map -* Send SMS to users on the map -* Automatic call to the user on the map -* Display the distance between two users -* Viewing the optimal road between two users on a Google map -. - -Repo Type:git -Repo:https://gitorious.org/source-of-geosearch/code01.git - -Build:1.0,1 - commit=18c0181854baa10 - target=Google Inc.:Google APIs:15 - -Auto Update Mode:None -Update Check Mode:Static diff --git a/metadata/it.devapp.android.yml b/metadata/it.devapp.android.yml new file mode 100644 index 0000000000..0ac77ce63b --- /dev/null +++ b/metadata/it.devapp.android.yml @@ -0,0 +1,32 @@ +Disabled: Pointless without Google Maps +AntiFeatures: + - NonFreeDep +Categories: + - Navigation +License: GPL-3.0-only +WebSite: https://sourceforge.net/projects/geosearch +SourceCode: https://sourceforge.net/projects/geosearch/files/source +IssueTracker: https://sourceforge.net/p/geosearch/tickets/ + +AutoName: Geosearch +Summary: Monitor the movement of a friend +Description: |- + Select users from your phone’s address book + + * Display users and their movements on a Google map + * Send SMS to users on the map + * Automatic call to the user on the map + * Display the distance between two users + * Viewing the optimal road between two users on a Google map + +RepoType: git +Repo: https://git.code.sf.net/p/geosearch/code + +Builds: + - versionName: '1.0' + versionCode: 1 + commit: 18c0181854baa10 + target: Google Inc.:Google APIs:15 + +AutoUpdateMode: None +UpdateCheckMode: Static diff --git a/metadata/it.fabmazz.triestebus.txt b/metadata/it.fabmazz.triestebus.txt deleted file mode 100644 index 6eb5983ca5..0000000000 --- a/metadata/it.fabmazz.triestebus.txt +++ /dev/null @@ -1,32 +0,0 @@ -Categories:Navigation -License:GPL-3.0-or-later -Author Name:Fabio Mazza -Author Email:fab4mazz@gmail.com -Web Site: -Source Code:https://github.com/fabmazz/triesteinbus -Issue Tracker:https://github.com/fabmazz/triesteinbus/issues - -Auto Name:TriesteinBus -Summary:Arrival times for Trieste public transport -Description: -This app is useful for finding waiting times for the bus stops in Trieste -(Italy). It is in heavy development, and this first build is an alpha release. - -At the moment the only thing it can do is finding the arrival times by the bus -stop id. Unfortunately, this is quite unconfortable because these are usually -codes found by the bus stop (e.g. FER-D5020), but then the arrival times are -displayed nicely. -. - -Repo Type:git -Repo:https://github.com/fabmazz/triesteinbus - -Build:0.1-alpha,1 - commit=1308344 - subdir=app - gradle=yes - -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:0.1-alpha -Current Version Code:1 diff --git a/metadata/it.fabmazz.triestebus.yml b/metadata/it.fabmazz.triestebus.yml new file mode 100644 index 0000000000..3c4a720cf5 --- /dev/null +++ b/metadata/it.fabmazz.triestebus.yml @@ -0,0 +1,34 @@ +Categories: + - Navigation +License: GPL-3.0-or-later +AuthorName: Fabio Mazza +AuthorEmail: fab4mazz@gmail.com +SourceCode: https://github.com/fabmazz/triesteinbus +IssueTracker: https://github.com/fabmazz/triesteinbus/issues + +AutoName: TriesteinBus +Summary: Arrival times for Trieste public transport +Description: |- + This app is useful for finding waiting times for the bus stops in Trieste + (Italy). It is in heavy development, and this first build is an alpha release. + + At the moment the only thing it can do is finding the arrival times by the bus + stop id. Unfortunately, this is quite unconfortable because these are usually + codes found by the bus stop (e.g. FER-D5020), but then the arrival times are + displayed nicely. + +RepoType: git +Repo: https://github.com/fabmazz/triesteinbus + +Builds: + - versionName: 0.1-alpha + versionCode: 1 + commit: '1308344' + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 0.1-alpha +CurrentVersionCode: 1 diff --git a/metadata/it.faerb.crond.txt b/metadata/it.faerb.crond.txt deleted file mode 100644 index 77b5dfb935..0000000000 --- a/metadata/it.faerb.crond.txt +++ /dev/null @@ -1,54 +0,0 @@ -Categories:System -License:MIT -Author Name:Fabian Klemp -Web Site: -Source Code:https://github.com/faerbit/android-crond -Issue Tracker:https://github.com/faerbit/android-crond/issues -Changelog:https://github.com/Faerbit/android-crond/blob/HEAD/Changelog.md - -Name:crond -Auto Name:${applicationLabel} -Summary:Schedules scripts -Description: -Simple android app which implements crond using AlarmManager. - -Schedules all scripts in regular intervals as defined by the crontab file. The -syntax is the same as on any UNIX system and can be looked up on the internet. -You need to edit the crontab file using another app or adb. Always open the app -after making changes to the crontab file to apply them. -. - -Requires Root:yes - -Repo Type:git -Repo:https://github.com/faerbit/android-crond - -Build:v1.2.6,10 - commit=v1.2.6 - subdir=app - gradle=yes - -Build:v1.2.8,12 - commit=v1.2.8 - subdir=app - gradle=yes - -Build:v1.2.9,13 - commit=v1.2.9 - subdir=app - gradle=yes - -Build:v1.2.11,15 - commit=v1.2.11 - subdir=app - gradle=yes - -Build:v1.2.12,16 - commit=v1.2.12 - subdir=app - gradle=yes - -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:v1.2.12 -Current Version Code:16 diff --git a/metadata/it.faerb.crond.yml b/metadata/it.faerb.crond.yml new file mode 100644 index 0000000000..86ea000a03 --- /dev/null +++ b/metadata/it.faerb.crond.yml @@ -0,0 +1,64 @@ +Categories: + - System +License: MIT +AuthorName: Fabian Klemp +SourceCode: https://github.com/faerbit/android-crond +IssueTracker: https://github.com/faerbit/android-crond/issues +Changelog: https://github.com/Faerbit/android-crond/blob/HEAD/Changelog.md + +Name: crond +AutoName: ${applicationLabel} +Summary: Schedules scripts +Description: |- + Simple android app which implements crond using AlarmManager. + + Schedules all scripts in regular intervals as defined by the crontab file. The + syntax is the same as on any UNIX system and can be looked up on the internet. + You need to edit the crontab file using another app or adb. Always open the app + after making changes to the crontab file to apply them. + +RequiresRoot: 'yes' + +RepoType: git +Repo: https://github.com/faerbit/android-crond + +Builds: + - versionName: v1.2.6 + versionCode: 10 + commit: v1.2.6 + subdir: app + gradle: + - yes + + - versionName: v1.2.8 + versionCode: 12 + commit: v1.2.8 + subdir: app + gradle: + - yes + + - versionName: v1.2.9 + versionCode: 13 + commit: v1.2.9 + subdir: app + gradle: + - yes + + - versionName: v1.2.11 + versionCode: 15 + commit: v1.2.11 + subdir: app + gradle: + - yes + + - versionName: v1.2.12 + versionCode: 16 + commit: v1.2.12 + subdir: app + gradle: + - yes + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: v1.2.12 +CurrentVersionCode: 16 diff --git a/metadata/it.greenaddress.cordova.txt b/metadata/it.greenaddress.cordova.txt deleted file mode 100644 index 13fa472331..0000000000 --- a/metadata/it.greenaddress.cordova.txt +++ /dev/null @@ -1,221 +0,0 @@ -Categories:Money -License:LGPL-2.1-only -Web Site:https://greenaddress.it -Source Code:https://github.com/greenaddress/WalletCordova -Issue Tracker:https://github.com/greenaddress/WalletCordova/issues - -Auto Name:GreenAddress.It -Summary:GreenAddress client -Description: -Wallet that uses multisig to improve security (adding 2 factor for instance or -limits) and Hierarchical Deterministic addresses (see -[https://en.bitcoin.it/wiki/BIP_0032 BIP32]). - -It offers the advantages of a web wallet: - -* Ubiquitously available -* Social/email/sms integration -* Two factor authentication -* Transactions limits/restrictions -* Greenaddress instant transaction - -and the advantages of a local software wallet like Electrum: - -* Mnemonic seed backup once and forget -* Your private keys are never on the server, not even encrypted -* No long wait to synchronize the full client with the Bitcoin blockchain - -See [https://greenaddress.it their website] and [https://greenaddress.it/faq -their FAQ] for more information. - -Supports NFC for login and QR code scanning for login and transactions. -. - -Repo Type:git -Repo:https://github.com/greenaddress/WalletCordova - -Build:0.0.35,35 - commit=0.0.35 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.38,38 - commit=0.0.38 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.43,43 - commit=0.0.43 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.44,44 - commit=0.0.44 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.45,45 - commit=0.0.45 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.46,46 - commit=0.0.46 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.48,48 - commit=0.0.48 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.49,49 - commit=0.0.49 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.50,50 - commit=0.0.50 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.52,52 - commit=0.0.52 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.53,53 - commit=0.0.53 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.54,54 - commit=0.0.54 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.55,55 - commit=0.0.55 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.56,56 - commit=0.0.56 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.58,58 - commit=0.0.58 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.60,60 - commit=0.0.60 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.61,61 - commit=0.0.61 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.63,63 - commit=0.0.63 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.64,64 - commit=0.0.64 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.66,66 - commit=0.0.66 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.67,67 - commit=0.0.67 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.68,68 - commit=0.0.68 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.69,69 - commit=0.0.69 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.71,71 - commit=0.0.71 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Build:0.0.72,72 - commit=0.0.72 - subdir=platforms/android - submodules=yes - scandelete=plugins/org.apache.cordova.vibration/src/blackberry10,platforms/android/libs/armeabi/libscrypt.so,platforms/android/scrypt/src - build=./prepare_fdroid.sh - -Maintainer Notes: -scandelete libscrypt.so - it is built by F-Droid via prepare_fdroid.sh, -but it is still in GreenAddress repo for users who don't want to use NDK, -so it needs to be removed before building to pass scanning. -. - -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:0.0.72 -Current Version Code:72 diff --git a/metadata/it.greenaddress.cordova.yml b/metadata/it.greenaddress.cordova.yml new file mode 100644 index 0000000000..8b4d5ff7cf --- /dev/null +++ b/metadata/it.greenaddress.cordova.yml @@ -0,0 +1,324 @@ +Categories: + - Money +License: LGPL-2.1-only +WebSite: https://greenaddress.it +SourceCode: https://github.com/greenaddress/WalletCordova +IssueTracker: https://github.com/greenaddress/WalletCordova/issues +Changelog: https://github.com/greenaddress/WalletCordova/releases + +AutoName: GreenAddress.It +Summary: GreenAddress client +Description: |- + '''NOTE:''' This app is no longer maintained (its source repo was archived). + + Wallet that uses multisig to improve security (adding 2 factor for instance or + limits) and Hierarchical Deterministic addresses (see + [https://en.bitcoin.it/wiki/BIP_0032 BIP32]). + + It offers the advantages of a web wallet: + + * Ubiquitously available + * Social/email/sms integration + * Two factor authentication + * Transactions limits/restrictions + * Greenaddress instant transaction + + and the advantages of a local software wallet like Electrum: + + * Mnemonic seed backup once and forget + * Your private keys are never on the server, not even encrypted + * No long wait to synchronize the full client with the Bitcoin blockchain + + See [https://greenaddress.it their website] and [https://greenaddress.it/faq + their FAQ] for more information. + + Supports NFC for login and QR code scanning for login and transactions. + +RepoType: git +Repo: https://github.com/greenaddress/WalletCordova + +Builds: + - versionName: 0.0.35 + versionCode: 35 + commit: 0.0.35 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.38 + versionCode: 38 + commit: 0.0.38 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.43 + versionCode: 43 + commit: 0.0.43 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.44 + versionCode: 44 + commit: 0.0.44 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.45 + versionCode: 45 + commit: 0.0.45 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.46 + versionCode: 46 + commit: 0.0.46 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.48 + versionCode: 48 + commit: 0.0.48 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.49 + versionCode: 49 + commit: 0.0.49 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.50 + versionCode: 50 + commit: 0.0.50 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.52 + versionCode: 52 + commit: 0.0.52 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.53 + versionCode: 53 + commit: 0.0.53 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.54 + versionCode: 54 + commit: 0.0.54 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.55 + versionCode: 55 + commit: 0.0.55 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.56 + versionCode: 56 + commit: 0.0.56 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.58 + versionCode: 58 + commit: 0.0.58 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.60 + versionCode: 60 + commit: 0.0.60 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.61 + versionCode: 61 + commit: 0.0.61 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.63 + versionCode: 63 + commit: 0.0.63 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.64 + versionCode: 64 + commit: 0.0.64 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.66 + versionCode: 66 + commit: 0.0.66 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.67 + versionCode: 67 + commit: 0.0.67 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.68 + versionCode: 68 + commit: 0.0.68 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.69 + versionCode: 69 + commit: 0.0.69 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.71 + versionCode: 71 + commit: 0.0.71 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + + - versionName: 0.0.72 + versionCode: 72 + commit: 0.0.72 + subdir: platforms/android + submodules: true + scandelete: + - plugins/org.apache.cordova.vibration/src/blackberry10 + - platforms/android/libs/armeabi/libscrypt.so + - platforms/android/scrypt/src + build: ./prepare_fdroid.sh + +MaintainerNotes: |- + scandelete libscrypt.so - it is built by F-Droid via prepare_fdroid.sh, + but it is still in GreenAddress repo for users who don't want to use NDK, + so it needs to be removed before building to pass scanning. + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 0.0.72 +CurrentVersionCode: 72 diff --git a/metadata/it.lucci.cm.greyscaletheme.txt b/metadata/it.lucci.cm.greyscaletheme.txt deleted file mode 100644 index f8435b38fb..0000000000 --- a/metadata/it.lucci.cm.greyscaletheme.txt +++ /dev/null @@ -1,64 +0,0 @@ -Categories:Theming -License:CC-BY-4.0 -Author Email:gabrielelucci.0@gmail.com -Web Site:https://github.com/gabrielelucci/greyscale-cmte/blob/HEAD/README.md -Source Code:https://github.com/gabrielelucci/greyscale-cmte -Issue Tracker:https://github.com/gabrielelucci/greyscale-cmte/issues - -Auto Name:Greyscale -Summary:A simple AOSP-like theme for CyanogenMod -Description: -Greyscale is a very simple and minimal theme, based on Material guidelines. The -color scheme is entirely composed by shades of Material Grey. - -What's inlcuded: - -* Status bar -* Navigation bar -* Style -* Wallpaper (by Unsplash) - -Apps themed: - -* Framework -* Settings -* AOSP Keyboard -* Google Keyboard -* Trebuchet -* Downloads Provider -* Calculator -* CMUpdater -* Theme Chooser -* AudioFX - -And a lot more coming soon! -. - -Repo Type:git -Repo:https://github.com/gabrielelucci/greyscale-cmte.git - -Build:r12,112 - commit=5df94b1ac1fdb7847fe8a1e56af1ae521bdf05fa - subdir=theme - gradle=yes - -Build:r13,113 - commit=r13 - subdir=theme - gradle=yes - -Build:r14,114 - commit=r14 - subdir=theme - gradle=yes - -Build:v15,115 - commit=v15 - subdir=theme - gradle=yes - -Archive Policy:2 versions -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:v15 -Current Version Code:115 diff --git a/metadata/it.lucci.cm.greyscaletheme.yml b/metadata/it.lucci.cm.greyscaletheme.yml new file mode 100644 index 0000000000..051361c558 --- /dev/null +++ b/metadata/it.lucci.cm.greyscaletheme.yml @@ -0,0 +1,76 @@ +Categories: + - Theming +License: CC-BY-4.0 +AuthorEmail: gabrielelucci.0@gmail.com +WebSite: https://github.com/gabrielelucci/greyscale-cmte/blob/HEAD/README.md +SourceCode: 'https://github.com/gabrielelucci/greyscale-cmte ' +IssueTracker: https://github.com/gabrielelucci/greyscale-cmte/issues +Changelog: https://github.com/gabrielelucci/greyscale-cmte/releases + +AutoName: Greyscale +Summary: A simple AOSP-like theme for CyanogenMod +Description: |- + '''NOTE:''' This app is no longer maintained (its source repo was archived). + + Greyscale is a very simple and minimal theme, based on Material guidelines. The + color scheme is entirely composed by shades of Material Grey. + + What’s inlcuded: + + * Status bar + * Navigation bar + * Style + * Wallpaper (by Unsplash) + + Apps themed: + + * Framework + * Settings + * AOSP Keyboard + * Google Keyboard + * Trebuchet + * Downloads Provider + * Calculator + * CMUpdater + * Theme Chooser + * AudioFX + + And a lot more coming soon! + +RepoType: git +Repo: https://github.com/gabrielelucci/greyscale-cmte.git + +Builds: + - versionName: r12 + versionCode: 112 + commit: 5df94b1ac1fdb7847fe8a1e56af1ae521bdf05fa + subdir: theme + gradle: + - yes + + - versionName: r13 + versionCode: 113 + commit: r13 + subdir: theme + gradle: + - yes + + - versionName: r14 + versionCode: 114 + commit: r14 + subdir: theme + gradle: + - yes + + - versionName: v15 + versionCode: 115 + commit: v15 + subdir: theme + gradle: + - yes + +ArchivePolicy: 2 versions +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: v15 +CurrentVersionCode: 115 diff --git a/metadata/it.reyboz.bustorino.txt b/metadata/it.reyboz.bustorino.txt deleted file mode 100644 index f06c6cf054..0000000000 --- a/metadata/it.reyboz.bustorino.txt +++ /dev/null @@ -1,123 +0,0 @@ -Categories:Navigation -License:GPL-3.0-or-later -Author Name:Valerio Bozzolan -Author Email:gnu@linux.it -Web Site:https://launchpad.net/bus-torino -Source Code:https://code.launchpad.net/bus-torino -Issue Tracker:https://bugs.launchpad.net/bus-torino -Donate:https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=V4KHUSUL9NLYY -Bitcoin:16oHee3jeENnN6fPxFq6LpNP6SZG9rimRD - -Auto Name:BusTO - -Repo Type:bzr -Repo:lp:bus-torino - -Build:1.1,2 - commit=10 - srclibs=1:appcompat@v7 - -Build:1.2,3 - commit=17 - srclibs=1:appcompat@v7 - -Build:1.3,4 - commit=20 - patch=bustorino-gradle.patch - gradle=yes - -Build:1.4,5 - commit=24 - gradle=yes - prebuild=mv build.grandle build.gradle - -Build:1.4.1,6 - commit=28 - gradle=yes - -Build:1.4.2,7 - commit=1.4.2 - gradle=yes - -Build:1.4.3,8 - commit=1.4.3 - gradle=yes - -Build:1.6.0,9 - commit=1.6.0 - gradle=yes - -Build:1.6.4,10 - commit=1.6.4 - gradle=yes - -Build:1.6.5,11 - commit=1.6.5 - gradle=yes - -Build:1.6.6,12 - commit=1.6.6 - gradle=yes - -Build:1.6.7,13 - commit=1.6.7 - gradle=yes - -Build:1.7.0,14 - commit=1.7.0 - gradle=yes - -Build:1.7.0.3,15 - commit=1.7.0.3 - gradle=yes - -Build:1.7.0.4,16 - commit=1.7.0.4 - gradle=yes - -Build:1.7.1,17 - commit=1.7.1 - gradle=yes - -Build:1.7.2,18 - commit=1.7.2 - gradle=yes - -Build:1.8,19 - commit=1.8 - gradle=yes - -Build:1.8.5,20 - commit=1.8.5 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Build:1.8.6,21 - commit=1.8.6 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Build:1.8.7,22 - commit=1.8.7 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Build:1.9.0,23 - commit=1.9.0 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Build:1.9.1,24 - commit=1.9.1 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Build:1.9.2,25 - commit=1.9.2 - gradle=yes - prebuild=sed -i -e '/mavenCentral/ajcenter()' build.gradle - -Auto Update Mode:Version %v -Update Check Mode:Tags -Current Version:1.9.2 -Current Version Code:25 diff --git a/metadata/it.reyboz.bustorino.yml b/metadata/it.reyboz.bustorino.yml new file mode 100644 index 0000000000..30578be657 --- /dev/null +++ b/metadata/it.reyboz.bustorino.yml @@ -0,0 +1,174 @@ +Categories: + - Navigation +License: GPL-3.0-or-later +AuthorName: Valerio Bozzolan +AuthorEmail: gnu@linux.it +WebSite: https://launchpad.net/bus-torino +SourceCode: https://code.launchpad.net/bus-torino +IssueTracker: https://bugs.launchpad.net/bus-torino +Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=V4KHUSUL9NLYY +Bitcoin: 16oHee3jeENnN6fPxFq6LpNP6SZG9rimRD + +AutoName: BusTO + +RepoType: bzr +Repo: lp:bus-torino + +Builds: + - versionName: '1.1' + versionCode: 2 + commit: '10' + srclibs: + - 1:appcompat@v7 + + - versionName: '1.2' + versionCode: 3 + commit: '17' + srclibs: + - 1:appcompat@v7 + + - versionName: '1.3' + versionCode: 4 + commit: '20' + patch: + - bustorino-gradle.patch + gradle: + - yes + + - versionName: '1.4' + versionCode: 5 + commit: '24' + gradle: + - yes + prebuild: mv build.grandle build.gradle + + - versionName: 1.4.1 + versionCode: 6 + commit: '28' + gradle: + - yes + + - versionName: 1.4.2 + versionCode: 7 + commit: 1.4.2 + gradle: + - yes + + - versionName: 1.4.3 + versionCode: 8 + commit: 1.4.3 + gradle: + - yes + + - versionName: 1.6.0 + versionCode: 9 + commit: 1.6.0 + gradle: + - yes + + - versionName: 1.6.4 + versionCode: 10 + commit: 1.6.4 + gradle: + - yes + + - versionName: 1.6.5 + versionCode: 11 + commit: 1.6.5 + gradle: + - yes + + - versionName: 1.6.6 + versionCode: 12 + commit: 1.6.6 + gradle: + - yes + + - versionName: 1.6.7 + versionCode: 13 + commit: 1.6.7 + gradle: + - yes + + - versionName: 1.7.0 + versionCode: 14 + commit: 1.7.0 + gradle: + - yes + + - versionName: 1.7.0.3 + versionCode: 15 + commit: 1.7.0.3 + gradle: + - yes + + - versionName: 1.7.0.4 + versionCode: 16 + commit: 1.7.0.4 + gradle: + - yes + + - versionName: 1.7.1 + versionCode: 17 + commit: 1.7.1 + gradle: + - yes + + - versionName: 1.7.2 + versionCode: 18 + commit: 1.7.2 + gradle: + - yes + + - versionName: '1.8' + versionCode: 19 + commit: '1.8' + gradle: + - yes + + - versionName: 1.8.5 + versionCode: 20 + commit: 1.8.5 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + + - versionName: 1.8.6 + versionCode: 21 + commit: 1.8.6 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + + - versionName: 1.8.7 + versionCode: 22 + commit: 1.8.7 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + + - versionName: 1.9.0 + versionCode: 23 + commit: 1.9.0 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + + - versionName: 1.9.1 + versionCode: 24 + commit: 1.9.1 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + + - versionName: 1.9.2 + versionCode: 25 + commit: 1.9.2 + gradle: + - yes + prebuild: sed -i -e '/mavenCentral/ajcenter()' build.gradle + +AutoUpdateMode: Version %v +UpdateCheckMode: Tags +CurrentVersion: 1.9.2 +CurrentVersionCode: 25