From 9b31482ce3851b813b5731289ef0f9a8ac323e64 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Tue, 12 Mar 2019 16:48:50 -0400 Subject: [PATCH 1/3] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 89eb5514..d47031a9 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -20,7 +20,7 @@ Please describe the tests that you ran to verify your changes. Provide instructi **Test Configuration**: # Checklist: -- [ ] I have based this chnage on the nightly branch +- [ ] I have based this change on the nightly branch - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation From 6aee6baf6e163c5e915c88102ddb17ae2fa9822c Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Thu, 14 Mar 2019 20:02:40 +1300 Subject: [PATCH 2/3] fix cleanup --- cleanup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cleanup.py b/cleanup.py index dcef7789..d313f2b4 100644 --- a/cleanup.py +++ b/cleanup.py @@ -17,6 +17,7 @@ FOLDER_STRUCTURE = { 'core': [ 'auto_process', 'extractor', + 'plugins', 'utils', ], } From ac7e0b702a3bca5bf298f3dce332bb8ce74db32e Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Thu, 14 Mar 2019 20:28:53 +1300 Subject: [PATCH 3/3] update to 12.0.10 --- .bumpversion.cfg | 2 +- core/__init__.py | 2 +- setup.py | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index eb16c596..31885a91 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 12.0.9 +current_version = 12.0.10 commit = True tag = False diff --git a/core/__init__.py b/core/__init__.py index a68a31a7..3087ff55 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -78,7 +78,7 @@ from core.utils import ( wake_up, ) -__version__ = '12.0.9' +__version__ = '12.0.10' # Client Agents NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual'] diff --git a/setup.py b/setup.py index 6818d769..803f430b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ def read(*names, **kwargs): setup( name='nzbToMedia', - version='12.0.9', + version='12.0.10', license='GPLv3', description='Efficient on demand post processing', long_description=""" @@ -42,8 +42,8 @@ setup( 4. Continuously polling a folder for changes can prevent the drive from going to sleep 5. Continuous polling may encounter file access/permissions issues 6. Continuous polling may miss a folder change, causing the PVR app to wait forever - 6. An on-demand post-processing script is able to utilize additional functionality such as ffprobe media checking to test for bad video files. - 7. On-demand scripts can be tweaked to allow for delays with slow hardware + 7. An on-demand post-processing script is able to utilize additional functionality such as ffprobe media checking to test for bad video files. + 8. On-demand scripts can be tweaked to allow for delays with slow hardware nzbToMedia is an on-demand post-processing script and was created out of a demand for more efficient post-processing on low-performance hardware. Many features have been added so higher performance hardware can benefit too.