mirror of
https://github.com/JohnDoee/deluge-streaming/
synced 2026-07-01 07:31:17 -07:00
fixed breaking bug
This commit is contained in:
@@ -109,6 +109,10 @@ List of URL GET Arguments
|
|||||||
|
|
||||||
## Version 0.12.0
|
## Version 0.12.0
|
||||||
|
|
||||||
|
* Fixed small breaking bug
|
||||||
|
|
||||||
|
## Version 0.12.0
|
||||||
|
|
||||||
* Moved to reading pieces through Deluge to avoid unflushed data
|
* Moved to reading pieces through Deluge to avoid unflushed data
|
||||||
* Fixed Deluge 2 / libtorrent related bug
|
* Fixed Deluge 2 / libtorrent related bug
|
||||||
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -42,7 +42,7 @@ from setuptools import setup, find_packages
|
|||||||
__plugin_name__ = "Streaming"
|
__plugin_name__ = "Streaming"
|
||||||
__author__ = "Anders Jensen"
|
__author__ = "Anders Jensen"
|
||||||
__author_email__ = "johndoee@tridentstream.org"
|
__author_email__ = "johndoee@tridentstream.org"
|
||||||
__version__ = "0.12.0"
|
__version__ = "0.12.1"
|
||||||
__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."
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ class DelugeTorrentInput(InputBase):
|
|||||||
self.path = path
|
self.path = path
|
||||||
self.piece_buffer = {}
|
self.piece_buffer = {}
|
||||||
self.requested_pieces = {}
|
self.requested_pieces = {}
|
||||||
self.piece_request_queue = []
|
self.piece_consumption_time = []
|
||||||
self.size, self.filename, self.content_type = self.get_info()
|
self.size, self.filename, self.content_type = self.get_info()
|
||||||
|
|
||||||
def get_info(self):
|
def get_info(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user