-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaddon.xml
38 lines (38 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
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.mlbtv" name="MLB.TV®" version="2024.8.20+matrix.1" provider-name="eracknaphobia, tonywagner">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.pytz" />
<import addon="script.module.beautifulsoup4" />
<import addon="script.module.requests" />
<import addon="inputstream.adaptive"/>
<import addon="script.module.kodi-six" />
<import addon="script.module.dateutil" />
</requires>
<extension point="xbmc.python.pluginsource" library="main.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 live and archived games
</summary>
<description lang="en_GB">Watch every out-of-market regular season game in the office or on the go. The #1 LIVE
Streaming Sports Service
</description>
<disclaimer lang="en_GB">Requires an MLB.tv account</disclaimer>
<news>
- Fix for double headers
</news>
<language>en</language>
<platform>all</platform>
<license>GPL-2.0-or-later</license>
<forum>https://forum.kodi.tv/showthread.php?tid=262745</forum>
<website>https://www.mlb.com/live-stream-games</website>
<source>https://github.com/eracknaphobia/plugin.video.mlbtv</source>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
</assets>
</extension>
</addon>