Merge pull request #1580 from clinton-hall/dev

12.0.10
This commit is contained in:
Clinton Hall 2019-03-14 20:40:41 +13:00 committed by GitHub
commit 0db7c3e10c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 7 additions and 6 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 12.0.9 current_version = 12.0.10
commit = True commit = True
tag = False tag = False

View file

@ -20,7 +20,7 @@ Please describe the tests that you ran to verify your changes. Provide instructi
**Test Configuration**: **Test Configuration**:
# Checklist: # 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 performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation - [ ] I have made corresponding changes to the documentation

View file

@ -17,6 +17,7 @@ FOLDER_STRUCTURE = {
'core': [ 'core': [
'auto_process', 'auto_process',
'extractor', 'extractor',
'plugins',
'utils', 'utils',
], ],
} }

View file

@ -78,7 +78,7 @@ from core.utils import (
wake_up, wake_up,
) )
__version__ = '12.0.9' __version__ = '12.0.10'
# Client Agents # Client Agents
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual'] NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']

View file

@ -18,7 +18,7 @@ def read(*names, **kwargs):
setup( setup(
name='nzbToMedia', name='nzbToMedia',
version='12.0.9', version='12.0.10',
license='GPLv3', license='GPLv3',
description='Efficient on demand post processing', description='Efficient on demand post processing',
long_description=""" long_description="""
@ -42,8 +42,8 @@ setup(
4. Continuously polling a folder for changes can prevent the drive from going to sleep 4. Continuously polling a folder for changes can prevent the drive from going to sleep
5. Continuous polling may encounter file access/permissions issues 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. 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. 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 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. 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.