diff --git a/README.md b/README.md
index 1807081..9f92b0b 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ It shall NOT be edited by hand.
# Roundcube for YunoHost
-[](https://dash.yunohost.org/appci/app/roundcube)  
+[](https://dash.yunohost.org/appci/app/roundcube)  
[](https://install-app.yunohost.org/?app=roundcube)
*[Lire ce readme en français.](./README_fr.md)*
@@ -27,7 +27,7 @@ In addition to Roundcube core features, the following are made available with th
* Support for PGP encryption with Enigma plugin by default.
-**Shipped version:** 1.6.0~ynh3
+**Shipped version:** 1.6.1~ynh1
**Demo:** https://demo.yunohost.org/webmail/
diff --git a/README_fr.md b/README_fr.md
index 8029dd9..c208396 100644
--- a/README_fr.md
+++ b/README_fr.md
@@ -5,15 +5,15 @@ It shall NOT be edited by hand.
# Roundcube pour YunoHost
-[](https://dash.yunohost.org/appci/app/roundcube)  
+[](https://dash.yunohost.org/appci/app/roundcube)  
[](https://install-app.yunohost.org/?app=roundcube)
*[Read this readme in english.](./README.md)*
-> *Ce package vous permet d'installer Roundcube 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.*
+> *Ce package vous permet d’installer Roundcube 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.*
-## Vue d'ensemble
+## Vue d’ensemble
Roundcube est un client IMAP multilingue basé sur un navigateur avec une interface utilisateur semblable à une application.
@@ -28,13 +28,13 @@ En plus des fonctionnalités principales de Roundcube, les éléments suivants s
* Prise en charge du chiffrement PGP avec le plugin Enigma installé par default.
-**Version incluse :** 1.6.0~ynh3
+**Version incluse :** 1.6.1~ynh1
**Démo :** https://demo.yunohost.org/webmail/
-## Captures d'écran
+## Captures d’écran
-
+
## Avertissements / informations importantes
@@ -85,9 +85,9 @@ Vous pouvez également télécharger le plugin et le placer dans le répertoire
## Documentations et ressources
-* Site officiel de l'app :
-* Documentation officielle de l'admin :
-* Dépôt de code officiel de l'app :
+* Site officiel de l’app :
+* Documentation officielle de l’admin :
+* Dépôt de code officiel de l’app :
* Documentation YunoHost pour cette app :
* Signaler un bug :
@@ -103,4 +103,4 @@ ou
sudo yunohost app upgrade roundcube -u https://github.com/YunoHost-Apps/roundcube_ynh/tree/testing --debug
```
-**Plus d'infos sur le packaging d'applications :**
+**Plus d’infos sur le packaging d’applications :**
\ No newline at end of file
diff --git a/conf/app.src b/conf/app.src
index aefdce3..3b54e18 100644
--- a/conf/app.src
+++ b/conf/app.src
@@ -1,5 +1,5 @@
-SOURCE_URL=https://github.com/roundcube/roundcubemail/releases/download/1.6.0/roundcubemail-1.6.0.tar.gz
-SOURCE_SUM=1224eaf628888e503c49d0e8a69aa4997e566c3605738d0303d9c7a09722f363
+SOURCE_URL=https://github.com/roundcube/roundcubemail/releases/download/1.6.1/roundcubemail-1.6.1.tar.gz
+SOURCE_SUM=ebf3b28d1a073bca9accb7c6c849593046426371797686ea3cb4894402373ea8
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true
diff --git a/conf/nginx.conf b/conf/nginx.conf
index f7c3927..30eff4b 100644
--- a/conf/nginx.conf
+++ b/conf/nginx.conf
@@ -2,7 +2,7 @@
location __PATH__/ {
# Path to source
- alias __FINALPATH__/ ;
+ alias __FINALPATH__/;
index index.php;
client_max_body_size 50M;
diff --git a/manifest.json b/manifest.json
index dd43a77..12e35c5 100644
--- a/manifest.json
+++ b/manifest.json
@@ -6,7 +6,7 @@
"en": "Open Source Webmail software",
"fr": "Webmail Open Source"
},
- "version": "1.6.0~ynh3",
+ "version": "1.6.1~ynh1",
"url": "https://roundcube.net/",
"upstream": {
"license": "GPL-3.0-only",
@@ -27,7 +27,7 @@
"multi_instance": true,
"services": [
"nginx",
- "php7.4-fpm",
+ "php8.0-fpm",
"mysql"
],
"arguments": {
diff --git a/scripts/_common.sh b/scripts/_common.sh
index 5db7c44..c3d7381 100644
--- a/scripts/_common.sh
+++ b/scripts/_common.sh
@@ -4,10 +4,13 @@
# COMMON VARIABLES
#=================================================
-YNH_PHP_VERSION="7.4"
+YNH_PHP_VERSION="8.0"
# Package dependencies
-pkg_dependencies="php-pear php${YNH_PHP_VERSION}-ldap php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-dom php${YNH_PHP_VERSION}-curl"
+php_dependencies="php${YNH_PHP_VERSION}-ldap php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-json php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-intl php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-dom php${YNH_PHP_VERSION}-curl"
+
+# dependencies used by the app (must be on a single line)
+pkg_dependencies="php-pear $php_dependencies"
# Composer version
YNH_COMPOSER_VERSION=2.3.7