From 44b78f8d2fc0901521805331f3dfd5022cbca91a Mon Sep 17 00:00:00 2001 From: Ruud Date: Wed, 23 Jan 2013 22:56:23 +0100 Subject: [PATCH 1/4] Version up --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index 4af75e3b..e6e42088 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -VERSION = '2.0.1.1' +VERSION = '2.0.6' BRANCH = 'develop' From f23b9d7cb979912b1176a582dc920b439dcb876b Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 24 Jan 2013 22:56:33 +0100 Subject: [PATCH 2/4] Use host from config again. fix #1329 --- couchpotato/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/runner.py b/couchpotato/runner.py index 97d15a55..2081d117 100644 --- a/couchpotato/runner.py +++ b/couchpotato/runner.py @@ -259,7 +259,7 @@ def runCouchPotato(options, base_path, args, data_dir = None, log_dir = None, En while try_restart: try: - server.listen(config['port']) + server.listen(config['port'], config['host']) loop.start() except Exception, e: try: From 7d3780133f6f1a20565be63f7282a40a6867d5ab Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 24 Jan 2013 23:02:36 +0100 Subject: [PATCH 3/4] Missing download function. fix #1337 --- couchpotato/core/downloaders/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/couchpotato/core/downloaders/base.py b/couchpotato/core/downloaders/base.py index 55a41838..70500dc0 100644 --- a/couchpotato/core/downloaders/base.py +++ b/couchpotato/core/downloaders/base.py @@ -57,6 +57,9 @@ class Downloader(Provider): return self.getAllDownloadStatus() + def getAllDownloadStatus(self): + return + def _removeFailed(self, item): if self.isDisabled(manual = True, data = {}): return From cb92b00534b5cdbffe40b159aada34ac6832b00e Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 24 Jan 2013 23:33:48 +0100 Subject: [PATCH 4/4] Manage setting instead of getting folders. fix #1307 --- couchpotato/core/plugins/manage/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/manage/main.py b/couchpotato/core/plugins/manage/main.py index 9ef2a9c2..f80b80a8 100644 --- a/couchpotato/core/plugins/manage/main.py +++ b/couchpotato/core/plugins/manage/main.py @@ -198,7 +198,7 @@ class Manage(Plugin): def directories(self): try: - if self.conf('library', '').strip(): + if self.conf('library', default = '').strip(): return splitString(self.conf('library', default = ''), '::') except: pass