diff --git a/app/src/main/play/release-notes/en-US/beta.txt b/app/src/main/play/release-notes/en-US/beta.txt index 6a68709..8f75704 100644 --- a/app/src/main/play/release-notes/en-US/beta.txt +++ b/app/src/main/play/release-notes/en-US/beta.txt @@ -1 +1 @@ -This release adds better integration into WearOS devices media controls, a bug fix where search results not all appear on screen and some optimization to survive overzealous battery optimizers. +We fixed a blocking issue that would crash the app right after login. diff --git a/app/src/main/play/release-notes/fr-FR/beta.txt b/app/src/main/play/release-notes/fr-FR/beta.txt index 90910f1..9fda811 100644 --- a/app/src/main/play/release-notes/fr-FR/beta.txt +++ b/app/src/main/play/release-notes/fr-FR/beta.txt @@ -1 +1 @@ -Cette version ajoute une meilleure intégration dans les contrôles musicaux des appareils WearOS, une correction de bug où les résultats de recherche n'apparaissaient pas tous à l'écran et quelques optimisations pour survivre aux optimiseurs de batterie faisant preuve d'un peu trop de zèle. +Nous avons corrigé un bug où l'app crashait après le login. diff --git a/publish.sh b/publish.sh index c7af00e..81bb8eb 100755 --- a/publish.sh +++ b/publish.sh @@ -13,12 +13,12 @@ fi TAG="$1" MESSAGE="$2" -if [ "$(git tag -l | grep $TAG)" != '' ]; then +if [ "$(git tag -l | grep -e "^$TAG$")" != '' ]; then echo "ERROR: tag $TAG already exists." >&2 exit 1 fi -if [ "$MESSAGE" == '' ]; then +if [ "$MESSAGE" != '' ]; then git tag -a -s -m "$MESSAGE" "$TAG" else git tag -a -s "$TAG"