From a61797f53a8f5cfd10a7c44176c7d2d7762b0017 Mon Sep 17 00:00:00 2001 From: Anthony Raymond Date: Wed, 1 Nov 2023 11:08:54 +0100 Subject: [PATCH] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b60da7bb..a0a57be3 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,8 @@ The application configuration belongs in `joal-conf/config.json`. "maxUploadRate" : 160, "simultaneousSeed" : 20, "client" : "qbittorrent-3.3.16.client", - "keepTorrentWithZeroLeechers" : true + "keepTorrentWithZeroLeechers" : true, + "uploadRatioTarget": -1.0 } ``` - `minUploadRate` : The minimum uploadRate you want to fake (in kB/s) (**required**) @@ -109,6 +110,7 @@ The application configuration belongs in `joal-conf/config.json`. - `simultaneousSeed` : How many torrents should be seeding at the same time (**required**) - `client` : The name of the .client file to use in `joal-conf/clients/` (**required**) - `keepTorrentWithZeroLeechers`: should JOAL keep torrent with no leechers or seeders. If yes, torrent with no peers will be seed at 0kB/s. If false torrents will be deleted on 0 peers reached. (**required**) +- `uploadRatioTarget`: when JOAL has uploaded X times the size of the torrent **in a single session**, the torrent is removed. If -1.0 torrents are never removed.