Kodi 17 open context menu when is default for onclick torrent
parent
c7f9f54fb0
commit
b31b5825c2
24
Core.py
24
Core.py
|
@ -1693,8 +1693,28 @@ class Core:
|
||||||
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]), succeeded=True)
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]), succeeded=True)
|
||||||
|
|
||||||
def context(self, params={}):
|
def context(self, params={}):
|
||||||
xbmc.executebuiltin("Action(ContextMenu)")
|
if int(self.version_check()[:2]) < 17:
|
||||||
sys.exit()
|
xbmc.executebuiltin("Action(ContextMenu)")
|
||||||
|
sys.exit()
|
||||||
|
else:
|
||||||
|
fixed = xbmcgui.Dialog().contextmenu(list=[(self.localize('Open')),
|
||||||
|
(self.localize('Download via Libtorrent')),
|
||||||
|
(self.localize('Download via T-client'))])
|
||||||
|
if fixed == 0:
|
||||||
|
xbmc.executebuiltin('XBMC.Container.Update(%s)' %
|
||||||
|
('%s?action=%s&url=%s') %
|
||||||
|
(sys.argv[0], 'openTorrent', params['url']))
|
||||||
|
elif fixed == 1:
|
||||||
|
xbmc.executebuiltin('XBMC.RunPlugin(%s)' %
|
||||||
|
('%s?action=%s&url=%s') %
|
||||||
|
(sys.argv[0], 'downloadLibtorrent', params['url']))
|
||||||
|
elif fixed == 2:
|
||||||
|
xbmc.executebuiltin('XBMC.RunPlugin(%s)' %
|
||||||
|
('%s?action=%s&url=%s') %
|
||||||
|
(sys.argv[0], 'downloadFilesList', params['url']))
|
||||||
|
|
||||||
|
def version_check(self):
|
||||||
|
return xbmc.getInfoLabel( "System.BuildVersion" )
|
||||||
|
|
||||||
def downloadFilesList(self, params={}):
|
def downloadFilesList(self, params={}):
|
||||||
from resources.utorrent.net import Download
|
from resources.utorrent.net import Download
|
||||||
|
|
Loading…
Reference in New Issue