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

[plugin.video.arteplussept@matrix] 1.4.1 #4401

Merged
merged 1 commit into from
Oct 17, 2023
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 plugin.video.arteplussept/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 3 additions & 1 deletion plugin.video.arteplussept/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.arteplussept" name="Arte +7" version="1.4.0" provider-name="bmf, thomas-ernest">
<addon id="plugin.video.arteplussept" name="Arte +7" version="1.4.1" provider-name="bmf, thomas-ernest">
<!-- https://kodi.wiki/view/Addon.xml -->
<requires>
<import addon="xbmc.python" version="3.0.0"/>
Expand Down Expand Up @@ -56,6 +56,8 @@ https://github.com/thomas-ernest/plugin.video.arteplussept
<website>https://www.arte.tv/fr/</website>
<source>https://github.com/thomas-ernest/plugin.video.arteplussept</source>
<news>
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
Expand Down
2 changes: 1 addition & 1 deletion plugin.video.arteplussept/resources/lib/view.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down