From 7dd9ba308c1d2d3635462d5d501841ad33fe0414 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Sat, 3 Nov 2018 09:45:49 +1300 Subject: [PATCH] v11.06 ready for merge --- changelog.txt | 19 +++++++++++++++++++ core/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index e7796fc9..e9b74007 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,25 @@ Change_LOG / History +V11.06 11/03/2018 + +updates to incorporate importMode for NzbDrone/Sonarr and Radarr. +Correct typo(s) for "Lidarr" category. +only pass id to CP if release id found. +fix issue with no release id and no imdbid. +Fixed NZBGet save of Lidarr config. +improve logging for imdb id lookup. +fix minor description error. +add better logging of movie name when added to CP. +attempt to clean up Liddar api commands. +update to use Mylar api. +set Torrent move-sym option to force SickRage process_method. +add rmDir import for HeadPhones processing. +change sickrage and sickchill names and modify api process to work with multiple sick* forks. +add NZBGet WebUI set of delete failed for HP. +fix qbittorrent to delete permanently (remove files on delete). + V11.05 27/06/2018 + Add qBittorrent support. Add SickGear support. Add SiCKRAGE api support. diff --git a/core/__init__.py b/core/__init__.py index 7f75ba8f..f406439e 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -317,7 +317,7 @@ def initialize(section=None): nzbToMediaDB.upgradeDatabase(nzbToMediaDB.DBConnection(), mainDB.InitialSchema) # Set Version and GIT variables - NZBTOMEDIA_VERSION = '11.05' + NZBTOMEDIA_VERSION = '11.06' VERSION_NOTIFY = int(CFG['General']['version_notify']) AUTO_UPDATE = int(CFG['General']['auto_update']) GIT_REPO = 'nzbToMedia'