Skip to content

Commit

Permalink
release: v1.61.0
Browse files Browse the repository at this point in the history
  • Loading branch information
newt-sc committed Sep 29, 2024
1 parent 8ff70a2 commit 49a8914
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v1.61.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.61.0):
* Fix trailers

* [v1.60.1](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.60.1):
* Disable cache for trailers

Expand Down
2 changes: 1 addition & 1 deletion a4kStreaming/explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2018,7 +2018,7 @@ def trailer(core, params):

request = {
'method': 'GET',
'url': 'https://www.imdb.com/_next/data/%s/video/%s.json' % (__build_id, vi),
'url': 'https://www.imdb.com/_next/data/%s/en-US/video/%s.json' % (__build_id, vi),
'params': {
'playlistId': params.id,
'viconst': params.vi,
Expand Down
4 changes: 2 additions & 2 deletions a4kStreaming/lib/kodi.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

if api_mode:
if api_mode.get('kodi', False):
from .kodi_mock import xbmc, xbmcaddon, xbmcplugin, xbmcgui, xbmcvfs
from .kodi_mock import xbmc, xbmcaddon, xbmcplugin, xbmcgui, xbmcvfs, set_info_tag
else:
from . import kodi_mock

Expand All @@ -30,7 +30,7 @@
mod = importlib.import_module(target)
setattr(kodi, target, mod)

set_info_tag = kodi_mock.set_info_tag
set_info_tag = kodi_mock.set_info_tag
else:
import xbmc
import xbmcaddon
Expand Down
5 changes: 4 additions & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.60.1"
version="1.61.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -32,6 +32,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.61.0]:
* Fix trailers

[v1.60.1]:
* Disable cache for trailers

Expand Down
5 changes: 4 additions & 1 deletion packages/addons.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<addons>
<addon id="plugin.video.a4kstreaming"
name="a4kStreaming"
version="1.60.1"
version="1.61.0"
provider-name="Unknown">
<requires>
<import addon="script.module.requests"/>
Expand Down Expand Up @@ -35,6 +35,9 @@ Designed for low-end devices and Estuary skin.
<screenshot>screenshot-06.jpg</screenshot>
</assets>
<news>
[v1.61.0]:
* Fix trailers

[v1.60.1]:
* Disable cache for trailers

Expand Down
2 changes: 1 addition & 1 deletion packages/addons.xml.crc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
450c1bcc2f60cf145038afdb0dd01d3de4b3c66c
f36bf5c9fe64754387df68028976c6e9f3de2d4d

0 comments on commit 49a8914

Please sign in to comment.