From 0ecb41470716a3b1eefdadcad6e4045ad239c8c0 Mon Sep 17 00:00:00 2001 From: Thomas ERNEST Date: Tue, 17 Oct 2023 22:09:41 +0200 Subject: [PATCH] [plugin.video.arteplussept] 1.4.1 (#4401) --- plugin.video.arteplussept/CHANGELOG.md | 3 +++ plugin.video.arteplussept/addon.xml | 4 +++- plugin.video.arteplussept/resources/lib/view.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/plugin.video.arteplussept/CHANGELOG.md b/plugin.video.arteplussept/CHANGELOG.md index 39d48db01..ffdde0f77 100644 --- a/plugin.video.arteplussept/CHANGELOG.md +++ b/plugin.video.arteplussept/CHANGELOG.md @@ -1,5 +1,8 @@ Changelog also available in file ./addon.xml xpath /addon/extension/news following Kodi guidelines https://kodi.wiki/view/Add-on_structure#changelog.txt +v1.4.1 (2023-10-10) +- Fix playing videos with siblings. + v1.4.0 (2023-8-14) - Add support for content over multiple pages. Manage pagination for favorites, history, search and collections : when there are more items in the history or favorities than the page size (currently 50), it is now possible to navigate through pages. - Refactor most of the code in OO style. Factorize duplicated code. diff --git a/plugin.video.arteplussept/addon.xml b/plugin.video.arteplussept/addon.xml index 57bc4de80..4d6db4382 100644 --- a/plugin.video.arteplussept/addon.xml +++ b/plugin.video.arteplussept/addon.xml @@ -1,5 +1,5 @@ - + @@ -56,6 +56,8 @@ https://github.com/thomas-ernest/plugin.video.arteplussept https://www.arte.tv/fr/ https://github.com/thomas-ernest/plugin.video.arteplussept +v1.4.1 (2023-10-10) +- Fix playing videos with siblings. v1.4.0 (2023-8-14) - Add support for content over multiple pages. - Refactor most of the code in OO style diff --git a/plugin.video.arteplussept/resources/lib/view.py b/plugin.video.arteplussept/resources/lib/view.py index 71b10635a..2f528bfe9 100644 --- a/plugin.video.arteplussept/resources/lib/view.py +++ b/plugin.video.arteplussept/resources/lib/view.py @@ -112,7 +112,7 @@ def build_sibling_playlist(plugin, settings, program_id): sibling_arte_items = api.collection_with_last_viewed( settings.language, user.get_cached_token(plugin, settings.username, True), parent_program.get('kind'), parent_program.get('programId')) - return mapper.map_collection_as_playlist(sibling_arte_items, program_id) + return mapper.map_collection_as_playlist(plugin, sibling_arte_items, program_id) return None