diff --git a/README.md b/README.md index 9ad9b538..61c74a2b 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Installation ### Windows -Download the the compiled versions of this code here [nzbToMedia - win - v8.0.zip](http://bit.ly/188imjs "nzbToMedia - win - v8.0.zip") +Download the the compiled versions of this code from the links provided here [nzbToMedia installation](https://github.com/clinton-hall/nzbToMedia/wiki/installation") ### General diff --git a/autoProcess/nzbToMediaEnv.py b/autoProcess/nzbToMediaEnv.py index 5a6203b2..04925b3d 100644 --- a/autoProcess/nzbToMediaEnv.py +++ b/autoProcess/nzbToMediaEnv.py @@ -1,7 +1,7 @@ # Make things easy and less error prone by centralising all common values # Global Constants -VERSION = 'V8.0' +VERSION = 'V8.1' # Constants pertinant to SabNzb SABNZB_NO_OF_ARGUMENTS = 8 diff --git a/changelog.txt b/changelog.txt index 85b9b621..27f3cfc0 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,17 @@ Change_LOG / History +V8.1 04/05/2013 + +Impacts All +Improved exception logging for error conditions + +Impacts Torrents +Fixed an import error when extracting + +Impacts NZBs +Fixed passthrough of nzbName from NZBGet to pass the .nzb extension (required for SickBeard's failed fork) + + V8.0 28/04/2013 Impacts All diff --git a/extractor/extractor.py b/extractor/extractor.py index 76a9eeb2..bf6b1833 100644 --- a/extractor/extractor.py +++ b/extractor/extractor.py @@ -3,7 +3,7 @@ import sys sys.path.insert(0, os.path.join(os.path.dirname(sys.argv[0]),'autoProcess/')) import logging from subprocess import call, Popen, PIPE -from nzbToMediaUtil import create_destination +from autoProcess.nzbToMediaUtil import create_destination Logger = logging.getLogger()