From 66abb2d562aa9491c5c5fad0c228e20a05982fd7 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Wed, 30 Nov 2016 16:26:15 +1030 Subject: [PATCH] V11.02 for merge --- changelog.txt | 12 ++++++++++++ core/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 30b04abf..870afdb1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,6 +1,18 @@ Change_LOG / History +V11.02 30/11/2016 + +Added default "MKV-SD" +Added VideoResolution in nzbGet. +Fix Headphones direcotry parsing. +Remove proc_type when failed. +Added option "no_extract_failed" +Updated beautifulsoup 4 module. +Check for existence of codec_type key when counting streams. +Added default fallback for sabnzbd port = 8080. + V11.01 30/10/2016 + Updated external modules and changed config to dict. Started making code python 3 compatible. Fixed auto-fork detection for new Sick* branches. diff --git a/core/__init__.py b/core/__init__.py index 54f82d03..ce5b8957 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -309,7 +309,7 @@ def initialize(section=None): nzbToMediaDB.upgradeDatabase(nzbToMediaDB.DBConnection(), mainDB.InitialSchema) # Set Version and GIT variables - NZBTOMEDIA_VERSION = '11.01' + NZBTOMEDIA_VERSION = '11.02' VERSION_NOTIFY = int(CFG['General']['version_notify']) AUTO_UPDATE = int(CFG['General']['auto_update']) GIT_REPO = 'nzbToMedia'