1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/funkwhale_ynh.git synced 2024-09-03 18:36:24 +02:00

Merge pull request #197 from YunoHost-Apps/testing

Fix updater
This commit is contained in:
yalh76 2023-01-25 03:44:54 +01:00 committed by GitHub
commit bbf9e7b170
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 14 deletions

View file

@ -16,7 +16,7 @@
# Fetching information
current_version=$(cat manifest.json | jq -j '.version|split("~")[0]')
# Some jq magic is needed, because the latest upstream release is not always the latest version (e.g. security patches for older versions)
version=$(curl --silent "https://dev.funkwhale.audio/api/v4/projects/17/repository/tags" | jq -r '.[] | select( .prerelease != true ) | .name' | sort -V | tail -1)
version=$(curl --silent "https://dev.funkwhale.audio/api/v4/projects/17/repository/tags" | jq -r '.[] | select( .prerelease != true )| select( .name | contains("start") or contains("rc") or contains("beta") or contains("alpha") | not ) | .name' | sort -V | tail -1)
assets=("https://dev.funkwhale.audio/funkwhale/funkwhale/-/jobs/artifacts/$version/download?job=build_api" "https://dev.funkwhale.audio/funkwhale/funkwhale/builds/artifacts/$version/download?job=build_front")
# Later down the script, we assume the version has only digits and dots

View file

@ -5,15 +5,15 @@ It shall NOT be edited by hand.
# Funkwhale pour YunoHost
[![Niveau d'intégration](https://dash.yunohost.org/integration/funkwhale.svg)](https://dash.yunohost.org/appci/app/funkwhale) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/funkwhale.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/funkwhale.maintain.svg)
[![Niveau dintégration](https://dash.yunohost.org/integration/funkwhale.svg)](https://dash.yunohost.org/appci/app/funkwhale) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/funkwhale.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/funkwhale.maintain.svg)
[![Installer Funkwhale avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=funkwhale)
*[Read this readme in english.](./README.md)*
> *Ce package vous permet d'installer Funkwhale rapidement et simplement sur un serveur YunoHost.
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
> *Ce package vous permet dinstaller Funkwhale rapidement et simplement sur un serveur YunoHost.
Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment linstaller et en profiter.*
## Vue d'ensemble
## Vue densemble
Funkwhale est un projet communautaire qui vous permet d'écouter et de partager de la musique et de l'audio au sein d'un réseau ouvert et décentralisé.
@ -21,9 +21,9 @@ Funkwhale est un projet communautaire qui vous permet d'écouter et de partager
**Démo :** https://demo.funkwhale.audio
## Captures d'écran
## Captures décran
![Capture d'écran de Funkwhale](./doc/screenshots/screenshot1.png)
![Capture décran de Funkwhale](./doc/screenshots/screenshot1.png)
## Avertissements / informations importantes
@ -39,10 +39,10 @@ Les fichiers peuvent ensuite être ajoutés à votre bibliothèque à partir de
## Documentations et ressources
* Site officiel de l'app : <https://funkwhale.audio/>
* Site officiel de lapp : <https://funkwhale.audio/>
* Documentation officielle utilisateur : <https://docs.funkwhale.audio/users/index.html>
* Documentation officielle de l'admin : <https://docs.funkwhale.audio/admin/index.html>
* Dépôt de code officiel de l'app : <https://dev.funkwhale.audio/funkwhale/funkwhale>
* Documentation officielle de ladmin : <https://docs.funkwhale.audio/admin/index.html>
* Dépôt de code officiel de lapp : <https://dev.funkwhale.audio/funkwhale/funkwhale>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_funkwhale>
* Signaler un bug : <https://github.com/YunoHost-Apps/funkwhale_ynh/issues>
@ -58,4 +58,4 @@ ou
sudo yunohost app upgrade funkwhale -u https://github.com/YunoHost-Apps/funkwhale_ynh/tree/testing --debug
```
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
**Plus dinfos sur le packaging dapplications :** <https://yunohost.org/packaging_apps>

View file

@ -3,8 +3,8 @@
"id": "funkwhale",
"packaging_format": 1,
"description": {
"en": "Modern, convivial and free music server",
"fr": "Serveur de musique moderne, convivial et gratuit"
"en": "Convivial and modern music server",
"fr": "Serveur de musique moderne et convivial"
},
"version": "1.2.9~ynh1",
"url": "https://funkwhale.audio",