-
Notifications
You must be signed in to change notification settings - Fork 59
/
addon.xml
28 lines (28 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.hello.world" name="Hello World" version="1.0.2" provider-name="zag">
<requires>
<import addon="xbmc.python" version="2.14.0"/>
</requires>
<extension point="xbmc.python.script" library="addon.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en">Popup Hello World</summary>
<description lang="en">Example Script to show Hello World</description>
<license>GNU General Public License, v2</license>
<language></language>
<forum>http://forum.kodi.tv/showthread.php?tid=209948</forum>
<source>https://github.com/zag2me/script.hello.world</source>
<website>Kodi.tv</website>
<email>[email protected]</email>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshot-03.jpg</screenshot>
</assets>
<news>Updated the addon to use new addon.xml metadata</news>
</extension>
</addon>