diff --git a/README.md b/README.md index ca61bdc..81ced3c 100644 --- a/README.md +++ b/README.md @@ -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 @@ -30,7 +30,6 @@ See https://jellyfin.org/posts/vue-vue3 for details. ## Documentation and resources -* Official app website: * Upstream app code repository: * Report a bug: diff --git a/README_fr.md b/README_fr.md index cdea8d2..2908fc2 100644 --- a/README_fr.md +++ b/README_fr.md @@ -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 @@ -31,7 +31,6 @@ Des détails peuvent être trouvés ici : https://jellyfin.org/posts/vue-vue3. ## Documentations et ressources -* Site officiel de l’app : * Dépôt de code officiel de l’app : * Signaler un bug : diff --git a/manifest.toml b/manifest.toml index 05c9305..52432af 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ name = "Jellyfin Vue Client" description.en = "Modern web client for Jellyfin" description.fr = "Client web moderne pour Jellyfin" -version = "0.3~ynh1" +version = "0.3.1~ynh1" maintainers = ["johndoe"] @@ -15,7 +15,6 @@ maintainers = ["johndoe"] license = "GPLv3" website = "https://github.com/jellyfin/jellyfin-vue" code = "https://github.com/jellyfin/jellyfin-vue" - fund = "https://opencollective.com/jellyfin" [integration] diff --git a/scripts/restore b/scripts/restore index f285c32..f6148a2 100755 --- a/scripts/restore +++ b/scripts/restore @@ -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 #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index ee5229d..5acdb8b 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -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