Browse Source

Prepared 1.0.15.

housekeeping/remove-warnings
Antoine POPINEAU 5 years ago
parent
commit
09ada772e6
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
  1. 2
      app/src/main/play/release-notes/en-US/beta.txt
  2. 2
      app/src/main/play/release-notes/fr-FR/beta.txt
  3. 4
      publish.sh

2
app/src/main/play/release-notes/en-US/beta.txt

@ -1 +1 @@ @@ -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
app/src/main/play/release-notes/fr-FR/beta.txt

@ -1 +1 @@ @@ -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
publish.sh

@ -13,12 +13,12 @@ fi @@ -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"

Loading…
Cancel
Save