Merge tag '0.6.0' into develop

small bugfixes
This commit is contained in:
JohnDoee
2016-06-24 20:42:53 +02:00
2 changed files with 6 additions and 1 deletions

View File

@@ -41,6 +41,11 @@ The _allow remote_ option is to allow remote add and stream of torrents.
# Version Info # Version Info
## Version 0.6.0
* Fixed URL encoding error
* Fixed "resume on complete" broken-ness (i hope)
* Changed default to not use stream urls
## Version 0.5.0 ## Version 0.5.0
* Restructured the whole plugin * Restructured the whole plugin
* Added support for StreamProtocol * Added support for StreamProtocol

View File

@@ -42,7 +42,7 @@ from setuptools import setup
__plugin_name__ = "Streaming" __plugin_name__ = "Streaming"
__author__ = "John Doee" __author__ = "John Doee"
__author_email__ = "johndoee@tidalstream.org" __author_email__ = "johndoee@tidalstream.org"
__version__ = "0.5.0" __version__ = "0.6.0"
__url__ = "https://github.com/JohnDoee/deluge-streaming" __url__ = "https://github.com/JohnDoee/deluge-streaming"
__license__ = "GPLv3" __license__ = "GPLv3"
__description__ = "Enables streaming of files while downloading them." __description__ = "Enables streaming of files while downloading them."