Browse Source

Automate editing of store listing.

housekeeping/remove-warnings
Antoine POPINEAU 5 years ago
parent
commit
5c1498bb95
No known key found for this signature in database
GPG Key ID: A78AC64694F84063
  1. 1
      app/src/main/play/contact-email.txt
  2. 1
      app/src/main/play/default-language.txt
  3. 6
      app/src/main/play/listings/en-US/full-description.txt
  4. BIN
      app/src/main/play/listings/en-US/graphics/feature-graphic/1.png
  5. BIN
      app/src/main/play/listings/en-US/graphics/icon/1.png
  6. BIN
      app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png
  7. BIN
      app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png
  8. BIN
      app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png
  9. BIN
      app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png
  10. 1
      app/src/main/play/listings/en-US/short-description.txt
  11. 1
      app/src/main/play/listings/en-US/title.txt
  12. 6
      app/src/main/play/listings/fr-FR/full-description.txt
  13. 1
      app/src/main/play/listings/fr-FR/short-description.txt
  14. 1
      app/src/main/play/listings/fr-FR/title.txt
  15. 13
      publish.sh

1
app/src/main/play/contact-email.txt

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

1
app/src/main/play/default-language.txt

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

6
app/src/main/play/listings/en-US/full-description.txt

@ -0,0 +1,6 @@ @@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
app/src/main/play/listings/en-US/graphics/icon/1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 443 KiB

BIN
app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 MiB

BIN
app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 652 KiB

BIN
app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 822 KiB

1
app/src/main/play/listings/en-US/short-description.txt

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

1
app/src/main/play/listings/en-US/title.txt

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

6
app/src/main/play/listings/fr-FR/full-description.txt

@ -0,0 +1,6 @@ @@ -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

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

1
app/src/main/play/listings/fr-FR/title.txt

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

13
publish.sh

@ -1,7 +1,7 @@ @@ -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 @@ -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…
Cancel
Save