mirror of
https://github.com/apognu/otter
synced 2025-02-09 15:58:39 +01:00
Automate editing of store listing.
This commit is contained in:
parent
07d00ee69c
commit
5c1498bb95
1
app/src/main/play/contact-email.txt
Normal file
1
app/src/main/play/contact-email.txt
Normal file
@ -0,0 +1 @@
|
||||
apognu@gmail.com
|
1
app/src/main/play/default-language.txt
Normal file
1
app/src/main/play/default-language.txt
Normal file
@ -0,0 +1 @@
|
||||
en-US
|
6
app/src/main/play/listings/en-US/full-description.txt
Normal file
6
app/src/main/play/listings/en-US/full-description.txt
Normal 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
|
BIN
app/src/main/play/listings/en-US/graphics/feature-graphic/1.png
Normal file
BIN
app/src/main/play/listings/en-US/graphics/feature-graphic/1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
BIN
app/src/main/play/listings/en-US/graphics/icon/1.png
Normal file
BIN
app/src/main/play/listings/en-US/graphics/icon/1.png
Normal file
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 |
1
app/src/main/play/listings/en-US/short-description.txt
Normal file
1
app/src/main/play/listings/en-US/short-description.txt
Normal file
@ -0,0 +1 @@
|
||||
Music player for Funkwhale
|
1
app/src/main/play/listings/en-US/title.txt
Normal file
1
app/src/main/play/listings/en-US/title.txt
Normal file
@ -0,0 +1 @@
|
||||
Otter for Funkwhale
|
6
app/src/main/play/listings/fr-FR/full-description.txt
Normal file
6
app/src/main/play/listings/fr-FR/full-description.txt
Normal 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
|
1
app/src/main/play/listings/fr-FR/short-description.txt
Normal file
1
app/src/main/play/listings/fr-FR/short-description.txt
Normal file
@ -0,0 +1 @@
|
||||
Lecteur de musique pour Funkwhale
|
1
app/src/main/play/listings/fr-FR/title.txt
Normal file
1
app/src/main/play/listings/fr-FR/title.txt
Normal file
@ -0,0 +1 @@
|
||||
Otter pour Funkwhale
|
13
publish.sh
13
publish.sh
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user