From 095810ea79f7068ff7e4496dfde6821f831e6f55 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Mon, 31 Dec 2018 11:38:51 -0500 Subject: [PATCH 1/3] =?UTF-8?q?Bump=20version:=2011.8.1=20=E2=86=92=2012.0?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- core/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7fd07475..4b9b8a4e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 11.8.1 +current_version = 12.0.0 commit = True tag = False diff --git a/README.md b/README.md index d7febc20..418bea20 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -nzbToMedia v11.8.1 +nzbToMedia v12.0.0 ================== Provides an [efficient](https://github.com/clinton-hall/nzbToMedia/wiki/Efficient-on-demand-post-processing) way to handle postprocessing for [CouchPotatoServer](https://couchpota.to/ "CouchPotatoServer") and [SickBeard](http://sickbeard.com/ "SickBeard") (and its [forks](https://github.com/clinton-hall/nzbToMedia/wiki/Failed-Download-Handling-%28FDH%29#sick-beard-and-its-forks)) diff --git a/core/__init__.py b/core/__init__.py index 5b4b6da8..9f24b22f 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -52,7 +52,7 @@ from core.utils import ( resume_torrent, remove_dir, remove_read_only, sanitize_name, update_download_info_status, ) -__version__ = '11.8.1' +__version__ = '12.0.0' # Client Agents NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual'] diff --git a/setup.py b/setup.py index 1bf81072..e079e574 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read(*names, **kwargs): setup( name='nzbToMedia', - version='11.8.1', + version='12.0.0', license='GPLv3', description='Efficient on demand post processing', long_description=""" From 7ac4d8d7622cfa061ba60a28e7110c55c7b4e66a Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Mon, 31 Dec 2018 14:39:24 -0500 Subject: [PATCH 2/3] Fix setup.py --- setup.py | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/setup.py b/setup.py index e079e574..089551ae 100644 --- a/setup.py +++ b/setup.py @@ -51,22 +51,8 @@ setup( """, author='Clinton Hall', author_email='fock_wulf@hotmail.com', - url='https://github.com/clinton-hall/nzbToMedia_repo', + url='https://github.com/clinton-hall/nzbToMedia', packages=['core'], - include_package_data=True, - zip_safe=False, - scripts=[ - 'nzbToCouchPotato', - 'nzbToGamez', - 'nzbToHeadPhones', - 'nzbToLidarr', - 'nzbToMedia', - 'nzbToMylar', - 'nzbToNzbDrone', - 'nzbToRadarr', - 'nzbToSickBeard', - 'TorrentToMedia', - ], classifiers=[ # complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers 'Development Status :: 5 - Production/Stable', From c3e2cf35a4138a3c00c6a4f10d5c7a878278e38d Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Mon, 31 Dec 2018 23:20:48 -0500 Subject: [PATCH 3/3] Fix typo --- nzbToMedia.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nzbToMedia.py b/nzbToMedia.py index f6ef4724..55961745 100755 --- a/nzbToMedia.py +++ b/nzbToMedia.py @@ -144,7 +144,7 @@ def process(input_directory, input_name=None, status=0, client_agent='manual', d plex_update(input_category) - if result.staus_code == 0: + if result.status_code == 0: if client_agent != 'manual': # update download status in our DB update_download_info_status(input_name, 1)