Added playcrime channel
This commit is contained in:
parent
97d80f2115
commit
1118468427
@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# 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)
|
## [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)
|
[Full Changelog](https://github.com/add-ons/plugin.video.viervijfzes/compare/v0.4.10...v0.4.11)
|
||||||
|
@ -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).
|
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
|
## Features
|
||||||
|
|
||||||
De volgende features worden ondersteund:
|
De volgende features worden ondersteund:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
<addon id="plugin.video.viervijfzes" name="GoPlay" version="0.4.11" provider-name="Michaël Arnauts">
|
<addon id="plugin.video.viervijfzes" name="GoPlay" version="0.4.12" provider-name="Michaël Arnauts">
|
||||||
<requires>
|
<requires>
|
||||||
<import addon="xbmc.python" version="3.0.0"/>
|
<import addon="xbmc.python" version="3.0.0"/>
|
||||||
<import addon="script.module.dateutil" version="2.6.0"/>
|
<import addon="script.module.dateutil" version="2.6.0"/>
|
||||||
@ -21,8 +21,9 @@
|
|||||||
<disclaimer lang="en_GB">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.</disclaimer>
|
<disclaimer lang="en_GB">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.</disclaimer>
|
||||||
<platform>all</platform>
|
<platform>all</platform>
|
||||||
<license>GPL-3.0-only</license>
|
<license>GPL-3.0-only</license>
|
||||||
<news>v0.4.11 (2023-07-26)
|
<news>v0.4.12 (2024-05-08)
|
||||||
- Fixes for DRM protected VOD.</news>
|
- Added live channels (by mediaminister)
|
||||||
|
- Added PlayCrime Channel</news>
|
||||||
<source>https://github.com/add-ons/plugin.video.viervijfzes</source>
|
<source>https://github.com/add-ons/plugin.video.viervijfzes</source>
|
||||||
<assets>
|
<assets>
|
||||||
<icon>resources/icon.png</icon>
|
<icon>resources/icon.png</icon>
|
||||||
|
@ -51,6 +51,16 @@ CHANNELS = OrderedDict([
|
|||||||
'iptv_id': 'play7.be',
|
'iptv_id': 'play7.be',
|
||||||
'youtube': []
|
'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', {
|
('GoPlay', {
|
||||||
'name': 'Go Play',
|
'name': 'Go Play',
|
||||||
'url': 'https://www.goplay.be',
|
'url': 'https://www.goplay.be',
|
||||||
|
@ -78,6 +78,7 @@ class EpgApi:
|
|||||||
'Play5': 'https://www.goplay.be/api/epg/vijf/{date}',
|
'Play5': 'https://www.goplay.be/api/epg/vijf/{date}',
|
||||||
'Play6': 'https://www.goplay.be/api/epg/zes/{date}',
|
'Play6': 'https://www.goplay.be/api/epg/zes/{date}',
|
||||||
'Play7': 'https://www.goplay.be/api/epg/zeven/{date}',
|
'Play7': 'https://www.goplay.be/api/epg/zeven/{date}',
|
||||||
|
'PlayCrime': 'https://www.goplay.be/api/epg/crime/{date}',
|
||||||
}
|
}
|
||||||
|
|
||||||
EPG_NO_BROADCAST = 'Geen uitzending'
|
EPG_NO_BROADCAST = 'Geen uitzending'
|
||||||
|
BIN
resources/logos/playcrime-background.png
Normal file
BIN
resources/logos/playcrime-background.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 44 KiB |
BIN
resources/logos/playcrime.png
Normal file
BIN
resources/logos/playcrime.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Loading…
Reference in New Issue
Block a user