forked from add-ons/plugin.video.vtm.go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
35 lines (34 loc) · 1.84 KB
/
addon.xml
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.vtm.go" name="VTM GO" version="0.9.1" provider-name="Michaël Arnauts">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="script.module.dateutil" version="2.6.0"/>
<import addon="script.module.pysocks" version="1.6.8" optional="true"/>
<import addon="script.module.requests" version="2.22.0"/>
<import addon="script.module.routing" version="0.2.0"/>
<import addon="script.module.inputstreamhelper" version="0.3.4"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Access the VTM GO library</summary>
<description lang="en_GB">This add-on gives access to all live tv channels and all video-on-demand content available on the VTM GO platform.</description>
<disclaimer lang="en_GB">This add-on is not officially commissioned/supported by DPG Media and is provided 'as is' without any warranty of any kind. The VTM GO name, VTM GO logo and channel icons are property of DPG Media and are used according to the fair use policy.</disclaimer>
<platform>all</platform>
<license>GPL-3.0</license>
<news>v0.9.1 (16/10/2019)
- Provide richer metadata in the listings
- Implement recommendations
- Integrate with "My List"
- Higher resolution channel logo's
- Bugfixes and other improvements
See CHANGELOG.md for more details.</news>
<source>https://github.com/michaelarnauts/plugin.video.vtm.go</source>
<assets>
<icon>resources/icon.png</icon>
</assets>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>