-
Notifications
You must be signed in to change notification settings - Fork 34
/
addon.xml
30 lines (30 loc) · 1.46 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
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
<addon id="service.library.data.provider" name="Library Data Provider" provider-name="BigNoid" version="0.3.2">
<requires>
<import addon="xbmc.json" version="7.9.0"/>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.simplejson" version="3.3.0"/>
<import addon="script.module.routing" version="0.1.0"/>
</requires>
<extension point="xbmc.python.pluginsource" library="plugin.py">
<provides>video</provides>
</extension>
<extension library="service.py" point="xbmc.service" start="login" />
<extension point="xbmc.addon.metadata">
<summary lang="en">Browse movies and episodes in a variety of sorted playlists.</summary>
<description lang="en">Plugin for skins to provide library data throughout the skin. It can also be used as standalone plugin to browse the playlists in the video library.</description>
<disclaimer lang="en" />
<platform>all</platform>
<language />
<license>GNU GENERAL PUBLIC LICENSE Version 2, June 1991</license>
<forum>http://forum.kodi.tv/showthread.php?tid=210063</forum>
<website>https://github.com/BigNoid/service.library.data.provider</website>
<email>big.noid@kodi.tv</email>
<source>https://github.com/BigNoid/service.library.data.provider</source>
<news>Added Polish and Hebrew translations, thx Etharr and Eng2Heb</news>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>