forked from add-ons/service.iptv.manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
53 lines (53 loc) · 3.32 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
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="service.iptv.manager" name="IPTV Manager" version="0.2.4" provider-name="peno64, Michaël Arnauts">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="script.module.dateutil" version="2.6.0"/>
<import addon="pvr.iptvsimple" version="3.8.8"/>
</requires>
<!-- This is needed to get an add-on icon -->
<extension point="xbmc.python.script" library="default.py">
<provides>executable</provides>
</extension>
<extension point="xbmc.service" library="service.py"/>
<extension point="xbmc.python.library" library="default.py"/>
<extension point="kodi.context.item">
<menu id="kodi.core.main">
<item library="context.py">
<label>30600</label>
<visible>String.StartsWith(System.BuildVersion,18) + Window.IsVisible(tvguide) | Window.IsVisible(tvsearch)</visible>
</item>
</menu>
</extension>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Integrate IPTV channels from other add-ons in the Kodi TV and Radio menus</summary>
<summary lang="nl_NL">Integreer IPTV kanalen van andere add-ons in de Kodi TV en Radio menu's</summary>
<summary lang="ru_RU">Интеграция IPTV каналов из других дополнений в Kodi PVR</summary>
<summary lang="hu_HU">Más kiegészítők által szolgáltatott IPTV csatornák integrációja a Kodi PVR felületbe</summary>
<summary lang="el_GR">Ενσωμάτωση καναλιών IPTV από άλλα πρόσθετα στο PVR του Kodi</summary>
<description lang="en_GB">IPTV Manager integrates IPTV channels from other add-ons in the Kodi TV and Radio menus.</description>
<description lang="nl_NL">IPTV Manager integreert IPTV kanalen van andere add-ons in de Kodi TV en Radio menu's.</description>
<description lang="ru_RU">Это дополнение интегрирует IPTV каналы из других дополнений в Kodi PVR.</description>
<description lang="hu_HU">Ez a kiegészítő lehetővé teszi más kiegészítők számára, hogy saját IPTV csatornákat publikáljanak a Kodi PVR felületébe.</description>
<description lang="el_GR">Το πρόσθετο αυτο ενσωματώνει τα κανάλια IPTV από άλλα πρόσθετα στο PVR του Kodi.</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<news>v0.2.3 (2021-02-04)
- Allow to process raw m3u8 or xmltv data.
- Add support for #KODIPROP.
- Support multiple groups for a channel.
- Improvements for Kodi Matrix.
- Update translations.</news>
<source>https://github.com/add-ons/service.iptv.manager</source>
<assets>
<icon>resources/icon.png</icon>
<screenshot>resources/screenshot01.jpg</screenshot>
<screenshot>resources/screenshot02.jpg</screenshot>
<screenshot>resources/screenshot03.jpg</screenshot>
<screenshot>resources/screenshot04.png</screenshot>
<screenshot>resources/screenshot05.png</screenshot>
<screenshot>resources/screenshot06.png</screenshot>
</assets>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>