summaryrefslogtreecommitdiff
path: root/plugin.video.vrt.nu/addon.xml
blob: 3969872eaad813a686b2a39c820eeafec26c369e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.vrt.nu"
       name="VRT Nu"
       version="1.0.0"
       provider-name="Martijn Moreel">

    <requires>
        <import addon="xbmc.python" version="2.25.0"/>
		<import addon="script.module.requests" version="2.12.4"/>
		<import addon="script.module.beautifulsoup4" version="4.3.2"/>
    </requires>

    <extension point="xbmc.python.pluginsource" library="addon.py">
        <provides>video</provides>
    </extension>

    <extension point="xbmc.addon.metadata">
		<summary lang="en_GB">Addon to watch vrt.nu</summary>
		<description lang="en_GB">This addon can be used to watch all streams from vrt.nu. And also offers livestreams from Een, Canvas and Ketnet!</description>
		<summary lang="nl_NL">Addon om vrt.nu te bekijken.</summary>
		<description lang="nl_NL">Met deze addon kan je alle streams van vrt.nu bekijken. Alsook de livestreams van Een, Canvas en Ketnet!</description>
        <language>nl</language>
        <platform>all</platform>
        <license>GNU General Public License, v3</license>
        <news>
v1.0.0 (01-10-2017)
- Fixed issue where all the videos would not be able to play, implemented new way of getting the streaming urls
- Fixed bug where a single video would not be listed when there is also a part "ANDEREN BEKEKEN OOK" present
- New versioning system now starting from 1.0.0
v0.0.7 (09-09-2017)
- Fixed bug where dates were not always shown
v0.0.6 (06-08-2017)
- Fixed ordering bug for videos
v0.0.5 (24-07-2017)
- Fixed broken Sporza logo
v0.0.4 (20-07-2017)
- Added Sporza livestream
- Added dates to videos (Thanks stevenv)
- Fixed bug where seasons did not get listed
v0.0.3 (22-05-2017)
- Fixed broken livestreams
v0.0.2 (07-05-2017)
- Fixed installation issue
v0.0.1  (01-05-2017)
- Initial working release
</news>
        <source>https://github.com/pietje666/plugin.video.vrt.nu</source>
		<assets>
			<icon>resources/icon.png</icon>
			<fanart>resources/fanart.jpg</fanart>
			<!--<screenshot>resources/screenshot-01.jpg</screenshot>-->
		</assets>
    </extension>
</addon>