-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddon.xml
More file actions
164 lines (126 loc) · 3.82 KB
/
addon.xml
File metadata and controls
164 lines (126 loc) · 3.82 KB
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.cmore" name="C More" version="1.1.7" 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">C More</summary>
<description lang="da_DK">Se indhold fra C More.</description>
<description lang="en_GB">Watch content from C More.</description>
<description lang="nb_NO">Se innhold fra C More.</description>
<description lang="sv_SE">Se innehåll från C More.</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.cmore</source>
<news>v1.1.7 (2023-03-12)
- Bug fixes.
v1.1.6 (2022-09-11)
- Revised starttime information for events.
- Fixed start for live events.
v1.1.5 (2022-09-10)
- Fixed timestamps.
- Fixed kids section.
v1.1.4 (2022-08-27)
- Fixed subscription content.
- Added date to upcoming events.
v1.1.3 (2022-08-08)
- Code refactoring.
v1.1.2 (2022-08-06)
- Added Live TV.
- Added catchup function for M3U playlist.
- Other fixes.
v1.1.1 (2022-07-10)
- Fixed memory leak.
v1.1.0 (2022-07-09)
- Bug fixes.
v1.0.9 (2022-07-08)
- Hotfix.
v1.0.8 (2022-07-08)
- Bug fixes.
v1.0.7 (2022-06-16)
- Fixed live tv play from beginning error.
v1.0.6 (2022-06-12)
- Fixes.
v1.0.5 (2022-06-11)
- Fixed encoding for playlist generator.
v1.0.4 (2022-06-11)
- Added M3U playlist generator.
- Code refactoring.
v1.0.3 (2022-06-10)
- Hotfix.
v1.0.2 (2022-06-10)
- Added days for live channels.
- Code refactoring.
v1.0.1 (2022-06-09)
- Added new categories for sports and kids section.
v1.0 (2022-06-08)
- Production release.
v0.9 (2022-06-06)
- Fixed token refresh.
v0.8 (2022-06-04)
- Fixes.
v0.7 (2022-06-04)
- Fixed login.
v0.6 (2022-05-27)
- Added xbmc.Player callbacks.
v0.5 (2022-05-21)
- Bug fixes.
v0.4 (2022-05-20)
- Added IA shortcut to settings.
v0.3 (2022-05-20)
- Added section upcoming sports.
v0.2 (2022-05-20)
- Code refactoring.
v0.1.3 (2022-05-20)
- Fixed childlock.
v0.1.2 (2022-05-20)
- Fixes.
v0.1.1 (2022-05-19)
- Added childlock.
v0.1 (2022-05-18)
- Added kids section.
v0.0.9 (2022-05-18)
- Code refactoring.
- Added sport section.
v0.0.8 (2022-05-16)
- Added profiles.
v0.0.7 (2022-05-16)
- Bug fixes.
v0.0.6 (2022-05-16)
- Added search function.
v0.0.5 (2022-05-15)
- Added VOD Series.
v0.0.4 (2022-05-14)
- Added VOD.
v0.0.3 (2022-05-13)
- Fixes.
v0.0.2 (2022-05-13)
- Code refactoring.
- Added extended information to context menu.
- Added catchup dot.
v0.0.1 (2022-05-12)
- 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>