From 4641c301e4beff08de112d0f73cb3108b9d73d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 22 Mar 2022 18:18:33 +0100 Subject: [PATCH 01/37] Testing (#105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9b862e6..bd9170e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.0~ynh1 +**Shipped version:** 4.5.3~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 51d3607..649af98 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.0~ynh1 +**Version incluse :** 4.5.3~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index c77ab8b..6cf1e57 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.0/download -SOURCE_SUM=d0eaf809a4659766a19dc841fa7f0bcad45bbc001040d091212c769b5367a007 +SOURCE_URL=https://releases.rocket.chat/4.5.3/download +SOURCE_SUM=62ee447a14e52fdbdd6003a0de81ee438e810f43633b3fb3df56e657cb9b4ec5 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index f943ec6..67d3d27 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.0~ynh1", + "version": "4.5.3~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", @@ -18,7 +18,7 @@ }, "license": "GPL-3.0", "maintainer": { - "name": "", + "name": "eric_G", "email": "" }, "multi_instance": true, From cc2034f97047ba0a959ee67b49991babb2793c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Tue, 22 Mar 2022 22:21:23 +0100 Subject: [PATCH 02/37] Update remove (#106) --- scripts/remove | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/remove b/scripts/remove index 8c4db16..1c9299b 100644 --- a/scripts/remove +++ b/scripts/remove @@ -35,6 +35,12 @@ then yunohost service remove $app fi +if ynh_exec_warn_less yunohost service status "$mongodb_servicename" >/dev/null +then + ynh_script_progression --message="Removing $mongodb_servicename service integration..." + yunohost service remove "$mongodb_servicename" +fi + #================================================= # STOP AND REMOVE SERVICE #================================================= @@ -42,6 +48,7 @@ ynh_script_progression --message="Stopping and removing the systemd service..." # Remove the dedicated systemd config ynh_remove_systemd_config +ynh_remove_systemd_config --service=$mongodb_servicename #================================================= # REMOVE LOGROTATE CONFIGURATION From 1496462f3299a6370b5e049d1ed42a0525542b1b Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 25 Mar 2022 09:08:20 +0100 Subject: [PATCH 03/37] 4.5.4 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 6cf1e57..00bd076 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.3/download -SOURCE_SUM=62ee447a14e52fdbdd6003a0de81ee438e810f43633b3fb3df56e657cb9b4ec5 +SOURCE_URL=https://releases.rocket.chat/4.5.4/download +SOURCE_SUM=bba7e1c8df36261e7533d464b061c585f15a90b7f2fdc4c12905e50d2288fbff SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 67d3d27..b844907 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.3~ynh1", + "version": "4.5.4~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 6d780eca0157cc0581230eb89e792664d7eeb897 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 25 Mar 2022 08:08:27 +0000 Subject: [PATCH 04/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bd9170e..264cf86 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.3~ynh1 +**Shipped version:** 4.5.4~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 649af98..7d95946 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.3~ynh1 +**Version incluse :** 4.5.4~ynh1 **Démo :** https://cloud.rocket.chat/trial From fd4668b71a11b691f47de760cda4e9aecfe69fd8 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 25 Mar 2022 08:09:35 +0000 Subject: [PATCH 05/37] Auto-update README --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9d52fcf..264cf86 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. + **Shipped version:** 4.5.4~ynh1 **Demo:** https://cloud.rocket.chat/trial From 11ff061051a7edf0df727c4d12365bbfc3480222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 25 Mar 2022 22:53:54 +0100 Subject: [PATCH 06/37] Testing (#107) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- scripts/remove | 7 +++++++ 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index bd9170e..264cf86 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.3~ynh1 +**Shipped version:** 4.5.4~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 649af98..7d95946 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.3~ynh1 +**Version incluse :** 4.5.4~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index 6cf1e57..00bd076 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.3/download -SOURCE_SUM=62ee447a14e52fdbdd6003a0de81ee438e810f43633b3fb3df56e657cb9b4ec5 +SOURCE_URL=https://releases.rocket.chat/4.5.4/download +SOURCE_SUM=bba7e1c8df36261e7533d464b061c585f15a90b7f2fdc4c12905e50d2288fbff SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 67d3d27..b844907 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.3~ynh1", + "version": "4.5.4~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", diff --git a/scripts/remove b/scripts/remove index 8c4db16..1c9299b 100644 --- a/scripts/remove +++ b/scripts/remove @@ -35,6 +35,12 @@ then yunohost service remove $app fi +if ynh_exec_warn_less yunohost service status "$mongodb_servicename" >/dev/null +then + ynh_script_progression --message="Removing $mongodb_servicename service integration..." + yunohost service remove "$mongodb_servicename" +fi + #================================================= # STOP AND REMOVE SERVICE #================================================= @@ -42,6 +48,7 @@ ynh_script_progression --message="Stopping and removing the systemd service..." # Remove the dedicated systemd config ynh_remove_systemd_config +ynh_remove_systemd_config --service=$mongodb_servicename #================================================= # REMOVE LOGROTATE CONFIGURATION From a24bdd32409ed2264fadd9b76cfdcaf585b084cc Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 31 Mar 2022 08:22:43 +0200 Subject: [PATCH 07/37] 4.5.5 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 00bd076..e346bc7 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.4/download -SOURCE_SUM=bba7e1c8df36261e7533d464b061c585f15a90b7f2fdc4c12905e50d2288fbff +SOURCE_URL=https://releases.rocket.chat/4.5.5/download +SOURCE_SUM=c0b32b731558a3b400896c38080c75a1a9b68958cd46fa09b9c2292728ec98cd SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index b844907..0f6437e 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.4~ynh1", + "version": "4.5.5~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From f391b817474ee8f8a63ac370171cabfee2fce88a Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 31 Mar 2022 06:23:03 +0000 Subject: [PATCH 08/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 264cf86..7a76b1d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.4~ynh1 +**Shipped version:** 4.5.5~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 7d95946..35043b3 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.4~ynh1 +**Version incluse :** 4.5.5~ynh1 **Démo :** https://cloud.rocket.chat/trial From 5b62bba013640f96c3cefcd6c814ebae8daf0568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 31 Mar 2022 16:05:41 +0200 Subject: [PATCH 09/37] Testing (#108) * 4.5.5 --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 264cf86..7a76b1d 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.4~ynh1 +**Shipped version:** 4.5.5~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 7d95946..35043b3 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.4~ynh1 +**Version incluse :** 4.5.5~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index 00bd076..e346bc7 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.4/download -SOURCE_SUM=bba7e1c8df36261e7533d464b061c585f15a90b7f2fdc4c12905e50d2288fbff +SOURCE_URL=https://releases.rocket.chat/4.5.5/download +SOURCE_SUM=c0b32b731558a3b400896c38080c75a1a9b68958cd46fa09b9c2292728ec98cd SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index b844907..0f6437e 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.4~ynh1", + "version": "4.5.5~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From e94ad70ffe0b92459a6bf9929bb328a52878fe9d Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Fri, 1 Apr 2022 22:22:22 +0200 Subject: [PATCH 10/37] 4.6.0 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index e346bc7..81e1d7c 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.5/download -SOURCE_SUM=c0b32b731558a3b400896c38080c75a1a9b68958cd46fa09b9c2292728ec98cd +SOURCE_URL=https://releases.rocket.chat/4.6.0/download +SOURCE_SUM=c88c69445a33c97afc6aee9d5fb02e9224db320d8a9734fd21a9d766f9abe208 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 0f6437e..36dc63a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.5~ynh1", + "version": "4.6.0~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 4d018dd34113a36ded18b06d86e0795c93abeac3 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 1 Apr 2022 20:22:31 +0000 Subject: [PATCH 11/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a76b1d..65f5446 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.5~ynh1 +**Shipped version:** 4.6.0~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 35043b3..eeb1879 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.5~ynh1 +**Version incluse :** 4.6.0~ynh1 **Démo :** https://cloud.rocket.chat/trial From 3e8fb8d7bf87553dc2d9e6cb209f5db5e0b5d838 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sat, 2 Apr 2022 07:50:20 +0200 Subject: [PATCH 12/37] Testing (#109) * 4.6.0 --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 7a76b1d..65f5446 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.5.5~ynh1 +**Shipped version:** 4.6.0~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 35043b3..eeb1879 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.5.5~ynh1 +**Version incluse :** 4.6.0~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index e346bc7..81e1d7c 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.5.5/download -SOURCE_SUM=c0b32b731558a3b400896c38080c75a1a9b68958cd46fa09b9c2292728ec98cd +SOURCE_URL=https://releases.rocket.chat/4.6.0/download +SOURCE_SUM=c88c69445a33c97afc6aee9d5fb02e9224db320d8a9734fd21a9d766f9abe208 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 0f6437e..36dc63a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.5.5~ynh1", + "version": "4.6.0~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From d86e0b14c8fcfefcdce8b71754ed6b79ede702c5 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 7 Apr 2022 19:20:02 +0200 Subject: [PATCH 13/37] 4.6.1 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 81e1d7c..c2d62a2 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.0/download -SOURCE_SUM=c88c69445a33c97afc6aee9d5fb02e9224db320d8a9734fd21a9d766f9abe208 +SOURCE_URL=https://releases.rocket.chat/4.6.1/download +SOURCE_SUM=b689d6797ac02b6dd48521810406dc7fb072ce23d262c38452e71ca500ed5ac3 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 36dc63a..f8b8410 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.0~ynh1", + "version": "4.6.1~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 5865c91473afd8e242ca6393f14294b4774ae447 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 7 Apr 2022 17:20:17 +0000 Subject: [PATCH 14/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65f5446..867b87b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.0~ynh1 +**Shipped version:** 4.6.1~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index eeb1879..12f77bb 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.0~ynh1 +**Version incluse :** 4.6.1~ynh1 **Démo :** https://cloud.rocket.chat/trial From 42b5c7296e650b3280f06eb2ee748cbb6d011179 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 7 Apr 2022 22:50:32 +0200 Subject: [PATCH 15/37] Testing (#110) * 4.6.1 --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 65f5446..867b87b 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.0~ynh1 +**Shipped version:** 4.6.1~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index eeb1879..12f77bb 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.0~ynh1 +**Version incluse :** 4.6.1~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index 81e1d7c..c2d62a2 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.0/download -SOURCE_SUM=c88c69445a33c97afc6aee9d5fb02e9224db320d8a9734fd21a9d766f9abe208 +SOURCE_URL=https://releases.rocket.chat/4.6.1/download +SOURCE_SUM=b689d6797ac02b6dd48521810406dc7fb072ce23d262c38452e71ca500ed5ac3 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 36dc63a..f8b8410 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.0~ynh1", + "version": "4.6.1~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 76690fa1d747ec277a4af65c83a5b3c58588f25a Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 14 Apr 2022 21:29:29 +0200 Subject: [PATCH 16/37] 4.6.2 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index c2d62a2..d0004fa 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.1/download -SOURCE_SUM=b689d6797ac02b6dd48521810406dc7fb072ce23d262c38452e71ca500ed5ac3 +SOURCE_URL=https://releases.rocket.chat/4.6.2/download +SOURCE_SUM=f2b5eb4cc6f0a9bf3255c3699a4911c62d09f7af1d924d1209d6237a599593d8 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index f8b8410..efc7812 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.1~ynh1", + "version": "4.6.2~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From a3e02e107e549c8fa73042acb800f2cadb61a4af Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 14 Apr 2022 19:29:39 +0000 Subject: [PATCH 17/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 867b87b..cbfd802 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.1~ynh1 +**Shipped version:** 4.6.2~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 12f77bb..7914c59 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.1~ynh1 +**Version incluse :** 4.6.2~ynh1 **Démo :** https://cloud.rocket.chat/trial From a95de8a5b0ce85ef9a80039276f6e078c2904a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 15 Apr 2022 07:28:16 +0200 Subject: [PATCH 18/37] Testing (#111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README * 4.5.5 * Auto-update README * 4.6.0 * Auto-update README * 4.6.1 * Auto-update README * 4.6.2 * Auto-update README Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 867b87b..cbfd802 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.1~ynh1 +**Shipped version:** 4.6.2~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 12f77bb..7914c59 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.1~ynh1 +**Version incluse :** 4.6.2~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index c2d62a2..d0004fa 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.1/download -SOURCE_SUM=b689d6797ac02b6dd48521810406dc7fb072ce23d262c38452e71ca500ed5ac3 +SOURCE_URL=https://releases.rocket.chat/4.6.2/download +SOURCE_SUM=f2b5eb4cc6f0a9bf3255c3699a4911c62d09f7af1d924d1209d6237a599593d8 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index f8b8410..efc7812 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.1~ynh1", + "version": "4.6.2~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 73c226fafd65a0377b1a9127fb3bc8942ca08ec4 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 20 Apr 2022 07:02:38 +0200 Subject: [PATCH 19/37] 4.6.3 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index d0004fa..75ee45f 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.2/download -SOURCE_SUM=f2b5eb4cc6f0a9bf3255c3699a4911c62d09f7af1d924d1209d6237a599593d8 +SOURCE_URL=https://releases.rocket.chat/4.6.3/download +SOURCE_SUM=a85a71811a488c155eaf4a15d1508bd5d81ee01954e0c14c6e814659491c7b38 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index efc7812..7bb2070 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.2~ynh1", + "version": "4.6.3~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 26ec45d7e8ad9002fc3e4a3fec9ba96e775f70c7 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Wed, 20 Apr 2022 05:02:45 +0000 Subject: [PATCH 20/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cbfd802..a3c2dd1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.2~ynh1 +**Shipped version:** 4.6.3~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 7914c59..907cab2 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.2~ynh1 +**Version incluse :** 4.6.3~ynh1 **Démo :** https://cloud.rocket.chat/trial From 95e05a1185f27901f5f396504f38264c7d26ab08 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 21 Apr 2022 09:11:54 +0200 Subject: [PATCH 21/37] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index b416a64..8701932 100644 --- a/scripts/install +++ b/scripts/install @@ -51,7 +51,7 @@ ynh_script_progression --message="Storing installation settings..." --weight=2 ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url ynh_app_setting_set --app=$app --key=admin --value=$admin -ynh_app_setting_set --app=$app --key=password --value=$password +ynh_app_setting_set --app=$app --key=password --value="$password" ynh_app_setting_set --app=$app --key=email --value=$email #================================================= From b64075eab9e59690d72a03ca4dd4335f05fa2134 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Thu, 21 Apr 2022 09:12:56 +0200 Subject: [PATCH 22/37] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 8701932..36b4392 100644 --- a/scripts/install +++ b/scripts/install @@ -112,7 +112,7 @@ chown -R $app:$app "$final_path" #================================================= ynh_script_progression --message="Configuring NGINX web server..." --weight=2 -# Create a dedicated nginx config +# Create a dedicated NGINX config ynh_add_nginx_config #================================================= From d1f6176a9a92b14688d4cb09db1fcf3bb24952ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 21 Apr 2022 10:52:37 +0200 Subject: [PATCH 23/37] Testing (#112) * 4.6.3 --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- scripts/install | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index cbfd802..a3c2dd1 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.2~ynh1 +**Shipped version:** 4.6.3~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 7914c59..907cab2 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.2~ynh1 +**Version incluse :** 4.6.3~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index d0004fa..75ee45f 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.2/download -SOURCE_SUM=f2b5eb4cc6f0a9bf3255c3699a4911c62d09f7af1d924d1209d6237a599593d8 +SOURCE_URL=https://releases.rocket.chat/4.6.3/download +SOURCE_SUM=a85a71811a488c155eaf4a15d1508bd5d81ee01954e0c14c6e814659491c7b38 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index efc7812..7bb2070 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.2~ynh1", + "version": "4.6.3~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", diff --git a/scripts/install b/scripts/install index b416a64..36b4392 100644 --- a/scripts/install +++ b/scripts/install @@ -51,7 +51,7 @@ ynh_script_progression --message="Storing installation settings..." --weight=2 ynh_app_setting_set --app=$app --key=domain --value=$domain ynh_app_setting_set --app=$app --key=path --value=$path_url ynh_app_setting_set --app=$app --key=admin --value=$admin -ynh_app_setting_set --app=$app --key=password --value=$password +ynh_app_setting_set --app=$app --key=password --value="$password" ynh_app_setting_set --app=$app --key=email --value=$email #================================================= @@ -112,7 +112,7 @@ chown -R $app:$app "$final_path" #================================================= ynh_script_progression --message="Configuring NGINX web server..." --weight=2 -# Create a dedicated nginx config +# Create a dedicated NGINX config ynh_add_nginx_config #================================================= From a8ad5e7877eff1025f72403f822b343cf37336d4 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Wed, 4 May 2022 18:58:28 +0200 Subject: [PATCH 24/37] 4.7.0 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 75ee45f..ad7f83b 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.3/download -SOURCE_SUM=a85a71811a488c155eaf4a15d1508bd5d81ee01954e0c14c6e814659491c7b38 +SOURCE_URL=https://releases.rocket.chat/4.7.0/download +SOURCE_SUM=fb280c61e78e79c0a666428a59fde74902d25f33b78a82078723cd373712b87b SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 7bb2070..7070398 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.3~ynh1", + "version": "4.7.0~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 0d61c1bb93c07faf66b6bda99929a7ad8d7a6353 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Wed, 4 May 2022 16:58:40 +0000 Subject: [PATCH 25/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3c2dd1..1e5ddcd 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.3~ynh1 +**Shipped version:** 4.7.0~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 907cab2..a4b9178 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.3~ynh1 +**Version incluse :** 4.7.0~ynh1 **Démo :** https://cloud.rocket.chat/trial From 1f9c086618acade48ee37e0ece2a530c6ac8f020 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 5 May 2022 00:08:43 +0200 Subject: [PATCH 26/37] Testing (#113) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README * 4.5.5 * Auto-update README * 4.6.0 * Auto-update README * 4.6.1 * Auto-update README * 4.6.2 * Auto-update README * 4.6.3 * Auto-update README * Update install * Update install * 4.7.0 * Auto-update README Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a3c2dd1..1e5ddcd 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.6.3~ynh1 +**Shipped version:** 4.7.0~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 907cab2..a4b9178 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.6.3~ynh1 +**Version incluse :** 4.7.0~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index 75ee45f..ad7f83b 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.6.3/download -SOURCE_SUM=a85a71811a488c155eaf4a15d1508bd5d81ee01954e0c14c6e814659491c7b38 +SOURCE_URL=https://releases.rocket.chat/4.7.0/download +SOURCE_SUM=fb280c61e78e79c0a666428a59fde74902d25f33b78a82078723cd373712b87b SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 7bb2070..7070398 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.6.3~ynh1", + "version": "4.7.0~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From a0047c7ca1bdeb62085115a476b2ea07270b5be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sat, 14 May 2022 18:14:33 +0200 Subject: [PATCH 27/37] 4.7.1 (#114) * 4.7.1 * Auto-update README * Update app.src Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1e5ddcd..07fa23f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.0~ynh1 +**Shipped version:** 4.7.1~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index a4b9178..fe5c0ea 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.0~ynh1 +**Version incluse :** 4.7.1~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index ad7f83b..ca59bed 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.7.0/download -SOURCE_SUM=fb280c61e78e79c0a666428a59fde74902d25f33b78a82078723cd373712b87b +SOURCE_URL=https://releases.rocket.chat/4.7.1/download +SOURCE_SUM=457145954a4e542a5a839223c1724640b8d329f30c3318443f5301afdb7c5b6c SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 7070398..0e8b42a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.0~ynh1", + "version": "4.7.1~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 6f0ddffc81f8e30dc4ea46be95eab51d41afee1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sat, 14 May 2022 18:16:09 +0200 Subject: [PATCH 28/37] Testing (#115) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README * 4.5.5 * Auto-update README * 4.6.0 * Auto-update README * 4.6.1 * Auto-update README * 4.6.2 * Auto-update README * 4.6.3 * Auto-update README * Update install * Update install * 4.7.0 * Auto-update README * 4.7.1 (#114) * 4.7.1 * Auto-update README * Update app.src Co-authored-by: yunohost-bot Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 1e5ddcd..07fa23f 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.0~ynh1 +**Shipped version:** 4.7.1~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index a4b9178..fe5c0ea 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.0~ynh1 +**Version incluse :** 4.7.1~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index ad7f83b..ca59bed 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.7.0/download -SOURCE_SUM=fb280c61e78e79c0a666428a59fde74902d25f33b78a82078723cd373712b87b +SOURCE_URL=https://releases.rocket.chat/4.7.1/download +SOURCE_SUM=457145954a4e542a5a839223c1724640b8d329f30c3318443f5301afdb7c5b6c SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 7070398..0e8b42a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.0~ynh1", + "version": "4.7.1~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 81c303f127d4f24c78914df2fd18bffc484270cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 22 May 2022 08:04:13 +0200 Subject: [PATCH 29/37] 4.7.2 (#116) * 4.7.2 * Auto-update README * Update app.src Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 07fa23f..caf21f7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.1~ynh1 +**Shipped version:** 4.7.2~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index fe5c0ea..2f64c66 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.1~ynh1 +**Version incluse :** 4.7.2~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index ca59bed..dd3c011 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.7.1/download -SOURCE_SUM=457145954a4e542a5a839223c1724640b8d329f30c3318443f5301afdb7c5b6c +SOURCE_URL=https://releases.rocket.chat/4.7.2/download +SOURCE_SUM=3345b6815a59635a373b0356bac5156f9f897a2227c12efcf56d3976559328f2 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 0e8b42a..25154fa 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.1~ynh1", + "version": "4.7.2~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 3b4911c26878ad0c6302f7047c22173f1604bc58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 22 May 2022 08:04:34 +0200 Subject: [PATCH 30/37] Testing (#117) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README * 4.5.5 * Auto-update README * 4.6.0 * Auto-update README * 4.6.1 * Auto-update README * 4.6.2 * Auto-update README * 4.6.3 * Auto-update README * Update install * Update install * 4.7.0 * Auto-update README * 4.7.1 (#114) * 4.7.1 * Auto-update README * Update app.src Co-authored-by: yunohost-bot * 4.7.2 (#116) * 4.7.2 * Auto-update README * Update app.src Co-authored-by: yunohost-bot Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 2 +- README_fr.md | 2 +- conf/app.src | 4 ++-- manifest.json | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 07fa23f..caf21f7 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.1~ynh1 +**Shipped version:** 4.7.2~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index fe5c0ea..2f64c66 100644 --- a/README_fr.md +++ b/README_fr.md @@ -13,7 +13,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.1~ynh1 +**Version incluse :** 4.7.2~ynh1 **Démo :** https://cloud.rocket.chat/trial diff --git a/conf/app.src b/conf/app.src index ca59bed..dd3c011 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.7.1/download -SOURCE_SUM=457145954a4e542a5a839223c1724640b8d329f30c3318443f5301afdb7c5b6c +SOURCE_URL=https://releases.rocket.chat/4.7.2/download +SOURCE_SUM=3345b6815a59635a373b0356bac5156f9f897a2227c12efcf56d3976559328f2 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 0e8b42a..25154fa 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.1~ynh1", + "version": "4.7.2~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 6e6fe6f636f1021b340d93326d713bec3ee84215 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 26 May 2022 21:15:27 +0000 Subject: [PATCH 31/37] Auto-update README --- README.md | 21 +++++++++++---------- README_fr.md | 27 ++++++++++++++++----------- 2 files changed, 27 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index caf21f7..ca3ab19 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It shall NOT be edited by hand. # RocketChat for YunoHost -[![Integration level](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Working status](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) [![Install RocketChat with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat) *[Lire ce readme en français.](./README_fr.md)* @@ -24,7 +24,7 @@ Rocket.Chat is an open-source fully customizable communications platform develop ## Screenshots -![](./doc/screenshots/screenshot.jpg) +![Screenshot of RocketChat](./doc/screenshots/screenshot.jpg) ## Disclaimers / important information @@ -43,22 +43,23 @@ https://support.indie.host/help/fr-fr/13/40 ## Documentation and resources -* Official app website: https://rocket.chat/ -* Official user documentation: https://docs.rocket.chat/guides/user-guides -* Official admin documentation: https://docs.rocket.chat/ -* Upstream app code repository: https://github.com/RocketChat/Rocket.Chat -* YunoHost documentation for this app: https://yunohost.org/app_rocketchat -* Report a bug: https://github.com/YunoHost-Apps/rocketchat_ynh/issues +* Official app website: +* Official user documentation: +* Official admin documentation: +* Upstream app code repository: +* YunoHost documentation for this app: +* Report a bug: ## Developer info Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing). To try the testing branch, please proceed like that. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug or sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ``` -**More info regarding app packaging:** https://yunohost.org/packaging_apps \ No newline at end of file +**More info regarding app packaging:** diff --git a/README_fr.md b/README_fr.md index 2f64c66..4ab5a09 100644 --- a/README_fr.md +++ b/README_fr.md @@ -1,10 +1,14 @@ + + # RocketChat pour YunoHost -[![Niveau d'intégration](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) +[![Niveau d'intégration](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) [![Installer RocketChat avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat) *[Read this readme in english.](./README.md)* -*[Lire ce readme en français.](./README_fr.md)* > *Ce package vous permet d'installer RocketChat rapidement et simplement sur un serveur YunoHost. Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* @@ -19,7 +23,7 @@ Rocket.Chat est une plate-forme de communication open source entièrement person ## Captures d'écran -![](./doc/screenshots/screenshot.jpg) +![Capture d'écran de RocketChat](./doc/screenshots/screenshot.jpg) ## Avertissements / informations importantes @@ -38,22 +42,23 @@ https://support.indie.host/help/fr-fr/13/40 ## Documentations et ressources -* Site officiel de l'app : https://rocket.chat/ -* Documentation officielle utilisateur : https://docs.rocket.chat/guides/user-guides -* Documentation officielle de l'admin : https://docs.rocket.chat/ -* Dépôt de code officiel de l'app : https://github.com/RocketChat/Rocket.Chat -* Documentation YunoHost pour cette app : https://yunohost.org/app_rocketchat -* Signaler un bug : https://github.com/YunoHost-Apps/rocketchat_ynh/issues +* Site officiel de l'app : +* Documentation officielle utilisateur : +* Documentation officielle de l'admin : +* Dépôt de code officiel de l'app : +* Documentation YunoHost pour cette app : +* Signaler un bug : ## Informations pour les développeurs Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing). Pour essayer la branche testing, procédez comme suit. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ou sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps \ No newline at end of file +**Plus d'infos sur le packaging d'applications :** From cff58d71f6fa0d740b626c9a9400264bb6302fd5 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 29 May 2022 22:52:44 +0200 Subject: [PATCH 32/37] Update app.src --- conf/app.src | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/app.src b/conf/app.src index dd3c011..2ca52e9 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ SOURCE_URL=https://releases.rocket.chat/4.7.2/download -SOURCE_SUM=3345b6815a59635a373b0356bac5156f9f897a2227c12efcf56d3976559328f2 +SOURCE_SUM=5d4efecc112932d7214cb0ffbf74531cb778a4d5d17764e6dd42d2de6137e6b2 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true From 4311072d490ddc21d61c56bc726f34447d082163 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sun, 29 May 2022 22:53:15 +0200 Subject: [PATCH 33/37] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 25154fa..c6c0c0f 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.2~ynh1", + "version": "4.7.2~ynh2", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From cc6403271b2d795cae263367b89fa87fbcdf60d0 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sun, 29 May 2022 20:53:23 +0000 Subject: [PATCH 34/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index ca3ab19..0abb410 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.2~ynh1 +**Shipped version:** 4.7.2~ynh2 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 4ab5a09..6dcfb90 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.2~ynh1 +**Version incluse :** 4.7.2~ynh2 **Démo :** https://cloud.rocket.chat/trial From 9280c034e8843e7e69622f0daa02ee74c916faa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 29 May 2022 22:53:30 +0200 Subject: [PATCH 35/37] Testing (#118) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add doctl test files * Fix nodejs installation * Improve droplet create * Improve droplet create * Improve droplet create * Modify pkgchk config * Modify pkgchk config * Add testconfig again * Use new helpers and restrict arch * Upgrade test setup * Add selamanses key * Add fingerprint as key id * Use prebuilt image * Remove variables in app.src * Add cleanup cmds * Fix upgrade * Remove apt-key warning * Revert travis * Revert apt-key setting and restore modifications (#70) * Fix linter issues * Fix linter issues * Fix ynh_replace_string arguments * Update README.md * Enh testing (#77) * Make it work again (#71) * Auto-update README * Fix linter * Fix * Fix * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Update install * Fix * 3.16.2 * Auto-update README * Update install * Update install * Update install * fix * Update install * Update install * Update install * Update systemd.service * Update install * Update install * Fix * Update install * Update install * Update systemd.service * Update systemd.service * Update install * Fix * Update systemd.service * Fix * Auto-update README * Fix * Update systemd.service * Update install * 4.1.2 * Auto-update README * Add logrotate * Update install * Add templates * Fix * Update upgrade * Fix * Fix * Fix * Fix * Fix * Add description * Auto-update README * fix * Fix * Fix * Set admin (#85) * Add admin * Delete updater.yml * 4.2.0 * Auto-update README * Update install * Update check_process * 4.2.1 (#90) * 4.2.1 * 4.2.2 (#93) * 4.2.2 * 4.3.0 (#96) * 4.3.0 * 4.3.1 (#99) * fix * Update app.src * Auto-update README Co-authored-by: Yunohost-Bot <> * Fédération * Auto-update README * Update manifest.json * Auto-update README * 4.3.2 (#101) * 4.3.2 * Update _common.sh * 4.4.0 (#103) * 4.4.0 * Auto-update README Co-authored-by: Yunohost-Bot <> * Fix linter * 4.5.0 * Auto-update README * Update manifest.json * 4.5.3 * Auto-update README * Update remove (#106) * 4.5.4 * Auto-update README * Auto-update README * 4.5.5 * Auto-update README * 4.6.0 * Auto-update README * 4.6.1 * Auto-update README * 4.6.2 * Auto-update README * 4.6.3 * Auto-update README * Update install * Update install * 4.7.0 * Auto-update README * 4.7.1 (#114) * 4.7.1 * Auto-update README * Update app.src Co-authored-by: yunohost-bot * 4.7.2 (#116) * 4.7.2 * Auto-update README * Update app.src Co-authored-by: yunohost-bot * Auto-update README * Update app.src * Update manifest.json * Auto-update README Co-authored-by: Selamanse Co-authored-by: Selamanse Co-authored-by: Yunohost-Bot <> Co-authored-by: yunohost-bot --- README.md | 23 ++++++++++++----------- README_fr.md | 29 +++++++++++++++++------------ conf/app.src | 2 +- manifest.json | 2 +- 4 files changed, 31 insertions(+), 25 deletions(-) diff --git a/README.md b/README.md index caf21f7..0abb410 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ It shall NOT be edited by hand. # RocketChat for YunoHost -[![Integration level](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) +[![Integration level](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Working status](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) [![Install RocketChat with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat) *[Lire ce readme en français.](./README_fr.md)* @@ -18,13 +18,13 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.2~ynh1 +**Shipped version:** 4.7.2~ynh2 **Demo:** https://cloud.rocket.chat/trial ## Screenshots -![](./doc/screenshots/screenshot.jpg) +![Screenshot of RocketChat](./doc/screenshots/screenshot.jpg) ## Disclaimers / important information @@ -43,22 +43,23 @@ https://support.indie.host/help/fr-fr/13/40 ## Documentation and resources -* Official app website: https://rocket.chat/ -* Official user documentation: https://docs.rocket.chat/guides/user-guides -* Official admin documentation: https://docs.rocket.chat/ -* Upstream app code repository: https://github.com/RocketChat/Rocket.Chat -* YunoHost documentation for this app: https://yunohost.org/app_rocketchat -* Report a bug: https://github.com/YunoHost-Apps/rocketchat_ynh/issues +* Official app website: +* Official user documentation: +* Official admin documentation: +* Upstream app code repository: +* YunoHost documentation for this app: +* Report a bug: ## Developer info Please send your pull request to the [testing branch](https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing). To try the testing branch, please proceed like that. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug or sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ``` -**More info regarding app packaging:** https://yunohost.org/packaging_apps \ No newline at end of file +**More info regarding app packaging:** diff --git a/README_fr.md b/README_fr.md index 2f64c66..6dcfb90 100644 --- a/README_fr.md +++ b/README_fr.md @@ -1,10 +1,14 @@ + + # RocketChat pour YunoHost -[![Niveau d'intégration](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) +[![Niveau d'intégration](https://dash.yunohost.org/integration/rocketchat.svg)](https://dash.yunohost.org/appci/app/rocketchat) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/rocketchat.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/rocketchat.maintain.svg) [![Installer RocketChat avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=rocketchat) *[Read this readme in english.](./README.md)* -*[Lire ce readme en français.](./README_fr.md)* > *Ce package vous permet d'installer RocketChat rapidement et simplement sur un serveur YunoHost. Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.* @@ -13,13 +17,13 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.2~ynh1 +**Version incluse :** 4.7.2~ynh2 **Démo :** https://cloud.rocket.chat/trial ## Captures d'écran -![](./doc/screenshots/screenshot.jpg) +![Capture d'écran de RocketChat](./doc/screenshots/screenshot.jpg) ## Avertissements / informations importantes @@ -38,22 +42,23 @@ https://support.indie.host/help/fr-fr/13/40 ## Documentations et ressources -* Site officiel de l'app : https://rocket.chat/ -* Documentation officielle utilisateur : https://docs.rocket.chat/guides/user-guides -* Documentation officielle de l'admin : https://docs.rocket.chat/ -* Dépôt de code officiel de l'app : https://github.com/RocketChat/Rocket.Chat -* Documentation YunoHost pour cette app : https://yunohost.org/app_rocketchat -* Signaler un bug : https://github.com/YunoHost-Apps/rocketchat_ynh/issues +* Site officiel de l'app : +* Documentation officielle utilisateur : +* Documentation officielle de l'admin : +* Dépôt de code officiel de l'app : +* Documentation YunoHost pour cette app : +* Signaler un bug : ## Informations pour les développeurs Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing). Pour essayer la branche testing, procédez comme suit. -``` + +``` bash sudo yunohost app install https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ou sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug ``` -**Plus d'infos sur le packaging d'applications :** https://yunohost.org/packaging_apps \ No newline at end of file +**Plus d'infos sur le packaging d'applications :** diff --git a/conf/app.src b/conf/app.src index dd3c011..2ca52e9 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ SOURCE_URL=https://releases.rocket.chat/4.7.2/download -SOURCE_SUM=3345b6815a59635a373b0356bac5156f9f897a2227c12efcf56d3976559328f2 +SOURCE_SUM=5d4efecc112932d7214cb0ffbf74531cb778a4d5d17764e6dd42d2de6137e6b2 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index 25154fa..c6c0c0f 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.2~ynh1", + "version": "4.7.2~ynh2", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From 3d2b968c0bcc10e2f8d665f2314b41aec9fc8a9c Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Tue, 31 May 2022 08:49:38 +0200 Subject: [PATCH 36/37] 4.7.4 --- conf/app.src | 4 ++-- manifest.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/app.src b/conf/app.src index 2ca52e9..e4c233a 100644 --- a/conf/app.src +++ b/conf/app.src @@ -1,5 +1,5 @@ -SOURCE_URL=https://releases.rocket.chat/4.7.2/download -SOURCE_SUM=5d4efecc112932d7214cb0ffbf74531cb778a4d5d17764e6dd42d2de6137e6b2 +SOURCE_URL=https://releases.rocket.chat/4.7.4/download +SOURCE_SUM=bc479348499e86beb4ea6a681ddc5bd6fdb77f0c16bd69bb5aef13779a1b0e73 SOURCE_SUM_PRG=sha256sum SOURCE_FORMAT=tar.gz SOURCE_IN_SUBDIR=true diff --git a/manifest.json b/manifest.json index c6c0c0f..364050a 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Team collaboration communication platform", "fr": "Plateforme de communication collaborative en équipe" }, - "version": "4.7.2~ynh2", + "version": "4.7.4~ynh1", "url": "https://rocket.chat", "upstream": { "license": "GPL-3.0", From acd9ce9556183eec5b059874d89301f733e217e1 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 31 May 2022 06:49:46 +0000 Subject: [PATCH 37/37] Auto-update README --- README.md | 2 +- README_fr.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0abb410..0f8e336 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Rocket.Chat is an open-source fully customizable communications platform developed in JavaScript for organizations with high standards of data protection. -**Shipped version:** 4.7.2~ynh2 +**Shipped version:** 4.7.4~ynh1 **Demo:** https://cloud.rocket.chat/trial diff --git a/README_fr.md b/README_fr.md index 6dcfb90..924c0d7 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,7 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données. -**Version incluse :** 4.7.2~ynh2 +**Version incluse :** 4.7.4~ynh1 **Démo :** https://cloud.rocket.chat/trial