From 45d394dca3f77af2c57447d23af2fdc7ab9bb2e1 Mon Sep 17 00:00:00 2001 From: gmilad <61253440+gmilad@users.noreply.github.com> Date: Mon, 8 Mar 2021 18:55:34 +0100 Subject: [PATCH 1/2] Update README_fr.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bonsoir, Légères corrections des liens pour les faire pointer vers les pages en Français. Amicalement, Gaëtan. --- README_fr.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README_fr.md b/README_fr.md index 48e8340..36ea121 100644 --- a/README_fr.md +++ b/README_fr.md @@ -21,7 +21,7 @@ L'édition collaborative en ligne des documents OnlyOffice nécessite : 1. [ONLYOFFICE connector pour Nextcloud](https://apps.nextcloud.com/apps/onlyoffice) 2. [ONLYOFFICE Desktop Editors](https://www.onlyoffice.com/fr/download-desktop.aspx) -Les utilisateurs de Nextcloud peuvent suivre [ce tutoriel](https://github.com/YunoHost-Apps/nextcloud_ynh#configure-onlyoffice-integration) pour installer le Community Document Server (1.ii) et ONLYOFFICE connector (2.i) sur une instance Nextcloud. Cependant, les performances et l'architecture sont limitées. +Les utilisateurs de Nextcloud peuvent suivre [ce tutoriel](https://github.com/YunoHost-Apps/nextcloud_ynh/blob/testing/README_fr.md#configurer-lint%C3%A9gration-donlyoffice) pour installer le Community Document Server (1.ii) et ONLYOFFICE connector (2.i) sur une instance Nextcloud. Cependant, les performances et l'architecture sont limitées. **Version incluse :** 6.1.0 @@ -80,7 +80,7 @@ Prérequis : **OnlyOffice doit être public**, voir la section précédente. ## Documentation * Documentation officielle : Lien vers la documentation officielle de cette application. - * Documentation YunoHost : https://yunohost.org/#/app_onlyoffice_fr + * Documentation YunoHost : https://yunohost.org/fr/app_onlyoffice ## Caractéristiques spécifiques YunoHost From 062cc7231a4ab644e4a251ca744f8f985b77c4d8 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 15 Mar 2021 18:22:46 +0100 Subject: [PATCH 2/2] App can't be installed on arm --- scripts/install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install b/scripts/install index 76817ab..c66fae0 100644 --- a/scripts/install +++ b/scripts/install @@ -35,6 +35,11 @@ ynh_script_progression --message="Validating installation parameters..." final_path=/var/www/$app test ! -e "$final_path" || ynh_die --message="This path already contains a folder" +if dpkg-architecture --is armhf +then + ynh_die --message="Sorry, this app can not be installed on an ARM architecture" +fi + # Register (book) web path ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url