From 464828e04534a4241241d5dee1e3f5fe64fb7a87 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 11:41:44 +0200 Subject: [PATCH 1/9] don't install npm globally --- scripts/install | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/install b/scripts/install index 3aed925..365602f 100755 --- a/scripts/install +++ b/scripts/install @@ -16,12 +16,6 @@ ynh_script_progression --message="Installing dependencies..." --weight=5 ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version -# Upgrade NPM -ynh_npm install --global npm@latest - -# Install Yarn -ynh_npm install --global yarn - #================================================= # DOWNLOAD, CHECK AND UNPACK SOURCE #================================================= @@ -52,6 +46,7 @@ ynh_add_nginx_config pushd $install_dir ynh_use_nodejs + ynh_npm install yarn ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=100000 From 1b30c8f94040079b8e6786678656cb47800eeebc Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 11:42:21 +0200 Subject: [PATCH 2/9] don't install npm globally --- scripts/upgrade | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index d68c1ec..99292c8 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -25,12 +25,6 @@ ynh_script_progression --message="Installing dependencies..." --weight=5 ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version -# Upgrade NPM -ynh_npm install --global npm@latest - -# Install Yarn -ynh_npm install --global yarn - #================================================= # "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...) #================================================= @@ -52,7 +46,7 @@ ynh_script_progression --message="Building app... This may take quiete some time pushd $install_dir ynh_use_nodejs - + ynh_npm install yarn ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=100000 From 1d836ba2f2ef728c5a4230c94ca1ecefe24a8252 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:01:20 +0200 Subject: [PATCH 3/9] ynh_npm install npm@latest --- scripts/install | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install b/scripts/install index 365602f..98c6450 100755 --- a/scripts/install +++ b/scripts/install @@ -46,6 +46,7 @@ ynh_add_nginx_config pushd $install_dir ynh_use_nodejs + ynh_npm install npm@latest ynh_npm install yarn ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 From 11346386cd8d6ed4b7f8e98aa9345f0c4fb37273 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:01:43 +0200 Subject: [PATCH 4/9] ynh_npm install npm@latest --- scripts/upgrade | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/upgrade b/scripts/upgrade index 99292c8..28efa05 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -46,6 +46,7 @@ ynh_script_progression --message="Building app... This may take quiete some time pushd $install_dir ynh_use_nodejs + ynh_npm install npm@latest ynh_npm install yarn ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=100000 From 82a352eb8a79ebc30e41553acb550948dd11b288 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:37:11 +0200 Subject: [PATCH 5/9] Update install --- scripts/install | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/install b/scripts/install index 98c6450..cc6c696 100755 --- a/scripts/install +++ b/scripts/install @@ -46,10 +46,7 @@ ynh_add_nginx_config pushd $install_dir ynh_use_nodejs - ynh_npm install npm@latest - ynh_npm install yarn - - ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 + ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=100000 ynh_script_progression --message="Building Yarn dev dependencies... This can be very long, be patient !" --weight=25 From 74fdef9ec486bc333dad96036622d961a5c88909 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:37:37 +0200 Subject: [PATCH 6/9] Update upgrade --- scripts/upgrade | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 28efa05..4f79c7d 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -46,8 +46,6 @@ ynh_script_progression --message="Building app... This may take quiete some time pushd $install_dir ynh_use_nodejs - ynh_npm install npm@latest - ynh_npm install yarn ynh_script_progression --message="Fetching Yarn dev dependencies... This can be very long, be patient !" --weight=18 ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install --network-timeout=100000 From 0a8b2f9dbf2d25d3597d9aa0ea357824c4b8b786 Mon Sep 17 00:00:00 2001 From: Thomas <51749973+Thovi98@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:38:16 +0200 Subject: [PATCH 7/9] Update manifest.toml --- manifest.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/manifest.toml b/manifest.toml index 056d4c4..3828b78 100644 --- a/manifest.toml +++ b/manifest.toml @@ -54,3 +54,8 @@ ram.runtime = "50M" [resources.ports] main.default = 5055 + + [resources.apt] + extras.yarn.repo = "deb https://dl.yarnpkg.com/debian/ stable main" + extras.yarn.key = "https://dl.yarnpkg.com/debian/pubkey.gpg" + extras.yarn.packages = "yarn" From 19beeee3ab9bf21c2e7e31cda551c129d8ba52cf Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 13 Jun 2024 03:44:30 +0200 Subject: [PATCH 8/9] Upgrade to v1.9.1 --- manifest.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.toml b/manifest.toml index 3828b78..ecdee95 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ name = "Jellyseerr" description.en = "Media request management and discovery tool for Jellyfin, Radarr, and Sonarr" description.fr = "Outil de gestion de demandes et de découverte de médias pour Jellyfin, Radarr, et Sonarr" -version = "1.9.0~ynh1" +version = "1.9.1~ynh1" maintainers = ["Thovi98"] @@ -38,8 +38,8 @@ ram.runtime = "50M" [resources.sources] [resources.sources.main] - url = "https://github.com/Fallenbagel/jellyseerr/archive/refs/tags/v1.9.0.tar.gz" - sha256 = "6f674e44e7fb51a891573636720b488a09aa86f05f5c0166099a53dcdabf7d11" + url = "https://github.com/Fallenbagel/jellyseerr/archive/refs/tags/v1.9.1.tar.gz" + sha256 = "fec651f015e8aa5727f8cab09e39ced299657625cd34e33e81062c9ed37c67e0" autoupdate.strategy = "latest_github_tag" From eee938c05069133106038aaac15d84979f2cb8f3 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 13 Jun 2024 01:44:32 +0000 Subject: [PATCH 9/9] Auto-update READMEs --- README.md | 2 +- README_es.md | 2 +- README_eu.md | 2 +- README_fr.md | 2 +- README_gl.md | 2 +- README_zh_Hans.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f903ef2..f6113f2 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ It shall NOT be edited by hand. Jellyseerr is a free and open source software application for managing requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! -**Shipped version:** 1.9.0~ynh1 +**Shipped version:** 1.9.1~ynh1 ## Screenshots diff --git a/README_es.md b/README_es.md index 09786e8..7da7729 100644 --- a/README_es.md +++ b/README_es.md @@ -18,7 +18,7 @@ No se debe editar a mano. Jellyseerr is a free and open source software application for managing requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! -**Versión actual:** 1.9.0~ynh1 +**Versión actual:** 1.9.1~ynh1 ## Capturas diff --git a/README_eu.md b/README_eu.md index cff97dd..d1bcb90 100644 --- a/README_eu.md +++ b/README_eu.md @@ -18,7 +18,7 @@ EZ editatu eskuz. Jellyseerr is a free and open source software application for managing requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! -**Paketatutako bertsioa:** 1.9.0~ynh1 +**Paketatutako bertsioa:** 1.9.1~ynh1 ## Pantaila-argazkiak diff --git a/README_fr.md b/README_fr.md index d175b80..60fbd72 100644 --- a/README_fr.md +++ b/README_fr.md @@ -18,7 +18,7 @@ Il NE doit PAS être modifié à la main. Jellyseerr est une application libre et open source pour gérer les requêtes pour votre médiathèque. C’est un fork de Overseerr, créé pour ajouter le support des serveurs Jellyfin et Emby ! -**Version incluse :** 1.9.0~ynh1 +**Version incluse :** 1.9.1~ynh1 ## Captures d’écran diff --git a/README_gl.md b/README_gl.md index 31afa54..8c35fe9 100644 --- a/README_gl.md +++ b/README_gl.md @@ -18,7 +18,7 @@ NON debe editarse manualmente. Jellyseerr is a free and open source software application for managing requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! -**Versión proporcionada:** 1.9.0~ynh1 +**Versión proporcionada:** 1.9.1~ynh1 ## Capturas de pantalla diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 123a81a..de0f1ab 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -18,7 +18,7 @@ Jellyseerr is a free and open source software application for managing requests for your media library. It is a a fork of Overseerr built to bring support for Jellyfin & Emby media servers! -**分发版本:** 1.9.0~ynh1 +**分发版本:** 1.9.1~ynh1 ## 截图