Skip to content

Commit 4a5084d

Browse files
committed
initial release
1 parent 02651b4 commit 4a5084d

22 files changed

+1493
-0
lines changed

addon.xml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<addon id="script.module.tvh2kodi"
3+
name="Tvheadend Setup for Kodi"
4+
version="1.0"
5+
provider-name="edit4ever">
6+
<requires>
7+
<import addon="xbmc.python" version="2.6.0"/>
8+
<import addon="script.module.dateutil" version="2.4.2"/>
9+
<import addon="script.module.xbmcswift2" version="2.4.0"/>
10+
<import addon="script.module.requests" version="2.9.1" />
11+
</requires>
12+
<extension point="xbmc.python.pluginsource" library="default.py">
13+
<provides>executable</provides>
14+
</extension>
15+
<extension point="xbmc.addon.metadata">
16+
<summary>Kodi interface for Tvheadend setup (Tvh2Kodi)</summary>
17+
<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.</description>
18+
<disclaimer>Copyright (C) 2017 edit4ever - edit4ever@gmail.com</disclaimer>
19+
<platform>all</platform>
20+
<assets>
21+
<icon>icon.png</icon>
22+
<fanart></fanart>
23+
<screenshot>resources/screenshot-01.jpg</screenshot>
24+
<screenshot>resources/screenshot-02.jpg</screenshot>
25+
<screenshot>resources/screenshot-03.jpg</screenshot>
26+
</assets>
27+
<news>v1.0</news>
28+
<news> - Initial Release</news>
29+
</extension>
30+
</addon>

default.py

Lines changed: 1448 additions & 0 deletions
Large diffs are not rendered by default.

icon.png

31.6 KB
Loading

resources/img/adapter.png

19.9 KB
Loading

resources/img/antenna.png

30.7 KB
Loading

resources/img/dvr.png

17.7 KB
Loading

resources/img/folder.png

17.6 KB
Loading

resources/img/frequency.png

22.4 KB
Loading

resources/img/list.png

18.3 KB
Loading

resources/img/minus.png

24.6 KB
Loading

resources/img/numlist.png

17.1 KB
Loading

resources/img/plus.png

25.3 KB
Loading

resources/img/server.png

18.6 KB
Loading

resources/img/settings.png

26.1 KB
Loading

resources/img/signal.png

17 KB
Loading

resources/img/tv.png

24.3 KB
Loading

resources/img/wand.png

23.7 KB
Loading
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<strings>
3+
<string id="32000">Tvheadend Backend</string>
4+
<string id="32010">IP address</string>
5+
<string id="32020">Port</string>
6+
<string id="32030">DVR Recording Path</string>
7+
</strings>

resources/screenshot-01.jpg

141 KB
Loading

resources/screenshot-02.jpg

103 KB
Loading

resources/screenshot-03.jpg

108 KB
Loading

resources/settings.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<settings>
3+
<category label="32000">
4+
<setting label="32010" type="ipaddress" id="tvhurl" default="127.0.0.1"/>
5+
<setting label="32020" type="number" id="tvhport" default="9981"/>
6+
<setting label="32030" type="folder" id="dvrstorage" default="" option="writeable"/>
7+
</category>
8+
</settings>

0 commit comments

Comments
 (0)