Automate editing of store listing.

This commit is contained in:
Antoine POPINEAU 2019-10-30 21:58:24 +01:00
parent 07d00ee69c
commit 5c1498bb95
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
15 changed files with 27 additions and 4 deletions

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 KiB

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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