diff --git a/ALL_README.md b/ALL_README.md index 8938aae..152f2e7 100644 --- a/ALL_README.md +++ b/ALL_README.md @@ -1,7 +1,7 @@ # All available README files by language - [Read the README in English](README.md) -- [Lee el README en español](README_es.md) +- [Lea el README en español](README_es.md) - [Irakurri README euskaraz](README_eu.md) - [Lire le README en français](README_fr.md) - [Le o README en galego](README_gl.md) diff --git a/README.md b/README.md index 06c9fb9..322aa74 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Iceshrimp is a decentralized and federated social networking service, implementi It was forked from Calckey Firefish (itself a fork of Misskey) in mid-2023, to focus on stability, performance and usability instead of new features. -**Shipped version:** 2023.12.5~ynh1 +**Shipped version:** 2023.12.6~ynh1 ## Screenshots diff --git a/README_es.md b/README_es.md index 0f8c93c..9b8d3d1 100644 --- a/README_es.md +++ b/README_es.md @@ -20,7 +20,7 @@ Iceshrimp is a decentralized and federated social networking service, implementi It was forked from Calckey Firefish (itself a fork of Misskey) in mid-2023, to focus on stability, performance and usability instead of new features. -**Versión actual:** 2023.12.5~ynh1 +**Versión actual:** 2023.12.6~ynh1 ## Capturas diff --git a/README_eu.md b/README_eu.md index 547b73d..9a8b180 100644 --- a/README_eu.md +++ b/README_eu.md @@ -20,7 +20,7 @@ Iceshrimp is a decentralized and federated social networking service, implementi It was forked from Calckey Firefish (itself a fork of Misskey) in mid-2023, to focus on stability, performance and usability instead of new features. -**Paketatutako bertsioa:** 2023.12.5~ynh1 +**Paketatutako bertsioa:** 2023.12.6~ynh1 ## Pantaila-argazkiak diff --git a/README_fr.md b/README_fr.md index e806e42..b55015c 100644 --- a/README_fr.md +++ b/README_fr.md @@ -20,7 +20,7 @@ Iceshrimp est un service de réseau social décentralisé et fédéré, impléme Il a été forké de Calckey et Firefish (lui-même forké de Misskey) à la mi-2023, afin de se concentrer sur la stabilité, les performances et la facilité d'utilisation plutôt que sur de nouvelles fonctionnalités. -**Version incluse :** 2023.12.5~ynh1 +**Version incluse :** 2023.12.6~ynh1 ## Captures d’écran diff --git a/README_gl.md b/README_gl.md index 9540512..04c5ae5 100644 --- a/README_gl.md +++ b/README_gl.md @@ -20,7 +20,7 @@ Iceshrimp is a decentralized and federated social networking service, implementi It was forked from Calckey Firefish (itself a fork of Misskey) in mid-2023, to focus on stability, performance and usability instead of new features. -**Versión proporcionada:** 2023.12.5~ynh1 +**Versión proporcionada:** 2023.12.6~ynh1 ## Capturas de pantalla diff --git a/README_zh_Hans.md b/README_zh_Hans.md index 2e14e21..05d3683 100644 --- a/README_zh_Hans.md +++ b/README_zh_Hans.md @@ -20,7 +20,7 @@ Iceshrimp is a decentralized and federated social networking service, implementi It was forked from Calckey Firefish (itself a fork of Misskey) in mid-2023, to focus on stability, performance and usability instead of new features. -**分发版本:** 2023.12.5~ynh1 +**分发版本:** 2023.12.6~ynh1 ## 截图 diff --git a/manifest.toml b/manifest.toml index df460f6..e6a4ed6 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Iceshrimp" description.en = "Decentralized and federated social networking service" description.fr = "Service de réseau social décentralisé et fédéré" -version = "2023.12.5~ynh1" +version = "2023.12.6~ynh1" maintainers = ["oufmilo"] diff --git a/scripts/install b/scripts/install index 09bf070..4a7673c 100755 --- a/scripts/install +++ b/scripts/install @@ -69,9 +69,9 @@ ynh_script_progression --message="Building app... This will take some time." --w pushd "$install_dir" ynh_use_nodejs - corepack enable - corepack prepare --activate - ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn + env $ynh_node_load_PATH corepack enable + env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare --activate + ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 yarn ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production yarn build ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn run init popd @@ -112,4 +112,4 @@ ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --lin # END OF SCRIPT #================================================= -ynh_script_progression --message="Installation of $app completed" \ No newline at end of file +ynh_script_progression --message="Installation of $app completed" diff --git a/scripts/restore b/scripts/restore index fe64cce..327bb2d 100755 --- a/scripts/restore +++ b/scripts/restore @@ -39,9 +39,9 @@ ynh_script_progression --message="Reinstalling yarn..." --weight=1 # Define and install yarn pushd "$install_dir" ynh_use_nodejs - corepack enable - corepack prepare --activate - ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install + env $ynh_node_load_PATH corepack enable + env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare --activate + ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 yarn install ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production yarn build popd diff --git a/scripts/upgrade b/scripts/upgrade index 35fc7f0..8b04d48 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -97,9 +97,9 @@ ynh_script_progression --message="Building app..." pushd "$install_dir" ynh_use_nodejs - corepack enable - corepack prepare --activate - ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn cleanall + env $ynh_node_load_PATH corepack enable + env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare --activate + ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH COREPACK_ENABLE_DOWNLOAD_PROMPT=0 yarn cleanall ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn install ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production yarn build ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn migrate diff --git a/tests.toml b/tests.toml index 99a59b0..4b22895 100644 --- a/tests.toml +++ b/tests.toml @@ -16,5 +16,4 @@ test_format = 1.0 # Commits to test upgrade from # ------------------------------- - test_upgrade_from.6bd676e.name = "2023.12.1" - test_upgrade_from.c8ff29b.name = "2023.12.2" \ No newline at end of file +