diff --git a/README.md b/README.md index 5c55524..f76f463 100644 --- a/README.md +++ b/README.md @@ -15,10 +15,9 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in ## Overview -Torrent client - -**Shipped version:** 4.7.0~ynh2 +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~ynh3 ## Screenshots @@ -26,7 +25,7 @@ Torrent client ## Documentation and resources -* Official app website: +* Official app website: * Official admin documentation: * Upstream app code repository: * YunoHost documentation for this app: diff --git a/README_fr.md b/README_fr.md index 67f8168..bd059cd 100644 --- a/README_fr.md +++ b/README_fr.md @@ -15,10 +15,9 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour ## Vue d'ensemble -Client torrent - -**Version incluse :** 4.7.0~ynh2 +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~ynh3 ## Captures d'écran @@ -26,7 +25,7 @@ Client torrent ## Documentations et ressources -* Site 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 : diff --git a/conf/nginx.conf b/conf/nginx.conf index f9ce15c..d9d60a3 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -1,5 +1,6 @@ #sub_path_only rewrite ^__PATH__$ __PATH__/ permanent; location __PATH__/ { + proxy_pass http://127.0.0.1:__PORT__; proxy_set_header Connection ""; proxy_set_header Host $host; diff --git a/doc/DESCRIPTION.md b/doc/DESCRIPTION.md index e69de29..9a7e949 100644 --- a/doc/DESCRIPTION.md +++ b/doc/DESCRIPTION.md @@ -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. \ No newline at end of file diff --git a/manifest.json b/manifest.json index 79f2644..ed81a10 100644 --- a/manifest.json +++ b/manifest.json @@ -3,14 +3,14 @@ "id": "flood", "packaging_format": 1, "description": { - "en": "Torrent client", - "fr": "Client torrent" + "en": "Monitoring service for various torrent clients", + "fr": "Service de surveillance pour divers clients torrent" }, - "version": "4.7.0~ynh2", - "url": "https://github.com/jesec/flood", + "version": "4.7.0~ynh3", + "url": "https://flood.js.org/", "upstream": { "license": "GPL-3.0-or-later", - "website": "https://github.com/jesec/flood", + "website": "https://flood.js.org/", "admindoc": "https://github.com/jesec/flood/wiki", "code": "https://github.com/jesec/flood" }, @@ -21,7 +21,7 @@ "url": "https://taker.fr" }, "requirements": { - "yunohost": ">= 4.3.0" + "yunohost": ">= 11.0.9" }, "multi_instance": false, "services": [ diff --git a/scripts/upgrade b/scripts/upgrade index babbe4c..5d80dd9 100755 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -27,7 +27,6 @@ rt_port=$(ynh_app_setting_get --app=$app --key=rt_port) #================================================= # CHECK VERSION #================================================= -ynh_script_progression --message="Checking version..." upgrade_type=$(ynh_check_app_version_changed)