arm v6 by Allin
parent
178111a1f5
commit
0fc2118539
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
||||
<addon id='script.module.libtorrent' version='1.1.1e' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
|
||||
<addon id='script.module.libtorrent' version='1.1.1f' name='python-libtorrent' provider-name='DiMartino, srg70, RussakHH, aisman, inpos'>
|
||||
<requires>
|
||||
<import addon='xbmc.python' version='2.1.0'/>
|
||||
</requires>
|
||||
|
|
|
@ -3,6 +3,7 @@ Added 1.1.1 for Windows by Roman_V_M
|
|||
Added 1.1.1 for iOS by HAL9000
|
||||
Added 1.1.1 for Android, Mac by srg70
|
||||
Added 1.1.1 for Unix x86, Unix amd64, Unix ARM v6,7, aarch64 (UCS4) by aisman
|
||||
Added and fixed multiple versions for ARM v6 by Allin
|
||||
|
||||
1.1.0:
|
||||
Lastest library is default
|
||||
|
|
|
@ -0,0 +1,24 @@
|
|||
#-*- coding: utf-8 -*-
|
||||
'''
|
||||
python-libtorrent for Kodi (script.module.libtorrent)
|
||||
Copyright (C) 2015-2016 DiMartino, srg70, RussakHH, aisman
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
'''
|
|
@ -0,0 +1 @@
|
|||
2286476
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
2107948
|
||||
2286424
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
2694480
|
||||
2286424
|
Binary file not shown.
|
@ -1 +1 @@
|
|||
2552836
|
||||
2577640
|
Binary file not shown.
|
@ -46,8 +46,8 @@ else:
|
|||
|
||||
log('dirname:' +str(dirname))
|
||||
|
||||
versions = ['0.16.19', '1.0.6', '1.0.7', '1.0.8', '1.0.9', '1.1.0', '1.1.1']
|
||||
default_path = versions[-1]
|
||||
versions = ['0.16.19', '1.0.6', '1.0.7', '1.0.8', '1.0.9', '1.1.0', '1.1.1', '1.0.11']
|
||||
default_path = versions[-2]
|
||||
set_version = int(__settings__.getSetting('set_version'))
|
||||
if getSettingAsBool('custom_version'):
|
||||
log('set_version:' +str(set_version)+' '+versions[set_version])
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
<string id="1154">1.0.9</string>
|
||||
<string id="1155">1.1.0</string>
|
||||
<string id="1156">1.1.1</string>
|
||||
<string id="1157">1.0.11</string>
|
||||
|
||||
<string id="1010">TS Engine not running!</string>
|
||||
<string id="1011">No answer</string>
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
<setting id="custom_system" type="bool" label="1003" default="false" />
|
||||
<setting id="set_system" type="enum" label="1004" visible="eq(-1,true)" default="0" lvalues="1100|1101|1102|1103|1104|1105|1106|1107|1108|1109|1110|1111|1112"/>
|
||||
<setting id="custom_version" type="bool" label="1006" default="false" />
|
||||
<setting id="set_version" type="enum" label="1007" visible="eq(-1,true)" default="0" lvalues="1150|1151|1152|1153|1154|1155|1156"/>
|
||||
<setting id="set_version" type="enum" label="1007" visible="eq(-1,true)" default="0" lvalues="1150|1151|1152|1153|1154|1155|1156|1157"/>
|
||||
</category>
|
||||
</settings>
|
||||
|
|
Loading…
Reference in New Issue