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 branch 'master' into testing

This commit is contained in:
ericgaspar 2023-10-07 09:38:32 +02:00
commit cf22fb12ff
5 changed files with 13 additions and 6 deletions

View file

@ -22,7 +22,7 @@ It's a new frontend, based on Vue.
See https://jellyfin.org/posts/vue-vue3 for details. See https://jellyfin.org/posts/vue-vue3 for details.
**Shipped version:** 0.3~ynh1 **Shipped version:** 0.3.1~ynh1
## Screenshots ## Screenshots
@ -30,7 +30,6 @@ See https://jellyfin.org/posts/vue-vue3 for details.
## Documentation and resources ## Documentation and resources
* Official app website: <https://github.com/jellyfin/jellyfin-vue>
* Upstream app code repository: <https://github.com/jellyfin/jellyfin-vue> * Upstream app code repository: <https://github.com/jellyfin/jellyfin-vue>
* Report a bug: <https://github.com/YunoHost-Apps/jellyfin-vue_ynh/issues> * Report a bug: <https://github.com/YunoHost-Apps/jellyfin-vue_ynh/issues>

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. 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 ## Captures décran
@ -31,7 +31,6 @@ Des détails peuvent être trouvés ici : https://jellyfin.org/posts/vue-vue3.
## Documentations et ressources ## Documentations et ressources
* Site officiel de lapp : <https://github.com/jellyfin/jellyfin-vue>
* Dépôt de code officiel de lapp : <https://github.com/jellyfin/jellyfin-vue> * Dépôt de code officiel de lapp : <https://github.com/jellyfin/jellyfin-vue>
* Signaler un bug : <https://github.com/YunoHost-Apps/jellyfin-vue_ynh/issues> * Signaler un bug : <https://github.com/YunoHost-Apps/jellyfin-vue_ynh/issues>

View file

@ -7,7 +7,7 @@ name = "Jellyfin Vue Client"
description.en = "Modern web client for Jellyfin" description.en = "Modern web client for Jellyfin"
description.fr = "Client web moderne pour Jellyfin" description.fr = "Client web moderne pour Jellyfin"
version = "0.3~ynh1" version = "0.3.1~ynh1"
maintainers = ["johndoe"] maintainers = ["johndoe"]
@ -15,7 +15,6 @@ maintainers = ["johndoe"]
license = "GPLv3" license = "GPLv3"
website = "https://github.com/jellyfin/jellyfin-vue" website = "https://github.com/jellyfin/jellyfin-vue"
code = "https://github.com/jellyfin/jellyfin-vue" code = "https://github.com/jellyfin/jellyfin-vue"
fund = "https://opencollective.com/jellyfin" fund = "https://opencollective.com/jellyfin"
[integration] [integration]

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" 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 # END OF SCRIPT
#================================================= #=================================================

View file

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