Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v1.60.1 #91

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* [v1.60.1](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.60.1):
* Disable cache for trailers

* [v1.60.0](https://github.com/newt-sc/a4kStreaming/releases/tag/plugin.video.a4kstreaming%2Fplugin.video.a4kstreaming-1.60.0):
* Add generic requests caching to speedup browsing

Expand Down
4 changes: 2 additions & 2 deletions a4kStreaming/explorer.py
Original file line number Diff line number Diff line change
Expand Up @@ -1982,7 +1982,7 @@ def trailer(core, params):
'url': 'https://www.imdb.com/video/vi4240746009'
}

response = core.request.execute(core, request)
response = core.request.execute(core, request, False)
if response.status_code != 200:
core.kodi.close_busy_dialog()
core.utils.end_action(core, False)
Expand Down Expand Up @@ -2028,7 +2028,7 @@ def trailer(core, params):
},
}

response = core.request.execute(core, request)
response = core.request.execute(core, request, False)
if response.status_code != 200:
core.kodi.close_busy_dialog()
core.utils.end_action(core, False)
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.0"
version="1.60.1"
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.60.1]:
* Disable cache for trailers

[v1.60.0]:
* Add generic requests caching to speedup browsing

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.0"
version="1.60.1"
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.60.1]:
* Disable cache for trailers

[v1.60.0]:
* Add generic requests caching to speedup browsing

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