diff --git a/README.md b/README.md index fdad696..d030d6f 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ It shall NOT be edited by hand. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Shipped version:** 2024.11.2~ynh1 +**Shipped version:** 2024.11.2~ynh2 ## Screenshots diff --git a/README_es.md b/README_es.md index 443b490..cd86681 100644 --- a/README_es.md +++ b/README_es.md @@ -23,7 +23,7 @@ No se debe editar a mano. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Versión actual:** 2024.11.2~ynh1 +**Versión actual:** 2024.11.2~ynh2 ## Capturas diff --git a/README_eu.md b/README_eu.md index 08bd57d..205a6bc 100644 --- a/README_eu.md +++ b/README_eu.md @@ -23,7 +23,7 @@ EZ editatu eskuz. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Paketatutako bertsioa:** 2024.11.2~ynh1 +**Paketatutako bertsioa:** 2024.11.2~ynh2 ## Pantaila-argazkiak diff --git a/README_fr.md b/README_fr.md index 19134ca..745b34a 100644 --- a/README_fr.md +++ b/README_fr.md @@ -23,7 +23,7 @@ Il NE doit PAS être modifié à la main. _Sharkey_ est un fork de Misskey qui suit les changements en amont lorsque c'est possible, avec des fonctionnalités supplémentaires ! -**Version incluse :** 2024.11.2~ynh1 +**Version incluse :** 2024.11.2~ynh2 ## Captures d’écran diff --git a/README_gl.md b/README_gl.md index a8cf1df..ff10680 100644 --- a/README_gl.md +++ b/README_gl.md @@ -23,7 +23,7 @@ NON debe editarse manualmente. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Versión proporcionada:** 2024.11.2~ynh1 +**Versión proporcionada:** 2024.11.2~ynh2 ## Capturas de pantalla diff --git a/README_id.md b/README_id.md index b75c952..dbf26ef 100644 --- a/README_id.md +++ b/README_id.md @@ -23,7 +23,7 @@ Ini TIDAK boleh diedit dengan tangan. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Versi terkirim:** 2024.11.2~ynh1 +**Versi terkirim:** 2024.11.2~ynh2 ## Tangkapan Layar diff --git a/README_nl.md b/README_nl.md index 55ddd0f..69b3c0f 100644 --- a/README_nl.md +++ b/README_nl.md @@ -23,7 +23,7 @@ Hij mag NIET handmatig aangepast worden. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Geleverde versie:** 2024.11.2~ynh1 +**Geleverde versie:** 2024.11.2~ynh2 ## Schermafdrukken diff --git a/README_pl.md b/README_pl.md index 06d6fee..59d6f58 100644 --- a/README_pl.md +++ b/README_pl.md @@ -23,7 +23,7 @@ Nie powinno być ono edytowane ręcznie. _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Dostarczona wersja:** 2024.11.2~ynh1 +**Dostarczona wersja:** 2024.11.2~ynh2 ## Zrzuty ekranu diff --git a/README_ru.md b/README_ru.md index 81c84c1..63aeaec 100644 --- a/README_ru.md +++ b/README_ru.md @@ -23,7 +23,7 @@ _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**Поставляемая версия:** 2024.11.2~ynh1 +**Поставляемая версия:** 2024.11.2~ynh2 ## Снимки экрана diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 69714e1..5c588e1 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -23,7 +23,7 @@ _Sharkey_ is an Misskey fork following upstream changes when possible, with added features! -**分发版本:** 2024.11.2~ynh1 +**分发版本:** 2024.11.2~ynh2 ## 截图 diff --git a/manifest.toml b/manifest.toml index 17df6f9..e844ef6 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Sharkey" description.en = "Microblogging platform" description.fr = "Platforme de Microblogging" -version = "2024.11.2~ynh1" +version = "2024.11.2~ynh2" maintainers = ["oufmilo"] diff --git a/scripts/install b/scripts/install index 3a4e6d7..1652cba 100755 --- a/scripts/install +++ b/scripts/install @@ -40,6 +40,7 @@ ynh_config_add --template="default.yml" --destination="$install_dir/.config/defa ynh_script_progression "Building $app..." pushd "$install_dir" + ynh_hide_warnings npm install --global corepack@latest ynh_hide_warnings corepack enable && corepack prepare pnpm@latest --activate ynh_hide_warnings ynh_exec_as_app COREPACK_ENABLE_DOWNLOAD_PROMPT=0 NODE_OPTIONS="--max-old-space-size=3000" pnpm install --frozen-lockfile ynh_hide_warnings ynh_exec_as_app NODE_ENV=production NODE_OPTIONS="--max-old-space-size=3000" pnpm build diff --git a/scripts/restore b/scripts/restore index 6d8922b..5373f8a 100755 --- a/scripts/restore +++ b/scripts/restore @@ -29,6 +29,7 @@ ynh_script_progression "Reinstalling PNPM..." # Define and install pnpm pushd "$install_dir" + ynh_hide_warnings npm install --global corepack@latest ynh_hide_warnings corepack enable && corepack prepare pnpm@latest --activate ynh_hide_warnings ynh_exec_as_app COREPACK_ENABLE_DOWNLOAD_PROMPT=0 pnpm install --frozen-lockfile ynh_hide_warnings ynh_exec_as_app NODE_ENV=production pnpm build diff --git a/scripts/upgrade b/scripts/upgrade index 2b91c1c..394e3bf 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -42,6 +42,7 @@ ynh_nodejs_install ynh_script_progression "Building app..." pushd "$install_dir" + ynh_hide_warnings npm install --global corepack@latest ynh_hide_warnings corepack enable && corepack prepare pnpm@latest --activate ynh_hide_warnings ynh_exec_as_app COREPACK_ENABLE_DOWNLOAD_PROMPT=0 NODE_OPTIONS="--max-old-space-size=3000" pnpm install --frozen-lockfile ynh_hide_warnings ynh_exec_as_app NODE_ENV=production NODE_OPTIONS="--max-old-space-size=3000" pnpm build