From 2d770510a284fadc6b44628626f5769789086dbb Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Sun, 29 May 2016 18:41:44 +0930 Subject: [PATCH] V10.15 ready for merge. --- changelog.txt | 10 ++++++++++ core/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 15849d76..920e714a 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,15 @@ Change_LOG / History +V10.15 29/05/2016 + +Don't copy archives when set to extract. +Specifically check for failed download handing regardless of fork. +sort Media file results by pathlength. +Synchronize changed SickRage directory param. +Don't remove release group information from base folder. +Don't add imdb id to file name when move-sym in use. +Fix string and integer concat error. + V10.14 13/03/2016 Add option move-sym to create symlink to renamed files. diff --git a/core/__init__.py b/core/__init__.py index 5a11b2d0..a9d2a1e9 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -294,7 +294,7 @@ def initialize(section=None): nzbToMediaDB.upgradeDatabase(nzbToMediaDB.DBConnection(), mainDB.InitialSchema) # Set Version and GIT variables - NZBTOMEDIA_VERSION = '10.14' + NZBTOMEDIA_VERSION = '10.15' VERSION_NOTIFY = int(CFG['General']['version_notify']) AUTO_UPDATE = int(CFG['General']['auto_update']) GIT_REPO = 'nzbToMedia'