From c9750fc3828f9354ad6b432d0e2ff96827f621c8 Mon Sep 17 00:00:00 2001 From: laharah Date: Sun, 7 Aug 2016 16:20:44 -0700 Subject: [PATCH] Version Bump, 1.0 release! --- README.md | 7 ++----- filebottool/pyfilebot.py | 3 +-- setup.py | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index df564f9..f17e006 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ #FilebotTool: FileBot Integration for Deluge *requires [Filebot](http://www.filebot.net/)* -**Version Beta 0.9.5** +**Version 1.0** #####[Download Latest Release](https://github.com/Laharah/deluge-FilebotTool/releases/latest) @@ -73,7 +73,4 @@ You will need: ``` py -2.6 setup.py bdist_egg ``` -- The new .egg file located in the `dist/` folder is now ready to be added to deluge. - -####Planned Release Features: -- Better handeling for unicode files on Windows \ No newline at end of file +- The new .egg file located in the `dist/` folder is now ready to be added to deluge. \ No newline at end of file diff --git a/filebottool/pyfilebot.py b/filebottool/pyfilebot.py index 36a2aee..87ff6e2 100644 --- a/filebottool/pyfilebot.py +++ b/filebottool/pyfilebot.py @@ -220,7 +220,6 @@ def test_format_string(format_string=None, file_name="Citizen Kane.avi"): def get_subtitles(target, language_code=None, encoding=None, force=False, output=None): """ convenience function, Gets subtitles for a given *target* - Will use filebot to download subtitles from OpenSubtitles.org using the file hash. By default, it will only download subtitles if the .srt file for the given language is missing. This behavior can be @@ -533,7 +532,7 @@ def _build_script_arguments(script_name, script_arguments): if script_arguments: if isinstance(script_arguments, basestring): script_arguments = [script_arguments] - process_arguments += [arg.decode("utf8") for arg in script_arguments] + process_arguments += script_arguments return process_arguments diff --git a/setup.py b/setup.py index f437b66..7a26783 100755 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ __plugin_name__ = "FileBotTool" __author__ = "laharah" __author_email__ = "laharah+fbt@gmail.com" -__version__ = "0.9.5" +__version__ = "1.0.0" __url__ = "https://github.com/Laharah/deluge-FileBotTool" __license__ = "GPLv3" __description__ = "Integrates FileBot functionality to Deluge"