mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11: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:
|
||||
- tools
|
||||
- android-26
|
||||
- build-tools-26.0.1
|
||||
- build-tools-26.0.2
|
||||
- platform-tools
|
||||
- build-tools-26.0.1
|
||||
- build-tools-26.0.2
|
||||
- android-26
|
||||
- extra-android-m2repository
|
||||
|
||||
|
|
|
@ -25,13 +25,12 @@ echo "
|
|||
Enter Changelog for $version
|
||||
-----------------------------
|
||||
"
|
||||
changelog_file="/tmp/changelog.tmp"
|
||||
touch
|
||||
${DEFAULT_EDITOR} $changelog_file
|
||||
changelog_file="build/changelog.tmp"
|
||||
touch ${changelog_file}
|
||||
nano ${changelog_file}
|
||||
|
||||
changelog=`cat $changelog_file`
|
||||
rm $changelog_file
|
||||
echo $changelog > "src/main/play/en-GB/whatsnew"
|
||||
changelog=`cat ${changelog_file}`
|
||||
mv ${changelog_file} "src/main/play/en-GB/whatsnew"
|
||||
|
||||
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
|
||||
|
||||
# Upload apk and listing to Google Play
|
||||
./gradlew publishRelease
|
||||
SIGNING_PASSWORD=$password ./gradlew publishRelease
|
||||
|
||||
echo "
|
||||
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
- sort folders and devices (@nutomic)
|
||||
- change default compression to metadata only (@nutomic)
|
||||
- fixed chmod problem with syncthing binary (@zillode)
|
||||
- fixed dialog background on pre-Lollipop (@veniosg)
|
||||
- various design improvements (@veniosg)
|
||||
- imported translations
|
||||
- updated syncthing to v0.11.22
|
||||
- raise minimum Android version to ICS 4.0 (@nutomic)
|
||||
- fixed root related issues {@flipreverse)
|
||||
- lots of bug fixes, better working run conditions (@nutomic)
|
||||
- show button to open logs if Syncthing isn't loading (@nutomic)
|
||||
- added "edit ignores" button (@nutomic)
|
||||
- updated Syncthing to v0.14.39-rc.1
|
||||
- updated translations
|
||||
|
||||
|
|
Loading…
Reference in a new issue