1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flood_ynh.git synced 2024-09-03 18:36:20 +02:00

Merge pull request #7 from YunoHost-Apps/testing

Testing
This commit is contained in:
Éric Gaspar 2023-01-13 21:41:31 +01:00 committed by GitHub
commit aac9ca3417
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 14 additions and 15 deletions

View file

@ -15,10 +15,9 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
## Overview ## Overview
Torrent client Flood is a monitoring service for various torrent clients. It's a Node.js service that communicates with your favorite torrent client and serves a decent web UI for administration.
**Shipped version:** 4.7.0~ynh2
**Shipped version:** 4.7.0~ynh3
## Screenshots ## Screenshots
@ -26,7 +25,7 @@ Torrent client
## Documentation and resources ## Documentation and resources
* Official app website: <https://github.com/jesec/flood> * Official app website: <https://flood.js.org/>
* Official admin documentation: <https://github.com/jesec/flood/wiki> * Official admin documentation: <https://github.com/jesec/flood/wiki>
* Upstream app code repository: <https://github.com/jesec/flood> * Upstream app code repository: <https://github.com/jesec/flood>
* YunoHost documentation for this app: <https://yunohost.org/app_flood> * YunoHost documentation for this app: <https://yunohost.org/app_flood>

View file

@ -15,10 +15,9 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
## Vue d'ensemble ## Vue d'ensemble
Client torrent Flood is a monitoring service for various torrent clients. It's a Node.js service that communicates with your favorite torrent client and serves a decent web UI for administration.
**Version incluse :** 4.7.0~ynh2
**Version incluse :** 4.7.0~ynh3
## Captures d'écran ## Captures d'écran
@ -26,7 +25,7 @@ Client torrent
## Documentations et ressources ## Documentations et ressources
* Site officiel de l'app : <https://github.com/jesec/flood> * Site officiel de l'app : <https://flood.js.org/>
* Documentation officielle de l'admin : <https://github.com/jesec/flood/wiki> * Documentation officielle de l'admin : <https://github.com/jesec/flood/wiki>
* Dépôt de code officiel de l'app : <https://github.com/jesec/flood> * Dépôt de code officiel de l'app : <https://github.com/jesec/flood>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_flood> * Documentation YunoHost pour cette app : <https://yunohost.org/app_flood>

View file

@ -1,5 +1,6 @@
#sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent;
location __PATH__/ { location __PATH__/ {
proxy_pass http://127.0.0.1:__PORT__; proxy_pass http://127.0.0.1:__PORT__;
proxy_set_header Connection ""; proxy_set_header Connection "";
proxy_set_header Host $host; proxy_set_header Host $host;

View file

@ -0,0 +1 @@
Flood is a monitoring service for various torrent clients. It's a Node.js service that communicates with your favorite torrent client and serves a decent web UI for administration.

View file

@ -3,14 +3,14 @@
"id": "flood", "id": "flood",
"packaging_format": 1, "packaging_format": 1,
"description": { "description": {
"en": "Torrent client", "en": "Monitoring service for various torrent clients",
"fr": "Client torrent" "fr": "Service de surveillance pour divers clients torrent"
}, },
"version": "4.7.0~ynh2", "version": "4.7.0~ynh3",
"url": "https://github.com/jesec/flood", "url": "https://flood.js.org/",
"upstream": { "upstream": {
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"website": "https://github.com/jesec/flood", "website": "https://flood.js.org/",
"admindoc": "https://github.com/jesec/flood/wiki", "admindoc": "https://github.com/jesec/flood/wiki",
"code": "https://github.com/jesec/flood" "code": "https://github.com/jesec/flood"
}, },
@ -21,7 +21,7 @@
"url": "https://taker.fr" "url": "https://taker.fr"
}, },
"requirements": { "requirements": {
"yunohost": ">= 4.3.0" "yunohost": ">= 11.0.9"
}, },
"multi_instance": false, "multi_instance": false,
"services": [ "services": [

View file

@ -27,7 +27,6 @@ rt_port=$(ynh_app_setting_get --app=$app --key=rt_port)
#================================================= #=================================================
# CHECK VERSION # CHECK VERSION
#================================================= #=================================================
ynh_script_progression --message="Checking version..."
upgrade_type=$(ynh_check_app_version_changed) upgrade_type=$(ynh_check_app_version_changed)