Automate editing of store listing.

housekeeping/remove-warnings
Antoine POPINEAU 2019-10-30 21:58:24 +01:00
rodzic 07d00ee69c
commit 5c1498bb95
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: A78AC64694F84063
15 zmienionych plików z 27 dodań i 4 usunięć

Wyświetl plik

@ -0,0 +1 @@
apognu@gmail.com

Wyświetl plik

@ -0,0 +1 @@
en-US

Wyświetl plik

@ -0,0 +1,6 @@
Otter is a simple music player that allows you to stream the audio content of your self-hosted Funkwhale pod.
This app requires an account on a Funkwhale instance to work.
Source code : https://github.com/apognu/otter
Funkwhale : https://funkwhale.audio

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 57 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 20 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 443 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.4 MiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 652 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 822 KiB

Wyświetl plik

@ -0,0 +1 @@
Music player for Funkwhale

Wyświetl plik

@ -0,0 +1 @@
Otter for Funkwhale

Wyświetl plik

@ -0,0 +1,6 @@
Otter est un lecteur de musique basique qui vous permet de profiter du contenu audio de votre instance Funkwhale.
Cette application nécessite un compte sur un instance Funkwhale pour fonctionner.
Code source : https://github.com/apognu/otter
Funkwhale : https://funkwhale.audio

Wyświetl plik

@ -0,0 +1 @@
Lecteur de musique pour Funkwhale

Wyświetl plik

@ -0,0 +1 @@
Otter pour Funkwhale

Wyświetl plik

@ -1,7 +1,7 @@
#!/bin/sh
if [ $# -ne 2 ]; then
echo 'Usage: ./publish.sh <TAG> <MESSAGE>' >&2
if [ $# -lt 1 ] || [ $# -gt 2 ]; then
echo 'Usage: ./publish.sh TAG [MESSAGE]' >&2
exit 1
fi
@ -18,8 +18,13 @@ if [ "$(git tag -l | grep $TAG)" != '' ]; then
exit 1
fi
git tag -a -s -m "$MESSAGE" "$TAG"
if [ "$MESSAGE" == '']; then
git tag -a -s -m "$MESSAGE" "$TAG"
else
git tag -a -s "$TAG"
fi
git push --tags
./gradlew publishListing
./gradlew publish