-
Notifications
You must be signed in to change notification settings - Fork 6
/
addon.xml
executable file
·18 lines (18 loc) · 1020 Bytes
/
addon.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<addon id="service.smartish.widgets" name="Smart(ish) Widgets" provider-name="Unfledged" version="0.0.1">
<requires>
<import addon="xbmc.addon" version="12.0.0"/>
<import addon="xbmc.json" version="6.0.0"/>
<import addon="xbmc.python" version="2.1.0"/>
<import addon="script.module.simplejson" version="2.0.10"/>
</requires>
<extension point="xbmc.python.pluginsource" library="default.py" />
<extension library="service.py" point="xbmc.service" start="login" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Provides personalised widgets based on your viewing habits.</summary>
<description lang="en">By keeping track of what media you play and when, the script enables skins to provide personalised widgets on what media you might want to play now.</description>
<disclaimer lang="en">This plugin is not a standalone plugin, your skin must support it.</disclaimer>
<platform>all</platform>
<language />
</extension>
</addon>