From ee243fbba51e66ed12ad17d57e016b4db5bdc720 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Sat, 30 Dec 2017 21:09:43 +1300 Subject: [PATCH] merge up to v 11.04 --- changelog.txt | 30 ++++++++++++++++++++++++++++++ core/__init__.py | 2 +- 2 files changed, 31 insertions(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 0a352e0b..95ec16a5 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,35 @@ Change_LOG / History +V11.04 30/12/2017 + +do not embed .sub. +add proper check of sub streams #1150 and filter out commentary. +traverse audiostreams in reverse. +add catch for OMDB api errors. +convert all listdir functions to unicode. +perform extraction, corruption checks, and transcoding when no server. +fix list indices errors when no fork set. +fix CP server responding test. Add trailing /. +use basestring to match unicode path in transcoder. +attempt autofork even if no username set. +allow long paths in Cleandir. +add Radarr handling. +minor fix for transcoder. +fix non-iterable type. +fix logging error. +DownloadedMovieScan updated to DownloadedMoviesScan. +add check to exception rename to not over-write exisiting. +don't try and process when no api/user. +Added omdbapikey functionality +force sonarr processing to "move". +already extracted archive not skipped. +fix text for keep_archive. +try to avoid spaces in outputdir. +change subtitle logging level. +Increase shutil copy buffer length from 4KB to 512KB. +improve user script media extension handling +add par2 rename/repair (linux only). + V11.03 15/01/2017 Add -o to output path for 7zip. diff --git a/core/__init__.py b/core/__init__.py index 11ce4e21..eb23a558 100644 --- a/core/__init__.py +++ b/core/__init__.py @@ -310,7 +310,7 @@ def initialize(section=None): nzbToMediaDB.upgradeDatabase(nzbToMediaDB.DBConnection(), mainDB.InitialSchema) # Set Version and GIT variables - NZBTOMEDIA_VERSION = '11.03' + NZBTOMEDIA_VERSION = '11.04' VERSION_NOTIFY = int(CFG['General']['version_notify']) AUTO_UPDATE = int(CFG['General']['auto_update']) GIT_REPO = 'nzbToMedia'