forked from pigskin/kodi-gamepass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddon.xml
44 lines (44 loc) · 2.16 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
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- Though the id says this is a plugin, it's actually a script (see extension
point). The addon started as a plugin, but became a script when it was
converted to a skinned addon. It is left unchanged so that users aren't
marooned on an old version. -->
<addon id="plugin.video.nfl.gamepass"
name="NFL Game Pass"
version="2018.09.08"
provider-name="Alexqw,divingmule,BaumSchorle,eriksoderblom,kaileu,emilsvennesson">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.m3u8" version="0.2.10"/>
<import addon="script.module.requests" version="2.7.0"/>
<import addon="xbmc.gui" version="5.12.0"/>
</requires>
<extension point="xbmc.python.script" library="default.py">
<provides>video</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">NFL Game Pass</summary>
<description lang="en_GB">Watch NFL Game Pass streams.</description>
<platform>all</platform>
<language>en</language>
<license>GNU GENERAL PUBLIC LICENSE. Version 2, June 1991</license>
<source>https://github.com/aqw/xbmc-gamepass</source>
<forum></forum>
<disclaimer lang="en_GB">This addon requires you to have a subscription to NFL Game Pass.[CR]Please note that these subscriptions are region restricted by the NFL.[CR]This addon is completely unofficial and is /not/ endorsed by the NFL in any way.</disclaimer>
<news>2018.09.08 -- A Game of Inches Edition
+ Import the latest pigskin.py. Relevant changes are:
-- support the new Game Pass (Gigya) authentication (thanks to 41john)
-- overhaul logging system (aqw)
-- simplify stream acquisition APIs (aqw)
-- python 3 fixes (aqw)
-- loads of code cleanup, refactoring, documentation, and unit tests (aqw)
+ Fix bug where episode list would re-append all show episodes (kaileu)
+ Use ``kodilogging.py`` to better integrate with Kodi's logging (aqw)
+ Assorted code cleanup (aqw)
</news>
<assets>
<icon>resources/art/icon.png</icon>
<fanart>resources/art/fanart.jpg</fanart>
</assets>
</extension>
</addon>