Skip to content

Commit

Permalink
Version Bump, 1.0 release!
Browse files Browse the repository at this point in the history
  • Loading branch information
Laharah committed Aug 7, 2016
1 parent 788114a commit c9750fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
7 changes: 2 additions & 5 deletions 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)

Expand Down Expand Up @@ -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
- The new .egg file located in the `dist/` folder is now ready to be added to deluge.
3 changes: 1 addition & 2 deletions filebottool/pyfilebot.py
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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"
Expand Down

0 comments on commit c9750fc

Please sign in to comment.