summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS5
-rwxr-xr-xtransmission-remote-cli5
2 files changed, 8 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index cb9a117..1fda04e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+1.4.5 2012-11-07
+ BUGFIXES:
+ - Fix forwarding CLI args to transmission-remote
+
+
1.4.4 2012-10-30
BUGFIXES:
- Fix crash when changing priority of all files of a torrent
diff --git a/transmission-remote-cli b/transmission-remote-cli
index 067b22c..668faff 100755
--- a/transmission-remote-cli
+++ b/transmission-remote-cli
@@ -16,7 +16,7 @@
# http://www.gnu.org/licenses/gpl-3.0.txt #
########################################################################
-VERSION = '1.4.4'
+VERSION = '1.4.5'
TRNSM_VERSION_MIN = '1.90'
TRNSM_VERSION_MAX = '2.73'
@@ -3237,13 +3237,14 @@ if __name__ == '__main__':
# one argument and it doesn't start with '-' --> treat it like it's a torrent link/url
if len(transmissionremote_args) == 1 and not transmissionremote_args[0].startswith('-'):
cmd.extend(['-a', transmissionremote_args[0]])
+ else:
+ cmd.extend(transmissionremote_args)
if config.get('Connection', 'username') and config.get('Connection', 'password'):
cmd_print = cmd
cmd_print.extend(['--auth', '%s:PASSWORD' % config.get('Connection', 'username')])
print "EXECUTING:\n%s\nRESPONSE:" % ' '.join(cmd_print)
cmd.extend(['--auth', '%s:%s' % (config.get('Connection', 'username'), config.get('Connection', 'password'))])
- cmd.extend(transmissionremote_args)
else:
print "EXECUTING:\n%s\nRESPONSE:" % ' '.join(cmd)
r> 2007-06-20keypad support completed; new property brightness implementedvolker1-40/+175 2007-06-20maximum value for brightness is 8volker1-2/+2 2007-06-17buttons for X11 driver (thanks to Volker Gering)michael1-8/+49 2007-06-17Apple has no utsbuf.domainname (thanks to Volker Gering)michael1-1/+1 2007-06-17strndup() replacementmichael1-0/+24 2007-06-17better usage output by Volker Geringmichael1-4/+20 2007-06-08Image driver libgd dependancy fixmichael5-6/+31 2007-06-04big MPD patch from Robert Buchholzmichael1-79/+86 2007-05-19gps plugin, code by michu / www.neophob.commichael7-0/+580 2007-05-17compile error on m68k fixed (debian bug 405898)michael3-10/+170 2007-05-04typo in LUIse driver fixedmichael1-1/+1 2007-05-02some compiler warnings fixedmichael6-8/+14 2007-04-30LCD4Linux-0.10.1-RC2michael1-1/+1 2007-04-30ChangeLog updatedmichael1-1782/+3099 2007-04-30svn2cl moved and optimizedmichael1-6/+0