From ab70c31c096bbc1895aee96d95024f126592a876 Mon Sep 17 00:00:00 2001 From: OniriCorpe Date: Mon, 2 Jan 2023 00:27:19 +0100 Subject: [PATCH 01/21] changing the time between cron runs to the recommended value --- conf/nextcloud.cron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/nextcloud.cron b/conf/nextcloud.cron index 13de049..a2be7ed 100644 --- a/conf/nextcloud.cron +++ b/conf/nextcloud.cron @@ -1 +1 @@ -*/15 * * * * __APP__ /usr/bin/php__PHPVERSION__ --define apc.enable_cli=1 -f __FINAL_PATH__/cron.php +*/5 * * * * __APP__ /usr/bin/php__PHPVERSION__ --define apc.enable_cli=1 -f __FINAL_PATH__/cron.php From 466bb07d12467a321447b1c74e898c35a11c5b34 Mon Sep 17 00:00:00 2001 From: Mayeul Cantan Date: Wed, 18 Jan 2023 16:21:40 +0100 Subject: [PATCH 02/21] nginx.conf: support PATCH method --- conf/nginx.conf | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/nginx.conf b/conf/nginx.conf index 2678d48..17a1159 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -123,6 +123,9 @@ location ^~ __PATH__/ { if ($request_method ~ ^DELETE$) { rewrite ^ __PATH__/index.php$request_uri last; } + if ($request_method ~ ^PATCH$) { + rewrite ^ __PATH__/index.php$request_uri last; + } try_files $uri / __PATH__/index.php$request_uri; } From a7dfe1ed06155ffce3eacfd1f3e8cd6c25eaecf1 Mon Sep 17 00:00:00 2001 From: Mayeul Cantan Date: Mon, 23 Jan 2023 09:36:57 +0100 Subject: [PATCH 03/21] Merge http verb handling --- conf/nginx.conf | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 17a1159..d6b7aa9 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -117,13 +117,7 @@ location ^~ __PATH__/ { } location ~ / { - if ($request_method ~ ^PUT$) { - rewrite ^ __PATH__/index.php$request_uri last; - } - if ($request_method ~ ^DELETE$) { - rewrite ^ __PATH__/index.php$request_uri last; - } - if ($request_method ~ ^PATCH$) { + if ($request_method ~ ^(PUT|DELETE|PATCH)$) { rewrite ^ __PATH__/index.php$request_uri last; } try_files $uri / __PATH__/index.php$request_uri; From 79ac36bc280fc040f3358d7d102a88088e4d08be Mon Sep 17 00:00:00 2001 From: pp-r <64266134+pp-r@users.noreply.github.com> Date: Tue, 31 Jan 2023 02:19:13 +0100 Subject: [PATCH 04/21] opcache.interned_strings_buffer higher 8 (#535) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * opcache.interned_strings_buffer > 8 Because I got a warning about it in the Nextcloud settings. The recommendation should be higher than 8 so randomly i've put 10, restart php-fpm and no more warning. * [enh] Remove warning interned_strings_buffer --------- Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> Co-authored-by: ljf (zamentur) --- conf/extra_php-fpm.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index adfd579..5657e27 100644 --- a/conf/extra_php-fpm.conf +++ b/conf/extra_php-fpm.conf @@ -10,7 +10,7 @@ php_value[default_charset] = UTF-8 ; The following parameters are nevertheless recommended for Nextcloud ; see here: https://docs.nextcloud.com/server/15/admin_manual/installation/server_tuning.html#enable-php-opcache php_value[opcache.enable_cli]=1 -php_value[opcache.interned_strings_buffer]=8 +php_value[opcache.interned_strings_buffer]=16 php_value[opcache.max_accelerated_files]=10000 php_value[opcache.memory_consumption]=128 php_value[opcache.save_comments]=1 From 9f1312d30865082a2d919dbbfe5f0c3e740383e4 Mon Sep 17 00:00:00 2001 From: AlexF Date: Sat, 12 Nov 2022 22:03:49 +0100 Subject: [PATCH 05/21] Fix backward upgrade compatibility --- scripts/upgrade | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 968c96d..573fb4f 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -207,10 +207,12 @@ ynh_add_nginx_config # Define a function to execute commands with `occ` exec_occ() { - # Backward compatibility to upgrade from NC14 or older version - if [ $current_major_version = "last" ] || [ $current_major_version -ge 15 ] + # Backward compatibility to upgrade from older versions + if [ $current_major_version = "last" ] || [ $current_major_version -ge 20 ] then NEXTCLOUD_PHP_VERSION=$phpversion + elif [ $current_major_version -ge 15 ] + NEXTCLOUD_PHP_VERSION="7.4" else NEXTCLOUD_PHP_VERSION="7.0" fi From d94b85cbf5dec71140eadf45214c49048c8e6243 Mon Sep 17 00:00:00 2001 From: AlexF Date: Sat, 12 Nov 2022 22:10:20 +0100 Subject: [PATCH 06/21] Fix backward upgrade compatibility --- scripts/upgrade | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/upgrade b/scripts/upgrade index 573fb4f..8763d22 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -212,6 +212,7 @@ exec_occ() { then NEXTCLOUD_PHP_VERSION=$phpversion elif [ $current_major_version -ge 15 ] + then NEXTCLOUD_PHP_VERSION="7.4" else NEXTCLOUD_PHP_VERSION="7.0" From f86b5b78b4b57438cccf015d8292670a2490b6ed Mon Sep 17 00:00:00 2001 From: AlexF Date: Sat, 12 Nov 2022 22:24:57 +0100 Subject: [PATCH 07/21] Fix backward upgrade compatibility --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index 8763d22..dfbcf73 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -208,7 +208,7 @@ ynh_add_nginx_config # Define a function to execute commands with `occ` exec_occ() { # Backward compatibility to upgrade from older versions - if [ $current_major_version = "last" ] || [ $current_major_version -ge 20 ] + if [ $current_major_version = "last" ] || [ $current_major_version -ge 21 ] then NEXTCLOUD_PHP_VERSION=$phpversion elif [ $current_major_version -ge 15 ] From c0cd2b70988bd53bf65e973ebb3b88087647420d Mon Sep 17 00:00:00 2001 From: AlexF Date: Sun, 13 Nov 2022 01:01:44 +0100 Subject: [PATCH 08/21] Fix v22 to v23 upgrade --- scripts/upgrade.d/upgrade.21.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/upgrade.d/upgrade.21.sh b/scripts/upgrade.d/upgrade.21.sh index f617405..1be1435 100644 --- a/scripts/upgrade.d/upgrade.21.sh +++ b/scripts/upgrade.d/upgrade.21.sh @@ -1,7 +1,7 @@ #!/bin/bash # Last available nextcloud version -next_version="22.0.0" +next_version="22.2.10" # Nextcloud tarball checksum sha256 -nextcloud_source_sha256="3911d3754c37aca7c9b5f3b2b37513c0f2b5bb979af00816c1117b1eedbc5d7a" +nextcloud_source_sha256="8de167bfcfcaa661245a00a5ac36628e7961951b9fe2dfaf4f8a5aac6907ccdb" From 771d79c9895f22454a77333cbe217464eca09b10 Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Tue, 31 Jan 2023 03:02:28 +0100 Subject: [PATCH 09/21] [fix] PHP version to recommended value --- scripts/upgrade | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index dfbcf73..5ada4d1 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -208,9 +208,12 @@ ynh_add_nginx_config # Define a function to execute commands with `occ` exec_occ() { # Backward compatibility to upgrade from older versions - if [ $current_major_version = "last" ] || [ $current_major_version -ge 21 ] + if [ $current_major_version = "last" ] || [ $current_major_version -ge 25 ] then NEXTCLOUD_PHP_VERSION=$phpversion + elif [ $current_major_version -ge 21 ] + then + NEXTCLOUD_PHP_VERSION="8.0" elif [ $current_major_version -ge 15 ] then NEXTCLOUD_PHP_VERSION="7.4" From 56cc5a2983a5cac2124782bc09a02233d78a2e64 Mon Sep 17 00:00:00 2001 From: "ljf (zamentur)" Date: Tue, 31 Jan 2023 03:39:43 +0100 Subject: [PATCH 10/21] [fix] PHP version during upgrade --- scripts/upgrade | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 5ada4d1..11e0e2c 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -208,12 +208,9 @@ ynh_add_nginx_config # Define a function to execute commands with `occ` exec_occ() { # Backward compatibility to upgrade from older versions - if [ $current_major_version = "last" ] || [ $current_major_version -ge 25 ] + if [ $current_major_version = "last" ] || [ $current_major_version -ge 24 ] then NEXTCLOUD_PHP_VERSION=$phpversion - elif [ $current_major_version -ge 21 ] - then - NEXTCLOUD_PHP_VERSION="8.0" elif [ $current_major_version -ge 15 ] then NEXTCLOUD_PHP_VERSION="7.4" From e1e1be0a053418cd8a6c3327a27b858c924f27be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 3 Feb 2023 22:20:48 +0100 Subject: [PATCH 11/21] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index fa5a113..6a95801 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Online storage, file sharing platform and various other applications", "fr": "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications" }, - "version": "25.0.3~ynh1", + "version": "25.0.3~ynh2", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", From 795b4492d688c12bab6b5ac1c4b99961211fe351 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 3 Feb 2023 21:20:53 +0000 Subject: [PATCH 12/21] 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 d52ad1a..41c89dc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Online storage, file sharing platform and various other applications -**Shipped version:** 25.0.3~ynh1 +**Shipped version:** 25.0.3~ynh2 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index b545aac..185c8c8 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) po Stockage en ligne, plateforme de partage de fichiers et diverses autres applications -**Version incluse :** 25.0.3~ynh1 +**Version incluse :** 25.0.3~ynh2 **Démo :** https://demo.nextcloud.com/ From 41dac63c3a985b54c4eb96ce37e881a5433a3f73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 3 Feb 2023 22:50:18 +0100 Subject: [PATCH 13/21] Add description --- doc/DESCRIPTION.md | 1 + doc/DESCRIPTION_fr.md | 1 + 2 files changed, 2 insertions(+) create mode 100644 doc/DESCRIPTION.md create mode 100644 doc/DESCRIPTION_fr.md diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md new file mode 100644 index 0000000..c3735cd --- /dev/null +++ b/doc/DESCRIPTION.md @@ -0,0 +1 @@ +Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. diff --git a/doc/DESCRIPTION_fr.md b/doc/DESCRIPTION_fr.md new file mode 100644 index 0000000..4b854b5 --- /dev/null +++ b/doc/DESCRIPTION_fr.md @@ -0,0 +1 @@ +Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. \ No newline at end of file From 654f71b62b73521f9ceab59bc29d487df9c2de7a Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 3 Feb 2023 21:50:23 +0000 Subject: [PATCH 14/21] Auto-update README --- README.md | 3 ++- README_fr.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 41c89dc..603b805 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview -Online storage, file sharing platform and various other applications +Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. + **Shipped version:** 25.0.3~ynh2 diff --git a/README_fr.md b/README_fr.md index 185c8c8..9896326 100644 --- a/README_fr.md +++ b/README_fr.md @@ -15,7 +15,7 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po ## Vue d’ensemble -Stockage en ligne, plateforme de partage de fichiers et diverses autres applications +Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. **Version incluse :** 25.0.3~ynh2 From 035a05d7fcf2e33e05e296e79bc502df42d52632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Sun, 5 Feb 2023 19:19:39 +0100 Subject: [PATCH 15/21] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 6a95801..61893c8 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Online storage, file sharing platform and various other applications", "fr": "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications" }, - "version": "25.0.3~ynh2", + "version": "25.0.3~ynh3", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", From 5ae34e0d6378042591ad6d18afd3f3dbd8031302 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sun, 5 Feb 2023 18:19:46 +0000 Subject: [PATCH 16/21] 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 603b805..06ec283 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 Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. -**Shipped version:** 25.0.3~ynh2 +**Shipped version:** 25.0.3~ynh3 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index 9896326..ccd7e06 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) po Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. -**Version incluse :** 25.0.3~ynh2 +**Version incluse :** 25.0.3~ynh3 **Démo :** https://demo.nextcloud.com/ From 1a1d5e66d80f22a83f01a9a5fa9c2e8f8d1adbb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 9 Feb 2023 16:53:15 +0100 Subject: [PATCH 17/21] bump opcache.interned_strings_buffer to 32 --- conf/extra_php-fpm.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/extra_php-fpm.conf b/conf/extra_php-fpm.conf index 5657e27..4e9d349 100644 --- a/conf/extra_php-fpm.conf +++ b/conf/extra_php-fpm.conf @@ -10,7 +10,7 @@ php_value[default_charset] = UTF-8 ; The following parameters are nevertheless recommended for Nextcloud ; see here: https://docs.nextcloud.com/server/15/admin_manual/installation/server_tuning.html#enable-php-opcache php_value[opcache.enable_cli]=1 -php_value[opcache.interned_strings_buffer]=16 +php_value[opcache.interned_strings_buffer]=32 php_value[opcache.max_accelerated_files]=10000 php_value[opcache.memory_consumption]=128 php_value[opcache.save_comments]=1 From 7bf743a0f9f483d7ccd1d2496b8d984bde97c760 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 9 Feb 2023 21:21:58 +0100 Subject: [PATCH 18/21] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 61893c8..bc77194 100644 --- a/manifest.json +++ b/manifest.json @@ -6,7 +6,7 @@ "en": "Online storage, file sharing platform and various other applications", "fr": "Stockage en ligne, plateforme de partage de fichiers et diverses autres applications" }, - "version": "25.0.3~ynh3", + "version": "25.0.3~ynh4", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", From 1e105e2e47b7cc19add59ca24cbc305f8cd7e410 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Thu, 9 Feb 2023 20:22:11 +0000 Subject: [PATCH 19/21] 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 06ec283..4dfcea4 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 Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. -**Shipped version:** 25.0.3~ynh3 +**Shipped version:** 25.0.3~ynh4 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index ccd7e06..a81f151 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) po Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. -**Version incluse :** 25.0.3~ynh3 +**Version incluse :** 25.0.3~ynh4 **Démo :** https://demo.nextcloud.com/ From 80958076207ebc2e61b895a72eec5f3961f62cd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 10 Feb 2023 14:57:47 +0100 Subject: [PATCH 20/21] add features --- doc/DESCRIPTION.md | 11 +++++++++++ doc/DESCRIPTION_fr.md | 12 +++++++++++- doc/DISCLAIMER.md | 2 -- doc/DISCLAIMER_fr.md | 13 ------------- 4 files changed, 22 insertions(+), 16 deletions(-) diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index c3735cd..c34ade1 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -1 +1,12 @@ Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. + +### YunoHost features: + +In addition to Nextcloud core features, the following are made available with +this package: + + * Integrate with YunoHost users and SSO - i.e. logout button + * Allow one user to be the administrator (set at the installation) + * Allow multiple instances of this application + * Optionally access the user home folder from Nextcloud files (set at the installation, the sharing is enabled by default) + * Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal diff --git a/doc/DESCRIPTION_fr.md b/doc/DESCRIPTION_fr.md index 4b854b5..6986c9b 100644 --- a/doc/DESCRIPTION_fr.md +++ b/doc/DESCRIPTION_fr.md @@ -1 +1,11 @@ -Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. \ No newline at end of file +Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. + +### Caractéristiques spécifiques YunoHost : + +En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suivantes sont incluses dans ce package : + + * Intégration avec les utilisateurs YunoHost et le SSO - exemple, le bouton de déconnexion + * Permet à un utilisateur d'être l'administrateur (choisi à l'installation) + * Permet de multiples instances de cette application + * Accès optionnel au répertoire home depuis les fichiers Nextcloud (à activer à l'installation, le partage étant activé par défaut) + * Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, baikal diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 0a73710..f638edd 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1,5 +1,3 @@ -## Configuration - ### Configure ONLYOFFICE integration #### With Nextcloud App (no ARM support, lower performance) diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 343894c..2110000 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -1,5 +1,3 @@ -## Configuration - ### Configurer l'intégration d'ONLYOFFICE #### Avec l'application Nextcloud (pas de support ARM, performances limitées) @@ -16,14 +14,3 @@ Pour l'installer et la configurer : #### Avec l'application YunoHost (support ARM64, meilleures performances) Pour de meilleures performances et le support de ARM64, installez l'app YunoHost ONLYOFFICE, voir le tutoriel dans la [doc du paquet onlyoffice_ynh](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) - - -## Caractéristiques spécifiques YunoHost - -En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suivantes sont incluses dans ce package : - - * Intégration avec les utilisateurs YunoHost et le SSO - exemple, le bouton de déconnexion - * Permet à un utilisateur d'être l'administrateur (choisi à l'installation) - * Permet de multiples instances de cette application - * Accès optionnel au répertoire home depuis les fichiers Nextcloud (à activer à l'installation, le partage étant activé par défaut) - * Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, baikal From cba41ec0c32302391f8fd82af94f4b76ddc6c7e6 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 10 Feb 2023 13:57:52 +0000 Subject: [PATCH 21/21] Auto-update README --- README.md | 13 +++++++++++-- README_fr.md | 24 +++++++++++------------- 2 files changed, 22 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 4dfcea4..10d685f 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,17 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in Nextcloud Hub is a fully open-source on-premises content collaboration platform. Teams access, share and edit their documents, chat and participate in video calls and manage their mail and calendar and projects across mobile, desktop and web interfaces. +### YunoHost features: + +In addition to Nextcloud core features, the following are made available with +this package: + + * Integrate with YunoHost users and SSO - i.e. logout button + * Allow one user to be the administrator (set at the installation) + * Allow multiple instances of this application + * Optionally access the user home folder from Nextcloud files (set at the installation, the sharing is enabled by default) + * Serve `/.well-known` paths for CalDAV and CardDAV on the domain only if it's not already served - i.e. by Baïkal + **Shipped version:** 25.0.3~ynh4 @@ -28,8 +39,6 @@ Nextcloud Hub is a fully open-source on-premises content collaboration platform. ## Disclaimers / important information -## Configuration - ### Configure ONLYOFFICE integration #### With Nextcloud App (no ARM support, lower performance) diff --git a/README_fr.md b/README_fr.md index a81f151..ba67f2e 100644 --- a/README_fr.md +++ b/README_fr.md @@ -17,6 +17,17 @@ Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièrement open source. Les équipes accèdent, partagent et modifient leurs documents, discutent et participent à des appels vidéo et gèrent leur courrier, leur calendrier et leurs projets sur des interfaces mobiles, de bureau et Web. +### Caractéristiques spécifiques YunoHost : + +En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suivantes sont incluses dans ce package : + + * Intégration avec les utilisateurs YunoHost et le SSO - exemple, le bouton de déconnexion + * Permet à un utilisateur d'être l'administrateur (choisi à l'installation) + * Permet de multiples instances de cette application + * Accès optionnel au répertoire home depuis les fichiers Nextcloud (à activer à l'installation, le partage étant activé par défaut) + * Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, baikal + + **Version incluse :** 25.0.3~ynh4 **Démo :** https://demo.nextcloud.com/ @@ -27,8 +38,6 @@ Nextcloud Hub est la plate-forme de collaboration de contenu sur site entièreme ## Avertissements / informations importantes -## Configuration - ### Configurer l'intégration d'ONLYOFFICE #### Avec l'application Nextcloud (pas de support ARM, performances limitées) @@ -46,17 +55,6 @@ Pour l'installer et la configurer : Pour de meilleures performances et le support de ARM64, installez l'app YunoHost ONLYOFFICE, voir le tutoriel dans la [doc du paquet onlyoffice_ynh](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) - -## Caractéristiques spécifiques YunoHost - -En plus des fonctionnalités principales de Nextcloud, les fonctionnalités suivantes sont incluses dans ce package : - - * Intégration avec les utilisateurs YunoHost et le SSO - exemple, le bouton de déconnexion - * Permet à un utilisateur d'être l'administrateur (choisi à l'installation) - * Permet de multiples instances de cette application - * Accès optionnel au répertoire home depuis les fichiers Nextcloud (à activer à l'installation, le partage étant activé par défaut) - * Utilise l'adresse `/.well-known` pour la synchronisation CalDAV et CardDAV du domaine si aucun autre service ne l'utilise déjà - par exemple, baikal - ## Documentations et ressources * Site officiel de l’app :