-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathaddon.xml
31 lines (31 loc) · 1.33 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.service.easyepg-lite" name="easyepg lite" version="1.0.0" provider-name="Jan-Luca Neumann">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests"/>
<import addon="script.module.bottle"/>
<import addon="script.module.xmltodict"/>
</requires>
<extension point="xbmc.service" library="addon.py" start="startup" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">easyepg lite</summary>
<description lang="en_GB">Service addon providing EPG data by Gracenote</description>
<description lang="de_DE">Service-Addon zur Bereitstellung der EPG-Daten von Gracenote</description>
<platform>all</platform>
<license>GPL-3.0-or-later</license>
<website>https://gracenote.com</website>
<email>[email protected]</email>
<source>http://github.com/sunsettrack4/script.service.easyepg-lite</source>
<news>v1.0.0 (22/10/2022)
* Initial release
</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>screenshot-1.jpg</screenshot>
<screenshot>screenshot-2.jpg</screenshot>
<screenshot>screenshot-3.jpg</screenshot>
<screenshot>screenshot-4.jpg</screenshot>
</assets>
</extension>
</addon>