-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaddon.xml
36 lines (36 loc) · 1.88 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
36
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.dw" name="Deutsche Welle" version="1.0.0" provider-name="fraser">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="script.module.routing" version="0.2.0"/>
<import addon="script.module.beautifulsoup4" version="4.3.2"/>
<import addon="script.module.requests" version="2.12.4"/>
<import addon="script.module.cache" version="1.0.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Search and play free content from the Deutsche Welle website.</summary>
<description lang="en_GB">Deutsche Welle is Germany’s international broadcaster.
Watch live TV and a range of programmes available via the DW website </description>
<language>en de es ar</language>
<platform>all</platform>
<license>MIT</license>
<forum>https://forum.kodi.tv/showthread.php?tid=345450</forum>
<website>https://www.dw.com/</website>
<email>fraser.chapman@gmail.com</email>
<source>https://github.com/FraserChapman/plugin.video.dw</source>
<news>v1.0.0 (14-7-19) - Initial version</news>
<disclaimer lang="en_GB">Neither this addon nor its author are in anyway affiliated with Deutsche Welle</disclaimer>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/media/ss1.jpg</screenshot>
<screenshot>resources/media/ss2.jpg</screenshot>
<screenshot>resources/media/ss3.jpg</screenshot>
<screenshot>resources/media/ss4.jpg</screenshot>
<screenshot>resources/media/ss5.jpg</screenshot>
</assets>
</extension>
</addon>