1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jellyfin-vue_ynh.git synced 2024-09-03 19:26:31 +02:00

Merge pull request #1 from YunoHost-Apps/ci-auto-update-0.3.1

Upgrade to v0.3.1
This commit is contained in:
Salamandar 2023-10-02 11:19:10 +02:00 committed by GitHub
commit 770cc85ce5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 15 additions and 5 deletions

View file

@ -22,7 +22,7 @@ It's a new frontend, based on Vue.
See https://jellyfin.org/posts/vue-vue3 for details.
**Shipped version:** 0.3~ynh1
**Shipped version:** 0.3.1~ynh1
## Screenshots

View file

@ -23,7 +23,7 @@ C'est une nouvelle interface, basée sur Vue.
Des détails peuvent être trouvés ici : https://jellyfin.org/posts/vue-vue3.
**Version incluse :** 0.3~ynh1
**Version incluse :** 0.3.1~ynh1
## Captures décran

View file

@ -7,7 +7,7 @@ name = "Jellyfin Vue Client"
description.en = "A modern web client for Jellyfin based on Vue."
description.fr = "Un client web moderne pour Jellyfin basé sur Vue."
version = "0.3~ynh1"
version = "0.3.1~ynh1"
maintainers = ["johndoe"]
@ -56,8 +56,8 @@ ram.runtime = "0M"
# This will pre-fetch the asset which can then be deployed during the install/upgrade scripts with :
# ynh_setup_source --dest_dir="$install_dir"
# You can also define other assets than "main" and add --source_id="foobar" in the previous command
url = "https://github.com/jellyfin/jellyfin-vue/archive/f1efc3cd0923d09af69debea1e19a08b24310afc.tar.gz"
sha256 = "7f3a81a44153b456012bb0c2a0d404eb0b4ac0db1c56768cef7e37ed4eb52c6f"
url = "https://github.com/jellyfin/jellyfin-vue/archive/refs/tags/0.3.1.tar.gz"
sha256 = "49316b5f7ef57d09bfa31e5e461fac1866d03902f9b087d2c3ec5b294ed934f8"
# These infos are used by https://github.com/YunoHost/apps/blob/master/tools/autoupdate_app_sources/autoupdate_app_sources.py
# to auto-update the previous asset urls and sha256sum + manifest version

View file

@ -31,6 +31,15 @@ ynh_script_progression --message="Restoring system configurations related to $ap
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM OR THE APP SERVICE
#=================================================
ynh_script_progression --message="Reloading NGINX web server and $app's service..." --weight=1
ynh_systemd_action --service_name=nginx --action=reload
#=================================================
# END OF SCRIPT
#=================================================

View file

@ -48,6 +48,7 @@ then
# Download, check integrity, uncompress and patch the source from app.src
ynh_setup_source --dest_dir="$install_dir"
chown -R $app:www-data "$install_dir"
ynh_script_progression --message="Installing NodeJS..." --weight=20