From fcc596efae9b86b8819af850662c68bece93e25d Mon Sep 17 00:00:00 2001 From: Jeff Huffman Date: Wed, 17 Aug 2022 17:23:20 -0700 Subject: [PATCH] Explain what the 3 main options actually DO --- RTorrentRatioHandling.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/RTorrentRatioHandling.md b/RTorrentRatioHandling.md index 1776eff..4d2de15 100644 --- a/RTorrentRatioHandling.md +++ b/RTorrentRatioHandling.md @@ -50,6 +50,11 @@ ratio.upload.set The 'group.seeding.view' variable points to the 'seeding' view, which contains all seeding downloads, and the default 'ratio.command' closes the download. To enabled or disable the ratio handling for the group, call the 'enable' and 'disable' commands which automatically adds it to the scheduler. +The configured `ratio.command` will be used on torrents in a seeding state matching the following condition, unless `d.ignore_commands` is set: +``` +(total_up >= ratio.upload && total_up >= total_down * ratio.min/100) || (ratio.max > 0 && total_up > total_down * ratio.max/100) +``` + # Ratio groups If you wish to specify different ratio's for different watch directories, do the following: