Skip to content

Commit 9dd27d5

Browse files
authored
Merge pull request #4692 from mediaminister/plugin.video.vrt.nu@matrix
[plugin.video.vrt.nu@matrix] 2.5.39+matrix.1
2 parents c24a747 + 71c683c commit 9dd27d5

File tree

11 files changed

+959
-325
lines changed

11 files changed

+959
-325
lines changed

plugin.video.vrt.nu/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,9 @@ leave a message at [our Facebook page](https://facebook.com/kodivrtnu/).
5959
</table>
6060

6161
## Releases
62+
### v2.5.39 (2025-07-20)
63+
- Fix category menu listings (@mediaminister)
64+
6265
### v2.5.38 (2025-05-12)
6366
- Fix Ketnet Jr livestream (@mediaminister)
6467

plugin.video.vrt.nu/addon.xml

Lines changed: 4 additions & 1 deletion
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.vrt.nu" name="VRT MAX" version="2.5.38+matrix.1" provider-name="Martijn Moreel, dagwieers, mediaminister">
2+
<addon id="plugin.video.vrt.nu" name="VRT MAX" version="2.5.39+matrix.1" provider-name="Martijn Moreel, dagwieers, mediaminister">
33
<requires>
44
<import addon="resource.images.studios.white" version="0.0.22"/>
55
<import addon="script.module.beautifulsoup4" version="4.6.2"/>
@@ -42,6 +42,9 @@
4242
<website>https://github.com/add-ons/plugin.video.vrt.nu/wiki</website>
4343
<source>https://github.com/add-ons/plugin.video.vrt.nu</source>
4444
<news>
45+
v2.5.39 (2025-07-20)
46+
- Fix category menu listings
47+
4548
v2.5.38 (2025-05-12)
4649
- Fix Ketnet Jr livestream
4750

plugin.video.vrt.nu/resources/language/resource.language.en_gb/strings.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ msgid "VRT 1"
670670
msgstr ""
671671

672672
msgctxt "#30824"
673-
msgid "Canvas"
673+
msgid "VRT Canvas"
674674
msgstr ""
675675

676676
msgctxt "#30825"

plugin.video.vrt.nu/resources/language/resource.language.nl_nl/strings.po

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -670,8 +670,8 @@ msgid "VRT 1"
670670
msgstr "VRT 1"
671671

672672
msgctxt "#30824"
673-
msgid "Canvas"
674-
msgstr "Canvas"
673+
msgid "VRT Canvas"
674+
msgstr "VRT Canvas"
675675

676676
msgctxt "#30825"
677677
msgid "Ketnet"
@@ -991,14 +991,6 @@ msgctxt "#30981"
991991
msgid "Successfully invalidated caches."
992992
msgstr "Caches werden ongeldig gemaakt."
993993

994-
msgctxt "#30982"
995-
msgid "Successfully refreshed favorites."
996-
msgstr "Favoriete programmma's werden ververst."
997-
998-
msgctxt "#30983"
999-
msgid "Successfully refreshed watching activity."
1000-
msgstr "Kijkactiviteit werd ververst."
1001-
1002994
msgctxt "#30985"
1003995
msgid "Successfully cleared VRT tokens."
1004996
msgstr "VRT tokens werden verwijderd."

plugin.video.vrt.nu/resources/lib/addon.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
from urllib import unquote_plus
1212

1313
from kodiutils import container_refresh, end_of_directory, execute_builtin, get_global_setting, localize, log_access, notification, ok_dialog, refresh_caches
14-
from utils import from_unicode, to_unicode
1514

1615
plugin = Plugin() # pylint: disable=invalid-name
1716

@@ -47,17 +46,17 @@ def delete_tokens():
4746
def follow(program_id, program_title):
4847
"""The API interface to follow a program used by the context menu"""
4948
from api import set_favorite
50-
set_favorite(program_id=program_id, program_title=to_unicode(unquote_plus(from_unicode(program_title))))
51-
notification(message=localize(30411, title=program_title))
49+
set_favorite(program_id=program_id, program_title=unquote_plus(program_title))
50+
notification(message=localize(30411, title=unquote_plus(program_title)))
5251
container_refresh()
5352

5453

5554
@plugin.route('/unfollow/<program_id>/<program_title>')
5655
def unfollow(program_id, program_title):
5756
"""The API interface to unfollow a program used by the context menu"""
5857
from api import set_favorite
59-
set_favorite(program_id=program_id, program_title=to_unicode(unquote_plus(from_unicode(program_title))), is_favorite=False)
60-
notification(message=localize(30412, title=program_title))
58+
set_favorite(program_id=program_id, program_title=unquote_plus(program_title), favorited=False)
59+
notification(message=localize(30412, title=unquote_plus(program_title)))
6160
container_refresh()
6261

6362

0 commit comments

Comments
 (0)