Prepared 1.0.15.

This commit is contained in:
Antoine POPINEAU 2019-11-17 00:59:11 +01:00
parent 4d9fb1c53c
commit 09ada772e6
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
3 changed files with 4 additions and 4 deletions

View File

@ -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.

View File

@ -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.

View File

@ -13,12 +13,12 @@ fi
TAG="$1" TAG="$1"
MESSAGE="$2" MESSAGE="$2"
if [ "$(git tag -l | grep $TAG)" != '' ]; then if [ "$(git tag -l | grep -e "^$TAG$")" != '' ]; then
echo "ERROR: tag $TAG already exists." >&2 echo "ERROR: tag $TAG already exists." >&2
exit 1 exit 1
fi fi
if [ "$MESSAGE" == '' ]; then if [ "$MESSAGE" != '' ]; then
git tag -a -s -m "$MESSAGE" "$TAG" git tag -a -s -m "$MESSAGE" "$TAG"
else else
git tag -a -s "$TAG" git tag -a -s "$TAG"