-
Notifications
You must be signed in to change notification settings - Fork 43
/
addon.xml
33 lines (33 loc) · 1.63 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.nba"
name="NBA League Pass"
version="1.0.1"
provider-name="maxgalbu, ptsampoukas, robla">
<requires>
<import addon="xbmc.python" version="2.20.0"/>
<import addon="script.common.plugin.cache" version="0.9.1"/>
<import addon="script.module.pytz" version="2014.2"/>
<import addon="script.module.six" version="1.9.0"/>
<import addon="script.module.dateutil" version="2.4.0"/>
<import addon="script.module.pil"/> <!-- TODO? specify version -->
<import addon="script.module.inputstreamhelper" version="0.3.3"/>
</requires>
<extension point="xbmc.python.pluginsource" library="main.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="src/service.py" start="login"/>
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary>Watch NBA League Pass games.</summary>
<description>Features: Live, archive and condensed games for the current NBA season, highlights, top plays and other videos, previous seasons starting from 2012/2013. Fanart and thumbnails. Requires a subscription to the NBA International League Pass.</description>
<license>GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007</license>
<forum>http://forum.kodi.tv/showthread.php?tid=124716</forum>
<website>https://github.com/maxgalbu/xbmc.plugin.video.nba</website>
<email></email>
<source>https://github.com/maxgalbu/xbmc.plugin.video.nba</source>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
</extension>
</addon>