From 14b7d0e28d98871d2bdc0ef673dcbd0b372d6b12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Wed, 14 Feb 2024 17:51:05 +0100 Subject: [PATCH 01/11] Stepping down as maintainer --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index a17e2f7..93b2c75 100644 --- a/manifest.toml +++ b/manifest.toml @@ -7,7 +7,7 @@ description.fr = "Chat peer-to-peer sans serveur, décentralisée et éphémère version = "1.0~ynh10" -maintainers = ["eric_G"] +maintainers = [] [upstream] license = "GPL-2.0" From b5b7c11d15a3d13e0f2d27627947ac384593a7db Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:26:29 +0100 Subject: [PATCH 02/11] testing chmod change --- scripts/upgrade | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index c632857..0a85a67 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,9 +33,6 @@ then popd fi -chmod -R o-rwx "$install_dir" -chown -R $app:www-data "$install_dir" - #================================================= # UPGRADE DEPENDENCIES #================================================= @@ -63,6 +60,9 @@ pushd $install_dir ynh_exec_warn_less $ynh_npm run build popd +chmod -R o-rwx "$install_dir" +chown -R $app:www-data "$install_dir" + #================================================= # END OF SCRIPT #================================================= From f1be897818757292eb0783ffd000eef2446bfbd6 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:28:14 +0100 Subject: [PATCH 03/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5827fa2..8420445 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Chitchatter is a free (as in both price and freedom) communication tool. It is d - Ephemeral - Decentralized -**Shipped version:** 1.0~ynh10.1 +**Shipped version:** 1.0~ynh10 **Demo:** https://chitchatter.im/ From 9c7b9a141bab25ef02ffcc39225f005f46b18203 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:28:29 +0100 Subject: [PATCH 04/11] Update README_fr.md --- README_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_fr.md b/README_fr.md index 750fa40..3cfe5a8 100644 --- a/README_fr.md +++ b/README_fr.md @@ -27,7 +27,7 @@ Chitchatter est un outil de communication gratuit (comme dans le prix et la libe - Éphémère - Décentralisé -**Version incluse :** 1.0~ynh10.1 +**Version incluse :** 1.0~ynh10 **Démo :** https://chitchatter.im/ From a1a606ba816f0b4840831b4675bfc7ed746f3bb9 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:29:06 +0100 Subject: [PATCH 05/11] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 2416541..93b2c75 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Chitchatter" description.en = "Peer-to-peer chat that is serverless, decentralized, and ephemeral" description.fr = "Chat peer-to-peer sans serveur, décentralisée et éphémère" -version = "1.0~ynh10.1" +version = "1.0~ynh10" maintainers = [] From f4935af861ed50eb3829b52f876d83b2daf249e3 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:33:03 +0100 Subject: [PATCH 06/11] chmod after build on install --- scripts/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/install b/scripts/install index 7163eeb..dfd9369 100755 --- a/scripts/install +++ b/scripts/install @@ -33,9 +33,6 @@ pushd "$install_dir" git reset --hard --quiet $version_commit popd -chmod -R o-rwx "$install_dir" -chown -R $app:www-data "$install_dir" - #================================================= # NGINX CONFIGURATION #================================================= @@ -56,6 +53,9 @@ pushd $install_dir ynh_exec_warn_less $ynh_npm run build popd +chmod -R o-rwx "$install_dir" +chown -R $app:www-data "$install_dir" + #================================================= # END OF SCRIPT #================================================= From e7306dee5edd7bdc0e8c0c1b844013c2d71bc402 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:44:09 +0100 Subject: [PATCH 07/11] Update upgrade --- scripts/upgrade | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/upgrade b/scripts/upgrade index 0a85a67..2c1f855 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,6 +33,9 @@ then popd fi +chmod -R o-rwx "$install_dir" +chown -R $app:www-data "$install_dir" + #================================================= # UPGRADE DEPENDENCIES #================================================= From ea7c3f60898d518009a61e5b3d4465b774bcd506 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 09:45:26 +0100 Subject: [PATCH 08/11] Update upgrade --- scripts/upgrade | 3 --- 1 file changed, 3 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 2c1f855..0a85a67 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -33,9 +33,6 @@ then popd fi -chmod -R o-rwx "$install_dir" -chown -R $app:www-data "$install_dir" - #================================================= # UPGRADE DEPENDENCIES #================================================= From fd79b298cd08fb3efd38beb569aef7fd444463e0 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:25:16 +0100 Subject: [PATCH 09/11] Update manifest.toml --- manifest.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.toml b/manifest.toml index 93b2c75..f34a5e3 100644 --- a/manifest.toml +++ b/manifest.toml @@ -5,7 +5,7 @@ name = "Chitchatter" description.en = "Peer-to-peer chat that is serverless, decentralized, and ephemeral" description.fr = "Chat peer-to-peer sans serveur, décentralisée et éphémère" -version = "1.0~ynh10" +version = "1.0~ynh11" maintainers = [] From 49eb68c06e5212f308f27d788f400ced42ed4366 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:25:30 +0100 Subject: [PATCH 10/11] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8420445..e05d2c3 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Chitchatter is a free (as in both price and freedom) communication tool. It is d - Ephemeral - Decentralized -**Shipped version:** 1.0~ynh10 +**Shipped version:** 1.0~ynh11 **Demo:** https://chitchatter.im/ From 283d129ce7f05f6b5b6b55381220ca492cf2bdd7 Mon Sep 17 00:00:00 2001 From: D5k H3h <85834680+dhuschde@users.noreply.github.com> Date: Sun, 18 Feb 2024 10:25:45 +0100 Subject: [PATCH 11/11] Update README_fr.md --- README_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_fr.md b/README_fr.md index 3cfe5a8..aa3cfa7 100644 --- a/README_fr.md +++ b/README_fr.md @@ -27,7 +27,7 @@ Chitchatter est un outil de communication gratuit (comme dans le prix et la libe - Éphémère - Décentralisé -**Version incluse :** 1.0~ynh10 +**Version incluse :** 1.0~ynh11 **Démo :** https://chitchatter.im/