forked from tonywagner/plugin.video.mlbserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
32 lines (32 loc) · 1.44 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.mlbserver" name="MLB®" version="2024.7.27+omega.1" provider-name="tonywagner">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.requests" />
<import addon="inputstream.adaptive"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" />
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<summary lang="en_GB">Watch highlights and games</summary>
<description lang="en_GB">Watch recaps and highlights. Watch free games if logged in with an account, and all non-blackout games with a valid subscription.</description>
<disclaimer lang="en_GB">Blackout restrictions apply.</disclaimer>
<news>
- pre-alpha release: MLB games work
- MLB M3U/XML works
</news>
<language>en</language>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<forum></forum>
<website>https://www.mlb.com/live-stream-games</website>
<source>https://github.com/tonywagner/plugin.video.mlbserver</source>
<assets>
<icon>resources/media/icon.png</icon>
<fanart>resources/media/fanart.jpg</fanart>
</assets>
</extension>
</addon>