Bump version to 0.1.0
parent
9f531d1a2c
commit
652c756201
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="script.module.torrent2http" name="torrent2http" version="0.0.9" provider-name="anteo">
|
<addon id="script.module.torrent2http" name="torrent2http" version="0.1.0" provider-name="anteo">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.14.0"/>
|
<import addon="xbmc.python" version="2.14.0"/>
|
||||||
</requires>
|
</requires>
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
[B]Version 0.1.0[/B]
|
||||||
|
+ Torrent2http binaries updated to 1.0.5
|
||||||
|
+ Added Android Lollipop 5/Marshmallow 6 ARM support
|
||||||
|
|
||||||
[B]Version 0.0.9[/B]
|
[B]Version 0.0.9[/B]
|
||||||
+ Torrent2http binaries updated to 1.0.4, LibTorrent updated to 1.0.5
|
+ Torrent2http binaries updated to 1.0.4, LibTorrent updated to 1.0.5
|
||||||
+ More aggressive tracker connection
|
+ More aggressive tracker connection
|
||||||
|
|
|
@ -15,7 +15,8 @@ class Platform:
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def arch():
|
def arch():
|
||||||
if uname()[4].startswith('arm'):
|
if sys.platform.lower().startswith('linux') and (uname()[4].lower().startswith('arm') or
|
||||||
|
uname()[4].lower().startswith('aarch')):
|
||||||
return 'arm'
|
return 'arm'
|
||||||
elif sys.maxsize > 2**32:
|
elif sys.maxsize > 2**32:
|
||||||
return 'x64'
|
return 'x64'
|
||||||
|
@ -35,4 +36,4 @@ class Platform:
|
||||||
return 'darwin'
|
return 'darwin'
|
||||||
else:
|
else:
|
||||||
raise Error("Platform %s is unknown" % sys.platform, Error.UNKNOWN_PLATFORM,
|
raise Error("Platform %s is unknown" % sys.platform, Error.UNKNOWN_PLATFORM,
|
||||||
platform=sys.platform)
|
platform=sys.platform)
|
||||||
|
|
Loading…
Reference in New Issue