Skip to content

Commit

Permalink
Prepared 1.0.15.
Browse files Browse the repository at this point in the history
  • Loading branch information
apognu committed Nov 17, 2019
1 parent 4d9fb1c commit 09ada77
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/src/main/play/release-notes/en-US/beta.txt
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion app/src/main/play/release-notes/fr-FR/beta.txt
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 09ada77

Please sign in to comment.