diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8c141bd..1ce11db 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,7 +4,7 @@ - + @@ -35,190 +35,186 @@ - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -305,11 +301,11 @@ - + - - + + @@ -343,7 +339,7 @@ - + @@ -371,21 +367,17 @@ - + - - + + - - - - @@ -396,26 +388,19 @@ - - - - - - - - - - - - - + + + + + + @@ -463,7 +448,6 @@ @@ -548,7 +533,6 @@ - @@ -646,6 +630,7 @@ + @@ -827,12 +812,6 @@ @@ -1132,7 +1117,7 @@ - + @@ -1162,7 +1147,6 @@ - @@ -1187,7 +1171,8 @@ - @@ -1196,20 +1181,6 @@ - - - - - - - - - - - - - - @@ -1463,6 +1434,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1496,51 +1642,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - @@ -1551,304 +1662,160 @@ - - - - - - - - - - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Anteoloader.py b/Anteoloader.py index 49b887a..9a8c4fc 100644 --- a/Anteoloader.py +++ b/Anteoloader.py @@ -133,7 +133,7 @@ class AnteoLoader: keep_complete = True keep_incomplete = True - dht_routers = ["router.bittorrent.com:6881","router.utorrent.com:6881"] + dht_routers = ["router.bittorrent.com:6881", "router.utorrent.com:6881"] user_agent = 'uTorrent/2200(24683)' self.engine = Engine(uri=file_url(self.torrentFile), download_path=self.storageDirectory, connections_limit=connections_limit, diff --git a/Core.py b/Core.py index afe98b3..946a015 100644 --- a/Core.py +++ b/Core.py @@ -1620,6 +1620,7 @@ class Core: Download().setprio(id, ind) def downloadLibtorrent(self, params={}): + import Libtorrent get = params.get storage=get('storage') if not storage: self.userStorage(params) @@ -1635,7 +1636,7 @@ class Core: if classMatch: searcher = classMatch.group(1) url = Searchers().downloadWithSearcher(classMatch.group(2), searcher) - torrent = Downloader.Torrent(self.userStorageDirectory, torrentFilesDirectory=self.torrentFilesDirectory) + torrent = Libtorrent.Libtorrent(self.userStorageDirectory, torrentFilesDirectory=self.torrentFilesDirectory) torrent.initSession() encryption = self.__settings__.getSetting('encryption') == 'true' if encryption: diff --git a/functions.py b/functions.py index a3791f0..f88290b 100644 --- a/functions.py +++ b/functions.py @@ -46,7 +46,7 @@ ROOT = __settings__.getAddonInfo('path') # .decode('utf-8').encode(sys.getfiles userStorageDirectory = __settings__.getSetting("storage") USERAGENT = "Mozilla/5.0 (Windows NT 6.1; rv:5.0) Gecko/20100101 Firefox/5.0" __addonpath__ = __settings__.getAddonInfo('path') -icon = os.path.join(__addonpath__, '/icon.png') +icon = os.path.join(__addonpath__, 'icon.png') __version__ = __settings__.getAddonInfo('version') __plugin__ = __settings__.getAddonInfo('name') + " v." + __version__