pull/1/head
DiMartinoXBMC 2016-01-27 17:34:58 +03:00
parent f377c6a19c
commit a38cbbef68
2 changed files with 6 additions and 7 deletions

View File

@ -286,7 +286,7 @@ class AnteoPlayer(xbmc.Player):
log('[AnteoPlayer]: ************************************* break') log('[AnteoPlayer]: ************************************* break')
break break
log('[AnteoPlayer]: ************************************* GO NEXT?') log('[AnteoPlayer]: ************************************* GO NEXT?')
if self.next_dl and isinstance(self.next_contentId, int) and self.iterator == 100: if self.next_dl and self.next_contentId != False and isinstance(self.next_contentId, int) and self.iterator == 100:
self.contentId = self.next_contentId self.contentId = self.next_contentId
continue continue
log('[AnteoPlayer]: ************************************* NO! break') log('[AnteoPlayer]: ************************************* NO! break')
@ -438,10 +438,10 @@ class AnteoPlayer(xbmc.Player):
def setup_nextep(self): def setup_nextep(self):
try: try:
if self.get("url2"): if self.get("url2"):
debug("url2") debug("[setup_nextep]: url2")
self.ids_video = urllib.unquote_plus(self.get("url2")).split(',') self.ids_video = urllib.unquote_plus(self.get("url2")).split(',')
else: else:
debug("not url2") debug("[setup_nextep]: not url2")
self.ids_video = self.get_ids() self.ids_video = self.get_ids()
except: except:
pass pass
@ -461,7 +461,6 @@ class AnteoPlayer(xbmc.Player):
label = os.path.basename(file_status.name) label = os.path.basename(file_status.name)
self.basename = label self.basename = label
self.seeding_run = False self.seeding_run = False
subtitles = None
listitem = xbmcgui.ListItem(label, path=url) listitem = xbmcgui.ListItem(label, path=url)
if self.next_dl: if self.next_dl:

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.torrenter" name="Torrenter" version="2.4.3a" provider-name="DiMartino"> <addon id="plugin.video.torrenter" name="Torrenter" version="2.4.4" provider-name="DiMartino">
<requires> <requires>
<import addon="xbmc.python" version="2.1.0"/> <import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.libtorrent"/> <import addon="script.module.libtorrent"/>
@ -14,12 +14,12 @@
<platform>all</platform> <platform>all</platform>
<summary lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload. <summary lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload.
</summary> </summary>
<description lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload (uses python-libtorrent or Ace Stream). It also can add, control torrents and play downloaded files with external torrent-client (uTorrent, Transmisson, Vuse, Deluge) or python-libtorrent. <description lang='en'>It also can add, control torrents and play downloaded files with external torrent-client (uTorrent, Transmisson, Vuse, Deluge, qBittorrent) or python-libtorrent.
</description> </description>
<disclaimer lang='en'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer> <disclaimer lang='en'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
<summary lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания. <summary lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания.
</summary> </summary>
<description lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания. Использует библиотеку python-libtorrent или Ace Stream. Так же плагин может добавлять, проигрывать и управлять скачками в торрент клиентах (uTorrent, Transmisson, Deluge и Vuse) или средставми python-libtorrent. <description lang='ru'>Так же плагин может добавлять, проигрывать и управлять скачками в торрент клиентах (uTorrent, Transmisson, Deluge и Vuse, qBittorrent) или средставми python-libtorrent.
</description> </description>
<disclaimer lang='ru'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer> <disclaimer lang='ru'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
<forum>https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html</forum> <forum>https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html</forum>