-
Notifications
You must be signed in to change notification settings - Fork 1
/
addon.xml
132 lines (104 loc) · 3.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.teliaplay" name="Telia Play" version="1.1.9" provider-name="mariusz89b">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.inputstreamhelper" version="0.2.4"/>
<import addon="script.module.requests" version="2.22.0"/>
<import addon="script.module.six" version="1.14.0"/>
<import addon="script.module.iso8601" version="0.1.12"/>
<import addon="script.module.pytz" version="2019.3.0"/>
<import addon="script.module.future" version="0.17.1"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="player.py"/>
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Telia Play</summary>
<description lang="da_DK">Se indhold fra Telia Play.</description>
<description lang="en_GB">Watch content from Telia Play.</description>
<description lang="nb_NO">Se innhold fra Telia Play.</description>
<description lang="sv_SE">Se innehåll från Telia Play.</description>
<disclaimer lang="en_GB">This add-on is unoffical and is not endorsed or supported by any of the services provided in any way. Any trademarks used belong to their owning companies and organisations.</disclaimer>
<language>en sv</language>
<platform>all</platform>
<license>GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 and MIT LICENSE.</license>
<source>https://github.com/Mariusz89B/plugin.video.teliaplay</source>
<news>v1.1.9 (2023-03-12)
- Bug fixes.
v1.1.8 (2022-09-11)
- Revised starttime information for events.
- Fixed start for live events.
v1.1.7 (2022-09-10)
- Fixed timestamps.
v1.1.6 (2022-08-27)
- Fixed subscription content.
- Added date to upcoming events.
v1.1.5 (2022-08-08)
- Code refactoring.
v1.1.4 (2022-08-06)
- Fixes.
v1.1.3 (2022-08-05)
- Added catchup function for M3U playlist.
v1.1.2 (2022-08-04)
- Added Live TV.
- Other fixes.
v1.1.1 (2022-07-30)
- Fixed series categories.
- Performance optimizations.
- Other fixes.
v1.1.0 (2022-07-10)
- Fixes.
v1.0.9 (2022-07-10)
- Fixed memory leak.
v1.0.8 (2022-07-09)
- Bug fixes.
v1.0.7 (2022-07-08)
- Hotfix.
v1.0.6 (2022-07-08)
- Bug fixes.
v1.0.5 (2022-07-02)
- Login fix.
v1.0.4 (2022-06-13)
- Added Playservices in series category.
- Other fixes.
v1.0.3 (2022-06-13)
- Removed empty categories.
v1.0.2 (2022-06-12)
- Fixes.
v1.0.1 (2022-06-11)
- Fixed encoding for playlist generator.
v1.0 (2022-06-11)
- Added M3U playlist generator.
- Code refactoring.
v0.5 (2022-06-10)
- Hotfix.
v0.4 (2022-06-09)
- Code refactoring.
v0.3 (2022-06-08)
- Hotfix.
v0.2 (2022-06-06)
- Fixed missing programs.
v0.1 (2022-06-06)
- Fixed token refresh.
- Code refactoring.
v0.0.4 (2022-06-04)
- Fixes.
v0.0.3 (2022-06-04)
- Fixed login, updated URL.
v0.0.2 (2022-06-02)
- Login fixes.
v0.0.1 (2022-06-01)
- Initial version.
</news>
<assets>
<icon>icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<banner>resources/banner.jpg</banner>
<clearlogo>resources/clearlogo.png</clearlogo>
<screenshot>resources/screenshots/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshots/screenshot-03.jpg</screenshot>
</assets>
</extension>
</addon>