diff --git a/README.md b/README.md
index 1589d04..4d45efd 100644
--- a/README.md
+++ b/README.md
@@ -17,8 +17,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Web interface for Youtube-dl
-**Shipped version:** 3.0.3~ynh1
-
+**Shipped version:** 3.1.0~ynh1
**Demo:** https://alltubedownload.net/
@@ -32,6 +31,10 @@ Web interface for Youtube-dl
To configure AllTube: edit the file `/var/www/alltube/config/config.yml` via SSH.
+## :red_circle: Antifeatures
+
+- **Non-free Network Services**: Promotes or depends entirely on a non-free network service.
+
## Documentation and resources
* Official app website:
diff --git a/README_fr.md b/README_fr.md
index 9eb2a81..f4f33da 100644
--- a/README_fr.md
+++ b/README_fr.md
@@ -17,8 +17,7 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Interface Web pour Youtube-dl
-**Version incluse :** 3.0.3~ynh1
-
+**Version incluse :** 3.1.0~ynh1
**Démo :** https://alltubedownload.net/
@@ -32,6 +31,10 @@ Interface Web pour Youtube-dl
Pour configurer AllTube : éditez le fichier `/var/www/alltube/config/config.yml` via SSH.
+## :red_circle: Fonctions indésirables
+
+- **Non-free Network Services**: Promotes or depends entirely on a non-free network service.
+
## Documentations et ressources
* Site officiel de l'app :
diff --git a/conf/app.src b/conf/app.src
index a947210..4e94570 100644
--- a/conf/app.src
+++ b/conf/app.src
@@ -1,5 +1,5 @@
-SOURCE_URL=https://github.com/Rudloff/alltube/releases/download/3.0.3/alltube-3.0.3.zip
-SOURCE_SUM=6db059df1ffad928df3f4507dc718d471e18e5949395c6631a71fde61091190d
+SOURCE_URL=https://github.com/Rudloff/alltube/releases/download/3.1.0/alltube-3.1.0.zip
+SOURCE_SUM=07c131c96b20259c078bb823d15d0c8cc3c74b01279aa8547ce90fc9b83b544b
SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=zip
SOURCE_IN_SUBDIR=true
diff --git a/manifest.json b/manifest.json
index 7acfb75..9804a92 100644
--- a/manifest.json
+++ b/manifest.json
@@ -6,7 +6,7 @@
"en": "Web interface for Youtube-dl",
"fr": "Interface Web pour Youtube-dl"
},
- "version": "3.0.3~ynh1",
+ "version": "3.1.0~ynh1",
"url": "http://alltubedownload.net/",
"upstream": {
"license": "GPL-3.0-only",
@@ -21,12 +21,12 @@
"email": "plopoyop@gmail.com"
},
"requirements": {
- "yunohost": ">= 4.3.0"
+ "yunohost": ">= 11.0.9"
},
"multi_instance": true,
"services": [
"nginx",
- "php7.3-fpm"
+ "php8.0-fpm"
],
"arguments": {
"install": [
diff --git a/scripts/_common.sh b/scripts/_common.sh
index 17449ec..faf1a0c 100644
--- a/scripts/_common.sh
+++ b/scripts/_common.sh
@@ -4,7 +4,9 @@
# COMMON VARIABLES
#=================================================
-php_dependencies="php$YNH_DEFAULT_PHP_VERSION-intl php$YNH_DEFAULT_PHP_VERSION-curl php$YNH_DEFAULT_PHP_VERSION-gmp php$YNH_DEFAULT_PHP_VERSION-mbstring"
+YNH_PHP_VERSION=8.0
+
+php_dependencies="php$YNH_PHP_VERSION-intl php$YNH_PHP_VERSION-curl php$YNH_PHP_VERSION-gmp php$YNH_PHP_VERSION-mbstring"
pkg_dependencies="ffmpeg $php_dependencies"