Skip to content

Commit 6b5c0a1

Browse files
committed
Bump version to 1.5.1
Include 2 bugfixes.
1 parent a74fd96 commit 6b5c0a1

6 files changed

Lines changed: 13 additions & 9 deletions

File tree

plugin.video.arteplussept/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v1.5.1 (2026-7-15)
2+
3+
4+
Isolate plugin source from scripts and tests
5+
16
v1.5.0 (2026-7-15)
27

38
- New: Play from the strat or play live content

plugin.video.arteplussept/addon.xml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="plugin.video.arteplussept" name="Arte +7" version="1.5.0" provider-name="bmf, thomas-ernest">
2+
<addon id="plugin.video.arteplussept" name="Arte +7" version="1.5.1" provider-name="bmf, thomas-ernest">
33
<!-- https://kodi.wiki/view/Addon.xml -->
44
<requires>
55
<import addon="xbmc.python" version="3.0.0"/>
@@ -55,10 +55,9 @@ https://github.com/thomas-ernest/plugin.video.arteplussept
5555
<license>MIT</license>
5656
<website>https://www.arte.tv/fr/</website>
5757
<source>https://github.com/thomas-ernest/plugin.video.arteplussept</source>
58-
<news>1.5.0 (2026-7-15)
59-
- New: Play from the strat or play live content
60-
- NFR: Make create-release.sh more robust
61-
- NFR: First unit tests (for arte live stream)</news>
58+
<news>1.5.1 (2026-7-15)
59+
60+
Isolate plugin source from scripts and tests</news>
6261
<assets>
6362
<icon>resources/icon.png</icon>
6463
<fanart>resources/fanart.jpg</fanart>

plugin.video.arteplussept/resources/lib/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from resources.lib import logger
99

1010
_PLUGIN_NAME = "Arte +7"
11-
_PLUGIN_VERSION = "1.4.6"
11+
_PLUGIN_VERSION = "1.5.1"
1212
# Arte hbbtv - deprecated API since 2022 prefer Arte TV API
1313
_HBBTV_URL = 'https://www.arte.tv/hbbtvv2/services/web/index.php'
1414
_HBBTV_HEADERS = {

plugin.video.arteplussept/resources/lib/mapper/mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def map_video_as_playlist_item(plugin, item):
9191

9292
path = plugin.url_for(
9393
'play_from', kind=kind, program_id=program_id,
94-
mpaa="Unknown", from_playlist=PlayFrom.LST.value)
94+
mpaa="Unknown", play_from=PlayFrom.LST.value)
9595
result = ArteVideoItem(plugin, item).build_item(path, True)
9696
return result
9797

plugin.video.arteplussept/resources/lib/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def synch_during_playback(synched_player):
148148
@plugin.route('/play/<kind>/<program_id>/<mpaa>', name='play')
149149
@plugin.route('/play/<kind>/<program_id>/<mpaa>/<play_from>', name='play_from')
150150
@plugin.route('/play/<kind>/<program_id>/<mpaa>/<play_from>/<audio_slot>', name='play_specific')
151-
def play(kind, program_id, mpaa, play_from=PlayFrom.ITM, audio_slot='0'):
151+
def play(kind, program_id, mpaa, play_from=PlayFrom.ITM, audio_slot='1'):
152152
"""Play content identified with program_id.
153153
:param str kind: an enum in TODO (e.g. TRAILER, COLLECTION, LINK, CLIP, ...)
154154
:param str audio_slot: a numeric to identify the audio stream to use e.g. 1 2

scripts/create-release.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ REMOTE_ID=origin
1414
# ---------------------------------------------------------
1515
ask_next_release_version() {
1616
local CURRENT_VERSION
17-
CURRENT_VERSION=$(grep -oP '<addon\b[^>]*\bversion="\K[0-9]+\.[0-9]+\.[0-9]+' addon.xml)
17+
CURRENT_VERSION=$(grep -oP '<addon\b[^>]*\bversion="\K[0-9]+\.[0-9]+\.[0-9]+' plugin.video.arteplussept/addon.xml)
1818

1919
local MAJOR MINOR BUGFIX
2020
MAJOR=$(echo "$CURRENT_VERSION" | cut -d. -f1)

0 commit comments

Comments
 (0)