forked from Geletinousamigo/plugin.video.jiotv
-
Notifications
You must be signed in to change notification settings - Fork 20
/
addon.xml
102 lines (84 loc) · 3.78 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.jiotv" name="JioTV" version="2.3.9" provider-name="tobalan">
<requires>
<import addon="xbmc.python" version="3.0.0" />
<import addon="script.module.codequick" version="1.0.2" />
<import addon="script.module.inputstreamhelper" version="0.5.10" />
<import addon="inputstream.adaptive" minversion="2.6.6" />
<import addon="script.module.m3u8" version="0.5.4" />
<import addon="script.module.requests" version="2.27.1" />
<import addon="repository.tobalan" version="2.0.1" />
<!-- <import addon="script.module.web-pdb" /> -->
</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">
<summary lang="en_GB">Stream Live Indian Channels From JioTV on Kodi</summary>
<description lang="en_GB">Enjoy Live TV experience in Kodi.</description>
<language>en</language>
<platform>all</platform>
<license>MIT</license>
<forum>https://botallen.com/discord</forum>
<website>https://tobalan.github.io</website>
<email>[email protected]</email>
<source>https://github.com/tobalan/plugin.video.jiotv</source>
<news>
[- 2.3.9 -]
[added] Revamped settings.xml and added strings.po
[- 2.3.8 -]
[added] support to play mpd streams
[- 2.3.7 -]
[added] fix for runtime error in channel list
[- 2.3.6 -]
[added] language filter
[- 2.3.5 -]
[added] handle playback exceptions
[added] remove unused code
[added] save mobile no automatically on login
[added] added request dependency for lower version
[added] revert inputstreamhelper dependency version
[- 2.3.4 -]
[added] AAC multi-audio fix (3rd Jun 2023)
[added] Genres selection in Settings with Languages
[added] EPG Source URL editable in Settings
[added] Settings sections rearranged, removed 'Welcome-donate' popup.
[- 2.3.3 -]
[added] updated epg url
[added] set epg cache to false
[added] updset useInputstreamAdaptiveforHls to true
[- 2.3.2 -]
[added] generate playlist is off by default
[- 2.3.1 -]
[added] caching of reponses
[- 2.3.0 -]
[added] more extra channels
[added] inputstream adaptive as a dependency
[- 2.2.0 -]
[fixed] Bugs related to playback
[added] Login with OTP
[- 2.1.0 -]
[added] Kodi Matrix support
[added] Star channels support
[- 2.0.14 -]
[added] Featured Content
[- 2.0.13 -]
[added] Web login
[- 2.0.0 -]
[fixed] All major issues related to playback almost solved
[added] Categorized by Language
[added] Filter channels by specific language in genre. (from settings)
</news>
<disclaimer>This plugin is not officially commissioned/supported by Jio. The trademark "Jio"
is registered by "Reliance Corporate IT Park Limited (RCITPL)"</disclaimer>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/icon.png</fanart>
<screenshot>resources/icon.png</screenshot>
<screenshot>resources/icon.png</screenshot>
<screenshot>resources/icon.png</screenshot>
</assets>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>