mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-19 04:49:31 -07:00
Merge branch 'nightly' into dev
This commit is contained in:
commit
243cf52c47
5 changed files with 33 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 12.0.5
|
current_version = 12.0.6
|
||||||
commit = True
|
commit = True
|
||||||
tag = False
|
tag = False
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
nzbToMedia v12.0.5
|
nzbToMedia v12.0.6
|
||||||
==================
|
==================
|
||||||
|
|
||||||
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))
|
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))
|
||||||
|
|
|
@ -1,5 +1,33 @@
|
||||||
Change_LOG / History
|
Change_LOG / History
|
||||||
|
|
||||||
|
V12.0.6
|
||||||
|
|
||||||
|
Hotfix for Manual Torrent run results.
|
||||||
|
|
||||||
|
V12.0.5
|
||||||
|
|
||||||
|
Proper fix for source cleaner
|
||||||
|
|
||||||
|
V12.0.4
|
||||||
|
|
||||||
|
Hotfix missed commit for source cleaner
|
||||||
|
|
||||||
|
V12.0.3
|
||||||
|
|
||||||
|
Hotfix cleaning for source installs
|
||||||
|
|
||||||
|
V12.0.2
|
||||||
|
|
||||||
|
Fix missed ProcessResult
|
||||||
|
|
||||||
|
V12.0.1
|
||||||
|
|
||||||
|
Added Python 3 support
|
||||||
|
Updated all dependencies
|
||||||
|
Major code refactoring
|
||||||
|
Various bug fixes
|
||||||
|
Hotfix NZBGet not working without comment
|
||||||
|
|
||||||
V12.0.0
|
V12.0.0
|
||||||
|
|
||||||
NOTE:
|
NOTE:
|
||||||
|
|
|
@ -52,7 +52,7 @@ from core.utils import (
|
||||||
resume_torrent, remove_dir, remove_read_only, sanitize_name, update_download_info_status,
|
resume_torrent, remove_dir, remove_read_only, sanitize_name, update_download_info_status,
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = '12.0.5'
|
__version__ = '12.0.6'
|
||||||
|
|
||||||
# Client Agents
|
# Client Agents
|
||||||
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
|
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
|
||||||
|
@ -101,7 +101,7 @@ SYS_ENCODING = None
|
||||||
FAILED = False
|
FAILED = False
|
||||||
|
|
||||||
AUTO_UPDATE = None
|
AUTO_UPDATE = None
|
||||||
NZBTOMEDIA_VERSION = None
|
NZBTOMEDIA_VERSION = __version__
|
||||||
NEWEST_VERSION = None
|
NEWEST_VERSION = None
|
||||||
NEWEST_VERSION_STRING = None
|
NEWEST_VERSION_STRING = None
|
||||||
VERSION_NOTIFY = None
|
VERSION_NOTIFY = None
|
||||||
|
@ -328,7 +328,6 @@ def initialize(section=None):
|
||||||
main_db.upgrade_database(main_db.DBConnection(), databases.InitialSchema)
|
main_db.upgrade_database(main_db.DBConnection(), databases.InitialSchema)
|
||||||
|
|
||||||
# Set Version and GIT variables
|
# Set Version and GIT variables
|
||||||
NZBTOMEDIA_VERSION = '11.06'
|
|
||||||
VERSION_NOTIFY = int(CFG['General']['version_notify'])
|
VERSION_NOTIFY = int(CFG['General']['version_notify'])
|
||||||
AUTO_UPDATE = int(CFG['General']['auto_update'])
|
AUTO_UPDATE = int(CFG['General']['auto_update'])
|
||||||
GIT_REPO = 'nzbToMedia'
|
GIT_REPO = 'nzbToMedia'
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -18,7 +18,7 @@ def read(*names, **kwargs):
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='nzbToMedia',
|
name='nzbToMedia',
|
||||||
version='12.0.5',
|
version='12.0.6',
|
||||||
license='GPLv3',
|
license='GPLv3',
|
||||||
description='Efficient on demand post processing',
|
description='Efficient on demand post processing',
|
||||||
long_description="""
|
long_description="""
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue