aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonathan McCrohan <jmccrohan@gmail.com>2012-05-03 15:23:13 +0100
committerJonathan McCrohan <jmccrohan@gmail.com>2012-05-03 15:23:13 +0100
commit0dd08fc44c2c2c5c3ad7001c8dd1b63b4153a503 (patch)
treee56087af1ba34d7bd587e02ce276868241140584
parentcbf335a560092a1314fba50cbbfafb8db8c65866 (diff)
parent6dfa49c0958a784ed86c5055f2a7b7c1fb0573cc (diff)
downloadtransmission-remote-cli-0dd08fc44c2c2c5c3ad7001c8dd1b63b4153a503.tar.gz
Merge tag 'upstream/1.2.2'
Upstream version 1.2.2
-rw-r--r--NEWS5
-rwxr-xr-xtransmission-remote-cli.py8
2 files changed, 10 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 93d4832..6faa183 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+1.2.2 2012-05-02
+ BUGFIXES:
+ - Handle escape key correctly in Turtle Mode speed limit dialogs
+
+
1.2.1 2012-04-29
BUGFIXES:
- Fix crash when enabling compact mode while focusing torrent at
diff --git a/transmission-remote-cli.py b/transmission-remote-cli.py
index 948d966..ff7a487 100755
--- a/transmission-remote-cli.py
+++ b/transmission-remote-cli.py
@@ -16,7 +16,7 @@
# http://www.gnu.org/licenses/gpl-3.0.txt #
########################################################################
-VERSION = '1.2.1'
+VERSION = '1.2.2'
TRNSM_VERSION_MIN = '1.90'
TRNSM_VERSION_MAX = '2.51'
@@ -2732,12 +2732,14 @@ class Interface:
limit = self.dialog_input_number('Upload limit for Turtle Mode in kilobytes per second',
self.stats['alt-speed-up'],
allow_negative_one=False)
- server.set_option('alt-speed-up', limit)
+ if limit != -128:
+ server.set_option('alt-speed-up', limit)
elif c == ord('r'):
limit = self.dialog_input_number('Download limit for Turtle Mode in kilobytes per second',
self.stats['alt-speed-down'],
allow_negative_one=False)
- server.set_option('alt-speed-down', limit)
+ if limit != -128:
+ server.set_option('alt-speed-down', limit)
elif c == ord('b'):
self.torrentname_is_progressbar = not self.torrentname_is_progressbar