CREATE TABLE IF NOT EXISTS source (
id INTEGER PRIMARY KEY AUTOINCREMENT,
imdb_id TEXT NOT NULL,
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # Python 3 | |
| import sys | |
| import xbmc | |
| import xbmcgui | |
| import xbmcplugin | |
| from resources.lib import utils | |
| from resources.lib.config import cConfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| xShip PATCHED — Issues #40 through #68 | |
| Base: plugin.video.xship v2026.01.18 (michaz1988) | |
| == 2026-03-04 == | |
| Source search fix: isFolder=True for clean context menu now works | |
| correctly with source list displayed as directory after scan. | |
| FSK age rating: movie listings show FSK rating (0/6/12/16/18) | |
| from TMDB release_dates API. Shown in plot and as overlay. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2026-02-27 08:30:31.586 T:16000 info <general>: ----------------------------------------------------------------------- | |
| 2026-02-27 08:30:31.586 T:16000 info <general>: Starting Kodi (21.3 (21.3.0) Git:20251031-a3a448d26b). Platform: Android ARM 32-bit | |
| 2026-02-27 08:30:31.586 T:16000 info <general>: Using Release Kodi x32 | |
| 2026-02-27 08:30:31.586 T:16000 info <general>: Kodi compiled 2025-12-13 by Clang 9.0.9 (https://android.googlesource.com/toolchain/llvm-project a2a1e703c0edb03ba29944e529ccbf457742737b) for Android ARM 32-bit API level 21 (API level 21) | |
| 2026-02-27 08:30:31.586 T:16000 info <general>: Running on Amazon AFTKRT with Android TV 11.0.0 API level 30, kernel: Linux ARM 32-bit version 5.10.43-android12-9-ga8c852b26125 | |
| 2026-02-27 08:30:31.587 T:16000 info <general>: FFmpeg version/source: 6.0.1-Kodi | |
| 2026-02-27 08:30:31.587 T:16000 info <general>: Host CPU: ARMv8 Processor rev 0 (v8l), 4 cores available | |
| 2026-02-27 08:30:31.587 T:16000 info <general>: Product: karat, Device: ka |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/resources/lib/indexers/listings.py | |
| +++ b/resources/lib/indexers/listings.py | |
| @@ -106,7 +106,7 @@ class listings: | |
| name = oRequestHandler.request() | |
| data = json.loads(name) | |
| if 'status_code' in data and data['status_code'] == 34: | |
| - return {} | |
| + return [], 0 | |
| list = [] | |
| for i in data['results']: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/resources/lib/utils.py | |
| +++ b/resources/lib/utils.py | |
| @@ -61,6 +61,11 @@ def isBlockedHoster(url, isResolve=True): | |
| url = html.unescape(url) # https://github.com/Gujal00/ResolveURL/pull/1115 | |
| hmf = resolver.HostedMediaFile(url=url, include_disabled=True, include_universal=False) | |
| if hmf.valid_url(): | |
| + try: | |
| + if hmf._HostedMediaFile__resolvers[0].isPopup(): | |
| + prioHoster = hmf._HostedMediaFile__resolvers[0].priority | |
| + return False, sDomain, url, max(prioHoster, 999) |
Base: plugin.video.xship v2026.01.18 (michaz1988)
ZIP: 16-plugin.video.xship-2026.01.18-PATCHED-40-59.zip
Note: This patched build is provided for easier testing only. It is not intended to officially replace any of michaz's releases. If michaz decides to integrate these fixes into the upstream project, that is entirely his call. Until then, this ZIP serves as a convenient way to test all patches together on a real device.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #2021-07-20 | |
| #edit 2024-12-04 | |
| import os, sys | |
| import xbmc, xbmcplugin, xbmcaddon, xbmcgui, xbmcvfs | |
| from six import iteritems | |
| is_python2 = sys.version_info.major == 2 |
NewerOlder