1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/alltube_ynh.git synced 2024-09-03 18:06:12 +02:00

Merge pull request #34 from YunoHost-Apps/3.1.0

3.1.0
This commit is contained in:
Éric Gaspar 2022-10-21 00:02:24 +02:00 committed by GitHub
commit 9b78579273
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 10 deletions

View file

@ -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: <https://alltubedownload.net/>

View file

@ -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 : <https://alltubedownload.net/>

View file

@ -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

View file

@ -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": [

View file

@ -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"