diff --git a/src/nzbmonkeyspec.py b/src/nzbmonkeyspec.py index e2186ea..94b3179 100644 --- a/src/nzbmonkeyspec.py +++ b/src/nzbmonkeyspec.py @@ -94,9 +94,11 @@ def getSpec(): best_nzb = boolean(default = True) [CATEGORIZER] -# Place your category and you regex here: -series = string(default = '(s\d+e\d+|s\d+ complete)') -movies = string(default = '(x264|xvid|bluray|720p|1080p|untouched)') +# Place your category and you regex here +# Please uncomment the following lines + +# series = (s\d+e\d+|s\d+ complete) +# movies = (x264|xvid|bluray|720p|1080p|untouched) [Searchengines] diff --git a/src/version.py b/src/version.py index 6b758a5..514032b 100644 --- a/src/version.py +++ b/src/version.py @@ -2,6 +2,9 @@ """ History +v0.2.1 +- Fixed category settings + v0.2.0 - Added categories (automatic and manual) - Added new target: Synology Downloadstation @@ -62,5 +65,5 @@ """ -__version__ = '0.2.0' +__version__ = '0.2.1' __requires__ = ['pyperclip', 'requests', 'configobj', 'colorama', 'cryptography']