mirror of
https://github.com/apognu/otter
synced 2025-02-03 22:57:33 +01:00
Prepared 1.0.15.
This commit is contained in:
parent
4d9fb1c53c
commit
09ada772e6
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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…
x
Reference in New Issue
Block a user