diff --git a/app/src/main/play/contact-email.txt b/app/src/main/play/contact-email.txt new file mode 100644 index 0000000..745dbee --- /dev/null +++ b/app/src/main/play/contact-email.txt @@ -0,0 +1 @@ +apognu@gmail.com diff --git a/app/src/main/play/default-language.txt b/app/src/main/play/default-language.txt new file mode 100644 index 0000000..beb9970 --- /dev/null +++ b/app/src/main/play/default-language.txt @@ -0,0 +1 @@ +en-US diff --git a/app/src/main/play/listings/en-US/full-description.txt b/app/src/main/play/listings/en-US/full-description.txt new file mode 100644 index 0000000..344d5ff --- /dev/null +++ b/app/src/main/play/listings/en-US/full-description.txt @@ -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 diff --git a/app/src/main/play/listings/en-US/graphics/feature-graphic/1.png b/app/src/main/play/listings/en-US/graphics/feature-graphic/1.png new file mode 100644 index 0000000..4f5ff1d Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/feature-graphic/1.png differ diff --git a/app/src/main/play/listings/en-US/graphics/icon/1.png b/app/src/main/play/listings/en-US/graphics/icon/1.png new file mode 100644 index 0000000..34be3a2 Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/icon/1.png differ diff --git a/app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png b/app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png new file mode 100644 index 0000000..8fd2180 Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/phone-screenshots/1.png differ diff --git a/app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png b/app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png new file mode 100644 index 0000000..edd2e01 Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/phone-screenshots/2.png differ diff --git a/app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png b/app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png new file mode 100644 index 0000000..6ca4d9c Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/phone-screenshots/3.png differ diff --git a/app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png b/app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png new file mode 100644 index 0000000..1be543b Binary files /dev/null and b/app/src/main/play/listings/en-US/graphics/phone-screenshots/4.png differ diff --git a/app/src/main/play/listings/en-US/short-description.txt b/app/src/main/play/listings/en-US/short-description.txt new file mode 100644 index 0000000..99c48e9 --- /dev/null +++ b/app/src/main/play/listings/en-US/short-description.txt @@ -0,0 +1 @@ +Music player for Funkwhale diff --git a/app/src/main/play/listings/en-US/title.txt b/app/src/main/play/listings/en-US/title.txt new file mode 100644 index 0000000..ee47336 --- /dev/null +++ b/app/src/main/play/listings/en-US/title.txt @@ -0,0 +1 @@ +Otter for Funkwhale diff --git a/app/src/main/play/listings/fr-FR/full-description.txt b/app/src/main/play/listings/fr-FR/full-description.txt new file mode 100644 index 0000000..6fa23a2 --- /dev/null +++ b/app/src/main/play/listings/fr-FR/full-description.txt @@ -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 diff --git a/app/src/main/play/listings/fr-FR/short-description.txt b/app/src/main/play/listings/fr-FR/short-description.txt new file mode 100644 index 0000000..c4a4f1a --- /dev/null +++ b/app/src/main/play/listings/fr-FR/short-description.txt @@ -0,0 +1 @@ +Lecteur de musique pour Funkwhale \ No newline at end of file diff --git a/app/src/main/play/listings/fr-FR/title.txt b/app/src/main/play/listings/fr-FR/title.txt new file mode 100644 index 0000000..a1f9854 --- /dev/null +++ b/app/src/main/play/listings/fr-FR/title.txt @@ -0,0 +1 @@ +Otter pour Funkwhale \ No newline at end of file diff --git a/publish.sh b/publish.sh index 35f9671..99104e4 100755 --- a/publish.sh +++ b/publish.sh @@ -1,7 +1,7 @@ #!/bin/sh -if [ $# -ne 2 ]; then - echo 'Usage: ./publish.sh ' >&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 -