mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-30 00:01:19 +00:00
Fix publish script and Travis build
This commit is contained in:
parent
7171402cbe
commit
0b5649be98
3 changed files with 17 additions and 17 deletions
|
@ -7,9 +7,9 @@ android:
|
||||||
components:
|
components:
|
||||||
- tools
|
- tools
|
||||||
- android-26
|
- android-26
|
||||||
- build-tools-26.0.1
|
- build-tools-26.0.2
|
||||||
- platform-tools
|
- platform-tools
|
||||||
- build-tools-26.0.1
|
- build-tools-26.0.2
|
||||||
- android-26
|
- android-26
|
||||||
- extra-android-m2repository
|
- extra-android-m2repository
|
||||||
|
|
||||||
|
|
|
@ -25,13 +25,12 @@ echo "
|
||||||
Enter Changelog for $version
|
Enter Changelog for $version
|
||||||
-----------------------------
|
-----------------------------
|
||||||
"
|
"
|
||||||
changelog_file="/tmp/changelog.tmp"
|
changelog_file="build/changelog.tmp"
|
||||||
touch
|
touch ${changelog_file}
|
||||||
${DEFAULT_EDITOR} $changelog_file
|
nano ${changelog_file}
|
||||||
|
|
||||||
changelog=`cat $changelog_file`
|
changelog=`cat ${changelog_file}`
|
||||||
rm $changelog_file
|
mv ${changelog_file} "src/main/play/en-GB/whatsnew"
|
||||||
echo $changelog > "src/main/play/en-GB/whatsnew"
|
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
|
@ -39,12 +38,12 @@ Push to Google Play
|
||||||
-----------------------------
|
-----------------------------
|
||||||
"
|
"
|
||||||
|
|
||||||
read -p "Enter signing password: " password
|
read -s -p "Enter signing password: " password
|
||||||
|
|
||||||
SIGNING_PASSWORD=$password ./gradlew assembleRelease
|
SIGNING_PASSWORD=$password ./gradlew assembleRelease
|
||||||
|
|
||||||
# Upload apk and listing to Google Play
|
# Upload apk and listing to Google Play
|
||||||
./gradlew publishRelease
|
SIGNING_PASSWORD=$password ./gradlew publishRelease
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
- sort folders and devices (@nutomic)
|
- raise minimum Android version to ICS 4.0 (@nutomic)
|
||||||
- change default compression to metadata only (@nutomic)
|
- fixed root related issues {@flipreverse)
|
||||||
- fixed chmod problem with syncthing binary (@zillode)
|
- lots of bug fixes, better working run conditions (@nutomic)
|
||||||
- fixed dialog background on pre-Lollipop (@veniosg)
|
- show button to open logs if Syncthing isn't loading (@nutomic)
|
||||||
- various design improvements (@veniosg)
|
- added "edit ignores" button (@nutomic)
|
||||||
- imported translations
|
- updated Syncthing to v0.14.39-rc.1
|
||||||
- updated syncthing to v0.11.22
|
- updated translations
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue