mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
88 lines
2.1 KiB
Bash
Executable file
88 lines
2.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
NEW_VERSION_NAME=$1
|
|
OLD_VERSION_NAME=$(grep "versionName" "build.gradle" | awk '{print $2}')
|
|
if [[ -z ${NEW_VERSION_NAME} ]]
|
|
then
|
|
echo "New version name is empty. Please set a new version. Current version: $OLD_VERSION_NAME"
|
|
exit
|
|
fi
|
|
|
|
echo "
|
|
|
|
Checking for Syncthing Update
|
|
-----------------------------
|
|
"
|
|
PROJECT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "go/src/github.com/syncthing/syncthing/"
|
|
git fetch
|
|
CURRENT_TAG=$(git describe)
|
|
LATEST_TAG=$(git tag --sort=taggerdate | awk '!/rc/' | tail -1)
|
|
if [ ${CURRENT_TAG} != ${LATEST_TAG} ]
|
|
then
|
|
git checkout -f ${LATEST_TAG}
|
|
cd ${PROJECT_DIR}
|
|
git add "go/src/github.com/syncthing/syncthing/"
|
|
git commit -m "Updated Syncthing to $LATEST_TAG"
|
|
./gradlew cleanNative buildNative
|
|
fi
|
|
cd ${PROJECT_DIR}
|
|
|
|
|
|
echo "
|
|
|
|
Updating Translations
|
|
-----------------------------
|
|
"
|
|
tx push -s
|
|
# Force push/pull to make sure this is executed. Apparently tx only compares timestamps, not file
|
|
# contents. So if a file was `touch`ed, it won't be updated by default.
|
|
tx pull -a -f
|
|
./gradlew deleteUnsupportedPlayTranslations
|
|
git add -A "src/main/play/"
|
|
git add -A "src/main/res/values-*/strings.xml"
|
|
if ! git diff --cached --exit-code;
|
|
then
|
|
git commit -m "Imported translations"
|
|
fi
|
|
|
|
|
|
echo "
|
|
|
|
Running Lint
|
|
-----------------------------
|
|
"
|
|
./gradlew clean lintVitalRelease
|
|
|
|
echo "
|
|
|
|
Enter Changelog for $NEW_VERSION_NAME
|
|
-----------------------------
|
|
"
|
|
changelog_file="build/changelog.tmp"
|
|
touch ${changelog_file}
|
|
nano ${changelog_file}
|
|
|
|
cat ${changelog_file}
|
|
mv ${changelog_file} "src/main/play/en-GB/whatsnew"
|
|
|
|
echo "
|
|
|
|
Updating Version
|
|
-----------------------------
|
|
"
|
|
OLD_VERSION_CODE=$(grep "versionCode" "build.gradle" -m 1 | awk '{print $2}')
|
|
NEW_VERSION_CODE=$(($OLD_VERSION_CODE + 1))
|
|
sed -i "s/versionCode $OLD_VERSION_CODE/versionCode $NEW_VERSION_CODE/" build.gradle
|
|
|
|
OLD_VERSION_NAME=$(grep "versionName" "build.gradle" | awk '{print $2}')
|
|
sed -i "s/$OLD_VERSION_NAME/\"$1\"/" build.gradle
|
|
git add "build.gradle" "src/main/play/en-GB/whatsnew"
|
|
git commit -m "Bumped version to $NEW_VERSION_NAME"
|
|
git tag ${NEW_VERSION_NAME}
|
|
|
|
echo "
|
|
Update ready.
|
|
"
|