commit
d89662688f
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
||||
<addon id='script.module.libtorrent' version='1.1.1g' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
|
||||
<addon id='script.module.libtorrent' version='1.1.2' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
|
||||
<requires>
|
||||
<import addon='xbmc.python' version='2.1.0'/>
|
||||
</requires>
|
||||
|
@ -13,7 +13,7 @@
|
|||
<summary lang='ru'>script.module.libtorrent - модуль Kodi, который упрощает импорт библиотеки python-libtorrent.</summary>
|
||||
<summary lang='es'>script.module.libtorrent es un módulo de Kodi que facilita la importación de la librería python-libtorrent.</summary>
|
||||
<license>MIT License</license>
|
||||
<source>https://github.com/DiMartinoXBMC/script.module.libtorrent</source>
|
||||
<source>https://github.com/inpos/script.module.libtorrent</source>
|
||||
</extension>
|
||||
<extension point='xbmc.python.module'/>
|
||||
</addon>
|
||||
|
|
|
@ -126,10 +126,8 @@ def get_platform():
|
|||
if "arm" in uname:
|
||||
if "armv7" in uname:
|
||||
ret["arch"] = "armv7"
|
||||
elif "armv6" in uname:
|
||||
ret["arch"] = "armv6"
|
||||
else:
|
||||
ret["arch"] = "arm"
|
||||
ret["arch"] = "armv6"
|
||||
elif "mips" in uname:
|
||||
if sys.maxunicode > 65536:
|
||||
ret["arch"] = 'mipsel_ucs4'
|
||||
|
|
|
@ -126,10 +126,8 @@ def get_platform():
|
|||
if "arm" in uname:
|
||||
if "armv7" in uname:
|
||||
ret["arch"] = "armv7"
|
||||
elif "armv6" in uname:
|
||||
ret["arch"] = "armv6"
|
||||
else:
|
||||
ret["arch"] = "arm"
|
||||
ret["arch"] = "armv6"
|
||||
elif "mips" in uname:
|
||||
if sys.maxunicode > 65536:
|
||||
ret["arch"] = 'mipsel_ucs4'
|
||||
|
|
Loading…
Reference in New Issue