-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaddon.xml
37 lines (35 loc) · 1.62 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.tvh2kodi"
name="TVheadend Setup"
version="3.0.0"
provider-name="edit4ever">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.dateutil" version="2.8.1"/>
<import addon="script.module.xbmcswift2" version="19.0.5"/>
<import addon="script.module.requests" version="2.22.0" />
</requires>
<extension point="xbmc.python.pluginsource" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.addon.metadata">
<summary>Kodi interface for TVheadend setup (Tvh2Kodi)</summary>
<description>Tvh2Kodi gives access to the basic TVheadend settings directly from the Kodi interface. This can be used in place of the TVheadend web interface to get your TVheadend backend server configured and running. It is also provides an easy way to scan for new services and channels and to configure your channel EPG sources.
* minimum version of Tvheadend is 4.2
</description>
<disclaimer>Copyright (C) 2017 edit4ever - edit4ever@gmail.com</disclaimer>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE. Version 3, June 2007</license>
<assets>
<icon>icon.png</icon>
<fanart></fanart>
<screenshot>resources/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshot-03.jpg</screenshot>
</assets>
<news>
3.0 - Convert to Python 3
2.1 - add support for mapping selected services to channels
</news>
</extension>
</addon>