Skip to content

Commit

Permalink
[plugin.video.arteplussept] 1.4.1 (#4401)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-ernest authored Oct 17, 2023
1 parent ca5120e commit 0ecb414
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
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

0 comments on commit 0ecb414

Please sign in to comment.