diff --git a/addon.xml b/addon.xml index 983971a..2dca2f1 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index 6815f32..61be1a8 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,7 @@ -0.6.19b: +0.6.19c: +Added Android x86 0.16.19 + +0.6.19b: Added windows 0.16.19, OS X 0.16.19, Android ARM 0.16.19 Automatic download system diff --git a/platform_pulsar.py b/platform_pulsar.py index 5e230bf..b18e02f 100644 --- a/platform_pulsar.py +++ b/platform_pulsar.py @@ -17,7 +17,7 @@ def get_libname(platform): libname=['libtorrent.so'] elif platform['system'] == 'windows': libname=['libtorrent.pyd'] - elif platform['system'] == 'android_armv7': + elif platform['system'] in ['android_armv7','android_x86']: libname=['libtorrent.so', 'liblibtorrent.so'] return libname diff --git a/python_libtorrent/__init__.py b/python_libtorrent/__init__.py index a01c1cd..bca8eb1 100644 --- a/python_libtorrent/__init__.py +++ b/python_libtorrent/__init__.py @@ -34,7 +34,7 @@ log('platform ' + str(platform)) try: if platform['system'] in ['darwin', 'linux_x86', 'linux_x86_64', 'windows']: import libtorrent - elif platform['system'] == 'android_armv7': + elif platform['system'] in ['android_armv7', 'android_x86']: import imp from ctypes import * diff --git a/python_libtorrent/android_x86/__init__.py b/python_libtorrent/android_x86/__init__.py new file mode 100644 index 0000000..7030a50 --- /dev/null +++ b/python_libtorrent/android_x86/__init__.py @@ -0,0 +1,5 @@ +#-*- coding: utf-8 -*- +''' + Torrenter v2 plugin for XBMC/Kodi + Copyright (C) 2015 srg70, RussakHH, DiMartino +''' diff --git a/python_libtorrent/android_x86/libtorrent.so.size.txt b/python_libtorrent/android_x86/libtorrent.so.size.txt new file mode 100644 index 0000000..559db63 --- /dev/null +++ b/python_libtorrent/android_x86/libtorrent.so.size.txt @@ -0,0 +1 @@ +7145572 \ No newline at end of file diff --git a/python_libtorrent/android_x86/libtorrent.so.zip b/python_libtorrent/android_x86/libtorrent.so.zip new file mode 100644 index 0000000..8c27b33 Binary files /dev/null and b/python_libtorrent/android_x86/libtorrent.so.zip differ diff --git a/python_libtorrent/public.py b/python_libtorrent/public.py index ec60180..a403e0e 100644 --- a/python_libtorrent/public.py +++ b/python_libtorrent/public.py @@ -14,7 +14,8 @@ class Public: {'system':'linux_x86'}, {'system':'linux_x86_64'}, {'system':'windows'}, - {'system':'android_armv7'}] + {'system':'android_armv7'}, + {'system':'android_x86'}] self.root=os.path.dirname(__file__) self._generate_size_file()