2015-07-11 12:00:55 +03:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2015-07-11 12:45:24 +03:00
|
|
|
from python_libtorrent import get_libtorrent, get_platform, log
|
|
|
|
import xbmcgui
|
2015-07-23 22:13:47 +03:00
|
|
|
import xbmcaddon, xbmc
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
sucsess=False
|
2015-07-11 12:45:24 +03:00
|
|
|
version=''
|
2015-07-11 12:00:55 +03:00
|
|
|
p=get_platform()
|
2015-07-11 12:45:24 +03:00
|
|
|
dialog = xbmcgui.Dialog()
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
try:
|
2015-07-11 12:45:24 +03:00
|
|
|
libtorrent=get_libtorrent()
|
2015-07-11 12:00:55 +03:00
|
|
|
|
2015-07-11 12:45:24 +03:00
|
|
|
log('Imported libtorrent v' + libtorrent.version + ' from get_libtorrent()')
|
|
|
|
version=str(libtorrent.version)
|
2015-07-11 12:00:55 +03:00
|
|
|
sucsess=True
|
|
|
|
except Exception, e:
|
2015-07-11 12:45:24 +03:00
|
|
|
log('Error importing from get_libtorrent(). Exception: ' + str(e))
|
2015-07-11 12:00:55 +03:00
|
|
|
|
|
|
|
|
2015-07-20 21:12:38 +03:00
|
|
|
line2='python-libtorrent %s IMPORTED successfully' % version if sucsess else 'Failed to import python-libtorrent!'
|
2015-07-23 22:13:47 +03:00
|
|
|
dialog.ok('Libtorrent','OS:'+p['os']+' arch:'+p['arch'], line2)
|
|
|
|
|
|
|
|
__settings__ = xbmcaddon.Addon(id='script.module.libtorrent')
|
|
|
|
__language__ = __settings__.getLocalizedString
|
|
|
|
if __settings__.getSetting('ask_dirname')=='true':
|
|
|
|
set_dirname=__settings__.getSetting('dirname')
|
2015-07-24 18:00:27 +03:00
|
|
|
__settings__.setSetting('ask_dirname','false')
|
2015-07-23 22:13:47 +03:00
|
|
|
keyboard = xbmc.Keyboard(set_dirname, __language__(1002))
|
|
|
|
keyboard.doModal()
|
|
|
|
path_keyboard = keyboard.getText()
|
|
|
|
if path_keyboard and keyboard.isConfirmed():
|
|
|
|
__settings__.setSetting('dirname', path_keyboard)
|