diff --git a/CHANGELOG.md b/CHANGELOG.md index 73c986e..7b61a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +[Full Changelog](https://git.jeroened.be/JeroenED/plugin.video.viervijfzes/compare/v0.4.11...v0.4.12) + +**Implemented enhancements:** + +- Add live channels [\#129](https://github.com/add-ons/plugin.video.viervijfzes/pull/129) ([mediaminister](https://github.com/mediaminister)) +- Add PlayCrime Channel + + ## [v0.4.11](https://github.com/add-ons/plugin.video.viervijfzes/tree/v0.4.11) (2023-07-26) [Full Changelog](https://github.com/add-ons/plugin.video.viervijfzes/compare/v0.4.10...v0.4.11) diff --git a/README.md b/README.md index 75b3684..e8be60c 100644 --- a/README.md +++ b/README.md @@ -11,8 +11,6 @@ account aanmaken op [goplay.be](https://www.goplay.be/). Meer informatie kan je vinden op de [Wiki pagina](https://github.com/add-ons/plugin.video.viervijfzes/wiki). -> Let op dat er geen live-streams beschikbaar zijn op het GoPlay platform en je dus enkel kan kijken naar de beschikbare programma's in de catalogus. - ## Features De volgende features worden ondersteund: diff --git a/addon.xml b/addon.xml index ad5f3d6..1c04669 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -21,8 +21,9 @@ This add-on is not officially commissioned/supported by SBS Belgium and is provided 'as is' without any warranty of any kind. The Play4, Play5 and Play6 logos are property of SBS Belgium. all GPL-3.0-only - v0.4.11 (2023-07-26) -- Fixes for DRM protected VOD. + v0.4.12 (2024-05-08) +- Added live channels (by mediaminister) +- Added PlayCrime Channel https://github.com/add-ons/plugin.video.viervijfzes resources/icon.png diff --git a/resources/lib/viervijfzes/__init__.py b/resources/lib/viervijfzes/__init__.py index 16947b0..1c24f97 100644 --- a/resources/lib/viervijfzes/__init__.py +++ b/resources/lib/viervijfzes/__init__.py @@ -51,6 +51,16 @@ CHANNELS = OrderedDict([ 'iptv_id': 'play7.be', 'youtube': [] }), + ('PlayCrime', { + 'name': 'PlayCrime', + 'url': 'live-kijken/play-crime', + 'epg_id': 'crime', + 'logo': 'playcrime.png', + 'background': 'playcrime-background.png', + 'iptv_preset': 18, + 'iptv_id': 'playcrime.be', + 'youtube': [] + }), ('GoPlay', { 'name': 'Go Play', 'url': 'https://www.goplay.be', diff --git a/resources/lib/viervijfzes/epg.py b/resources/lib/viervijfzes/epg.py index 6174adc..934312e 100644 --- a/resources/lib/viervijfzes/epg.py +++ b/resources/lib/viervijfzes/epg.py @@ -78,6 +78,7 @@ class EpgApi: 'Play5': 'https://www.goplay.be/api/epg/vijf/{date}', 'Play6': 'https://www.goplay.be/api/epg/zes/{date}', 'Play7': 'https://www.goplay.be/api/epg/zeven/{date}', + 'PlayCrime': 'https://www.goplay.be/api/epg/crime/{date}', } EPG_NO_BROADCAST = 'Geen uitzending' diff --git a/resources/logos/playcrime-background.png b/resources/logos/playcrime-background.png new file mode 100644 index 0000000..e9ebbdb Binary files /dev/null and b/resources/logos/playcrime-background.png differ diff --git a/resources/logos/playcrime.png b/resources/logos/playcrime.png new file mode 100644 index 0000000..b2d87d8 Binary files /dev/null and b/resources/logos/playcrime.png differ