From 5b0f933297c03aa80b7f8aafab7bcada38ebc61a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 1 Dec 2022 15:37:20 +0100 Subject: [PATCH 01/18] Update install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index c61b9e8..7a7be8e 100755 --- a/scripts/install +++ b/scripts/install @@ -41,7 +41,7 @@ test ! -e "$final_path" || ynh_die --message="This path already contains a folde ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url # Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) -if [ $YNH_ARCH == "i386" ]; +if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support" fi From 6bca7a7c8b6280e0ffc9089fac6deaad5999a309 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 1 Dec 2022 15:38:36 +0100 Subject: [PATCH 02/18] Update upgrade --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index cc65142..b83261d 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -35,7 +35,7 @@ fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage) upgrade_type=$(ynh_check_app_version_changed) # Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) -if [ $YNH_ARCH == "i386" ]; +if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support" fi From c5cf91ad30149e1924c23b19e93f483c3ed3edd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Fri, 9 Dec 2022 16:26:33 +0100 Subject: [PATCH 03/18] 25.0.2 --- manifest.json | 2 +- scripts/upgrade.d/upgrade.last.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 799055d..09a85d6 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.1~ynh1", + "version": "25.0.2~ynh1", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", diff --git a/scripts/upgrade.d/upgrade.last.sh b/scripts/upgrade.d/upgrade.last.sh index 4b026f4..2c5bafd 100644 --- a/scripts/upgrade.d/upgrade.last.sh +++ b/scripts/upgrade.d/upgrade.last.sh @@ -1,7 +1,7 @@ #!/bin/bash # Last available Nextcloud version -next_version="25.0.1" +next_version="25.0.2" # Nextcloud tarball checksum sha256 -nextcloud_source_sha256="72d4076924caf19139c40178597af6211799e20440ce196fb43b9c4e47d77515" +nextcloud_source_sha256="d6ab40faa108937bda42395f570ff111f4c97343b55be1420024da3177e37d59" From 46bd6d27060b1f5569a640231c2fc976184e22e0 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Fri, 9 Dec 2022 15:26:38 +0000 Subject: [PATCH 04/18] 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 6fc7650..3d88a5c 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.1~ynh1 +**Shipped version:** 25.0.2~ynh1 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index e441d52..6ed96f2 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 Stockage en ligne, plateforme de partage de fichiers et diverses autres applications -**Version incluse :** 25.0.1~ynh1 +**Version incluse :** 25.0.2~ynh1 **Démo :** https://demo.nextcloud.com/ From 9ba5ca3848c3760329bf73bd578cc1002df06118 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 10 Dec 2022 18:52:00 +0100 Subject: [PATCH 05/18] 32 bit warning : don't block upgrades --- scripts/upgrade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/upgrade b/scripts/upgrade index b83261d..4b95ab9 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -37,7 +37,7 @@ upgrade_type=$(ynh_check_app_version_changed) # Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then - ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support" + ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." fi #================================================= From e0f7b241b52b645849704a8d1c4ce3f0fffe7fc8 Mon Sep 17 00:00:00 2001 From: lapineige Date: Sat, 10 Dec 2022 18:52:24 +0100 Subject: [PATCH 06/18] 32-bit warning : don't block install --- scripts/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install b/scripts/install index 7a7be8e..0b33d85 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,7 @@ ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url # Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then - ynh_die --message="Sorry, Nextcloud has deprecated 32-bit support" + ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." fi #================================================= From 862de41da4152b981716c436ebd00187db9cf3e9 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 10 Dec 2022 19:03:27 +0100 Subject: [PATCH 07/18] Update manifest.json --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 09a85d6..f806298 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.2~ynh1", + "version": "25.0.2~ynh2", "url": "https://nextcloud.com", "upstream": { "license": "AGPL-3.0", From 78e934b8cfd44e9d23aefa5146982bf18d45a6f0 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 10 Dec 2022 18:03:32 +0000 Subject: [PATCH 08/18] 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 3d88a5c..d6ba44d 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.2~ynh1 +**Shipped version:** 25.0.2~ynh2 **Demo:** https://demo.nextcloud.com/ diff --git a/README_fr.md b/README_fr.md index 6ed96f2..0d82a8a 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 Stockage en ligne, plateforme de partage de fichiers et diverses autres applications -**Version incluse :** 25.0.2~ynh1 +**Version incluse :** 25.0.2~ynh2 **Démo :** https://demo.nextcloud.com/ From 2dd5c1e3344bcefaaa9082c1294eb0ebeeca88f2 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 10 Dec 2022 19:09:43 +0100 Subject: [PATCH 09/18] fic comment --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index 0b33d85..b9a2010 100755 --- a/scripts/install +++ b/scripts/install @@ -40,7 +40,7 @@ test ! -e "$final_path" || ynh_die --message="This path already contains a folde # Register (book) web path ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url -# Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) +# Check machine architecture (26.0 Nextcloud version will drop support for 32bit architectures) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." diff --git a/scripts/upgrade b/scripts/upgrade index 4b95ab9..28f1240 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -34,7 +34,7 @@ fpm_usage=$(ynh_app_setting_get --app=$app --key=fpm_usage) upgrade_type=$(ynh_check_app_version_changed) -# Check machine architecture (Seens 25.0 Nextcloud doesn't support 32bit machines) +# Check machine architecture (26.0 Nextcloud version will drop support for 32bit architectures) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." From d0682fe8a38596d26c99147129764adbcdae3691 Mon Sep 17 00:00:00 2001 From: ericgaspar Date: Sat, 10 Dec 2022 19:11:42 +0100 Subject: [PATCH 10/18] Fix typo --- scripts/install | 2 +- scripts/upgrade | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install b/scripts/install index b9a2010..eeb0e98 100755 --- a/scripts/install +++ b/scripts/install @@ -43,7 +43,7 @@ ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url # Check machine architecture (26.0 Nextcloud version will drop support for 32bit architectures) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then - ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." + ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit architectures." fi #================================================= diff --git a/scripts/upgrade b/scripts/upgrade index 28f1240..5c8fc10 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -37,7 +37,7 @@ upgrade_type=$(ynh_check_app_version_changed) # Check machine architecture (26.0 Nextcloud version will drop support for 32bit architectures) if [ $YNH_ARCH == "i386" ] || [ $YNH_ARCH == "armhf" ] then - ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit archytectures." + ynh_print_warn --message="Nextcloud has deprecated 32-bit support. Version 25 is the last one to support 32-bit architectures." fi #================================================= From 892884139d1279fea3f4f3c7e48e7e8b4a091e9a Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Wed, 21 Dec 2022 10:17:32 +0100 Subject: [PATCH 11/18] link tutorial on installing onlyoffice_ynh for arm --- doc/DISCLAIMER.md | 19 +++++++++++++------ doc/DISCLAIMER_fr.md | 21 ++++++++++++++------- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index ff9f640..67aa5e7 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -1,15 +1,22 @@ ## Configuration -#### Configure OnlyOffice integration +### Configure ONLYOFFICE integration -Starting from Nextcloud 18, it features a direct integration of OnlyOffice (an online rich text document editor) through a Nextcloud app. +#### with Nextcloud App (no ARM support, lower performance) + +Starting from Nextcloud 18, it features a direct integration of ONLYOFFICE (an online rich text document editor) through a Nextcloud app. To install and configure it: -- Install *Community Document Server* application in your Nextcloud. That's the part that runs OnlyOffice server. -- Install *ONLYOFFICE* application. That's the client part that will connect to an OnlyOffice server. -- Then in Settings -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), if you want to configure which file formats should be opened by OnlyOffice. +- Install *Community Document Server* application in your Nextcloud. That's the part that runs ONLYOFFICE server. +- Install *ONLYOFFICE* application. That's the client part that will connect to an ONLYOFFICE server. +- Then in Settings -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), if you want to configure which file formats should be opened by ONLYOFFICE. - Here you go :) You should be able to create new type of documents and open them. -*NB: OnlyOffice is only available for x86 architecture - **ARM** architecture is **not** supported (Raspberry Pi, OLinuXino...)* +*NB: ONLYOFFICE Nextcloud App is only available for x86 architecture - for **ARM** architecture (Raspberry Pi, OLinuXino...), consider the YunoHost App below* + +#### with Yunohost App (ARM64 support, better performance) + +For better performance and ARM64 support, install ONLYOFFICE Yunohost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) + ## YunoHost specific features diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index aacdc22..31b7e66 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -1,15 +1,22 @@ ## Configuration -#### Configurer l'intégration d'OnlyOffice +### Configurer l'intégration d'ONLYOFFICE -À partir de sa version 18, Nextcloud inclut une intégration directe de OnlyOffice (un éditeur de texte enrichi en ligne) via une application Nextcloud. +#### avec l'application Nextcloud (pas de support ARM, performances limitées) + +À partir de sa version 18, Nextcloud inclut une intégration directe de ONLYOFFICE (un éditeur de texte enrichi en ligne) via une application Nextcloud. Pour l'installer et la configurer : -- Installez l'application *Community Document Server* dans votre Nextcloud. C'est la partie qui fait tourner un serveur OnlyOffice. -- Installez l'application *ONLYOFFICE*. C'est la partie cliente qui va se connecter au serveur OnlyOffice. -- Ensuite dans les Paramètres -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), si vous voulez configurer quels formats de fichier s'ouvrent avec OnlyOffice. +- Installez l'application *Community Document Server* dans votre Nextcloud. C'est la partie qui fait tourner un serveur ONLYOFFICE. +- Installez l'application *ONLYOFFICE*. C'est la partie cliente qui va se connecter au serveur ONLYOFFICE. +- Ensuite dans les Paramètres -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), si vous voulez configurer quels formats de fichier s'ouvrent avec ONLYOFFICE. - Et voilà :) Vous devriez pouvoir créer de nouveaux types de documents, et les ouvrir. - -*NB : OnlyOffice n'est disponible que sous architecture x86 - L'architecture **ARM** n'est **pas** supporté (Raspberry Pi, OLinuXino...)* + +*NB : l'app Nextcloud ONLYOFFICE Community Document Server n'est disponible que sous architecture x86 - Pour un support de l'architecture **ARM** (Raspberry Pi, OLinuXino...), installez plutôt l'App YunoHost, voir ci-dessous* + +#### 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#configuration-of-onlyoffice-server) + ## Caractéristiques spécifiques YunoHost From 459611c561e3a7f0123cbfc2b0f6128826826ca8 Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Thu, 22 Dec 2022 14:59:29 +0100 Subject: [PATCH 12/18] Update doc/DISCLAIMER.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> --- doc/DISCLAIMER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 67aa5e7..9a0f6fa 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -13,7 +13,7 @@ To install and configure it: *NB: ONLYOFFICE Nextcloud App is only available for x86 architecture - for **ARM** architecture (Raspberry Pi, OLinuXino...), consider the YunoHost App below* -#### with Yunohost App (ARM64 support, better performance) +#### with YunoHost App (ARM64 support, better performance) For better performance and ARM64 support, install ONLYOFFICE Yunohost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) From df1884e31058bced606b909cc93244ced58a04cc Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Thu, 22 Dec 2022 14:59:39 +0100 Subject: [PATCH 13/18] Update doc/DISCLAIMER_fr.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> --- doc/DISCLAIMER_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 31b7e66..237513a 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -13,7 +13,7 @@ Pour l'installer et la configurer : *NB : l'app Nextcloud ONLYOFFICE Community Document Server n'est disponible que sous architecture x86 - Pour un support de l'architecture **ARM** (Raspberry Pi, OLinuXino...), installez plutôt l'App YunoHost, voir ci-dessous* -#### avec l'application Yunohost (support ARM64, meilleures performances) +#### 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#configuration-of-onlyoffice-server) From b5ec7a67abb30850c456325c7704c1235704f805 Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Thu, 22 Dec 2022 14:59:53 +0100 Subject: [PATCH 14/18] Update doc/DISCLAIMER.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Éric Gaspar <46165813+ericgaspar@users.noreply.github.com> --- doc/DISCLAIMER.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index 9a0f6fa..af0614d 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -15,7 +15,7 @@ To install and configure it: #### with YunoHost App (ARM64 support, better performance) -For better performance and ARM64 support, install ONLYOFFICE Yunohost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) +For better performance and ARM64 support, install ONLYOFFICE YunoHost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) ## YunoHost specific features From 327abccbc8052f708cf4d2e1166b25838272a58b Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Thu, 22 Dec 2022 15:03:18 +0100 Subject: [PATCH 15/18] typo --- doc/DISCLAIMER.md | 4 ++-- doc/DISCLAIMER_fr.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/DISCLAIMER.md b/doc/DISCLAIMER.md index af0614d..0a73710 100644 --- a/doc/DISCLAIMER.md +++ b/doc/DISCLAIMER.md @@ -2,7 +2,7 @@ ### Configure ONLYOFFICE integration -#### with Nextcloud App (no ARM support, lower performance) +#### With Nextcloud App (no ARM support, lower performance) Starting from Nextcloud 18, it features a direct integration of ONLYOFFICE (an online rich text document editor) through a Nextcloud app. To install and configure it: @@ -13,7 +13,7 @@ To install and configure it: *NB: ONLYOFFICE Nextcloud App is only available for x86 architecture - for **ARM** architecture (Raspberry Pi, OLinuXino...), consider the YunoHost App below* -#### with YunoHost App (ARM64 support, better performance) +#### With YunoHost App (ARM64 support, better performance) For better performance and ARM64 support, install ONLYOFFICE YunoHost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 237513a..3f42827 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -2,7 +2,7 @@ ### Configurer l'intégration d'ONLYOFFICE -#### avec l'application Nextcloud (pas de support ARM, performances limitées) +#### Avec l'application Nextcloud (pas de support ARM, performances limitées) À partir de sa version 18, Nextcloud inclut une intégration directe de ONLYOFFICE (un éditeur de texte enrichi en ligne) via une application Nextcloud. Pour l'installer et la configurer : From 4fdca053196b8998023e44c07bec8e64a559d879 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Sat, 24 Dec 2022 21:24:57 +0000 Subject: [PATCH 16/18] Auto-update README --- README.md | 19 +++++++++++++------ README_fr.md | 21 ++++++++++++++------- 2 files changed, 27 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index d6ba44d..c355e88 100644 --- a/README.md +++ b/README.md @@ -29,16 +29,23 @@ Online storage, file sharing platform and various other applications ## Configuration -#### Configure OnlyOffice integration +### Configure ONLYOFFICE integration -Starting from Nextcloud 18, it features a direct integration of OnlyOffice (an online rich text document editor) through a Nextcloud app. +#### With Nextcloud App (no ARM support, lower performance) + +Starting from Nextcloud 18, it features a direct integration of ONLYOFFICE (an online rich text document editor) through a Nextcloud app. To install and configure it: -- Install *Community Document Server* application in your Nextcloud. That's the part that runs OnlyOffice server. -- Install *ONLYOFFICE* application. That's the client part that will connect to an OnlyOffice server. -- Then in Settings -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), if you want to configure which file formats should be opened by OnlyOffice. +- Install *Community Document Server* application in your Nextcloud. That's the part that runs ONLYOFFICE server. +- Install *ONLYOFFICE* application. That's the client part that will connect to an ONLYOFFICE server. +- Then in Settings -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), if you want to configure which file formats should be opened by ONLYOFFICE. - Here you go :) You should be able to create new type of documents and open them. -*NB: OnlyOffice is only available for x86 architecture - **ARM** architecture is **not** supported (Raspberry Pi, OLinuXino...)* +*NB: ONLYOFFICE Nextcloud App is only available for x86 architecture - for **ARM** architecture (Raspberry Pi, OLinuXino...), consider the YunoHost App below* + +#### With YunoHost App (ARM64 support, better performance) + +For better performance and ARM64 support, install ONLYOFFICE YunoHost App and connect it to Nextcloud, see the tutorial in the [doc of onlyoffice_ynh package](https://github.com/YunoHost-Apps/onlyoffice_ynh/blob/master/README_fr.md#configuration-de-onlyoffice-server) + ## YunoHost specific features diff --git a/README_fr.md b/README_fr.md index 0d82a8a..26cfdbe 100644 --- a/README_fr.md +++ b/README_fr.md @@ -29,16 +29,23 @@ Stockage en ligne, plateforme de partage de fichiers et diverses autres applicat ## Configuration -#### Configurer l'intégration d'OnlyOffice +### Configurer l'intégration d'ONLYOFFICE -À partir de sa version 18, Nextcloud inclut une intégration directe de OnlyOffice (un éditeur de texte enrichi en ligne) via une application Nextcloud. +#### Avec l'application Nextcloud (pas de support ARM, performances limitées) + +À partir de sa version 18, Nextcloud inclut une intégration directe de ONLYOFFICE (un éditeur de texte enrichi en ligne) via une application Nextcloud. Pour l'installer et la configurer : -- Installez l'application *Community Document Server* dans votre Nextcloud. C'est la partie qui fait tourner un serveur OnlyOffice. -- Installez l'application *ONLYOFFICE*. C'est la partie cliente qui va se connecter au serveur OnlyOffice. -- Ensuite dans les Paramètres -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), si vous voulez configurer quels formats de fichier s'ouvrent avec OnlyOffice. +- Installez l'application *Community Document Server* dans votre Nextcloud. C'est la partie qui fait tourner un serveur ONLYOFFICE. +- Installez l'application *ONLYOFFICE*. C'est la partie cliente qui va se connecter au serveur ONLYOFFICE. +- Ensuite dans les Paramètres -> ONLYOFFICE (`https://yourdomain.tld/nextcloud/settings/admin/onlyoffice`), si vous voulez configurer quels formats de fichier s'ouvrent avec ONLYOFFICE. - Et voilà :) Vous devriez pouvoir créer de nouveaux types de documents, et les ouvrir. - -*NB : OnlyOffice n'est disponible que sous architecture x86 - L'architecture **ARM** n'est **pas** supporté (Raspberry Pi, OLinuXino...)* + +*NB : l'app Nextcloud ONLYOFFICE Community Document Server n'est disponible que sous architecture x86 - Pour un support de l'architecture **ARM** (Raspberry Pi, OLinuXino...), installez plutôt l'App YunoHost, voir ci-dessous* + +#### 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#configuration-of-onlyoffice-server) + ## Caractéristiques spécifiques YunoHost From dbc415734fbee8e80abb91da28c383628e667698 Mon Sep 17 00:00:00 2001 From: Gredin67 Date: Tue, 3 Jan 2023 22:23:55 +0100 Subject: [PATCH 17/18] fr link --- doc/DISCLAIMER_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/DISCLAIMER_fr.md b/doc/DISCLAIMER_fr.md index 3f42827..343894c 100644 --- a/doc/DISCLAIMER_fr.md +++ b/doc/DISCLAIMER_fr.md @@ -15,7 +15,7 @@ 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#configuration-of-onlyoffice-server) +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 From 840aa67648385cb02721b98560014c38bfc04496 Mon Sep 17 00:00:00 2001 From: yunohost-bot Date: Tue, 3 Jan 2023 21:30:45 +0000 Subject: [PATCH 18/18] Auto-update README --- README_fr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README_fr.md b/README_fr.md index 26cfdbe..d79263d 100644 --- a/README_fr.md +++ b/README_fr.md @@ -44,7 +44,7 @@ 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#configuration-of-onlyoffice-server) +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