forked from asciidisco/plugin.video.netflix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addon.xml
98 lines (83 loc) · 3.47 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.netflix" name="Netflix" version="0.13.23" provider-name="libdev + jojo + asciidisco">
<requires>
<import addon="xbmc.python" version="2.25.0"/>
<import addon="script.module.requests" version="2.12.4"/>
<import addon="script.module.pycryptodome" version="3.4.3"/>
<import addon="script.module.inputstreamhelper" version="0.3.3"/>
<import addon="script.module.addon.signals" version="0.0.3"/>
</requires>
<extension point="xbmc.python.pluginsource" library="addon.py">
<provides>video</provides>
</extension>
<extension point="xbmc.service" library="service.py" start="login" />
<extension point="xbmc.addon.metadata">
<reuselanguageinvoker>true</reuselanguageinvoker>
<summary lang="de_DE">Netflix</summary>
<description lang="de_DE">Addon für Netflix VOD Services</description>
<disclaimer lang="de_DE">Möglicherweise sind einge Teile dieses Addons in Ihrem Land illegal, Sie sollten dies unbedingt vor der Installation überprüfen.</disclaimer>
<summary lang="en_GB">Netflix</summary>
<description lang="en_GB">Netflix VOD Services Addon</description>
<disclaimer lang="en_GB">Some parts of this addon may not be legal in your country of residence - please check with your local laws before installing.</disclaimer>
<assets>
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
<screenshot>resources/screenshot-01.jpg</screenshot>
<screenshot>resources/screenshot-02.jpg</screenshot>
<screenshot>resources/screenshot-03.jpg</screenshot>
</assets>
<language>en de es he hr it nl pl pt sk sv</language>
<platform>all</platform>
<license>MIT</license>
<website>https://www.netflix.com</website>
<email>public at asciidisco dot com</email>
<forum>https://www.kodinerds.net/index.php/Thread/55612-PreRelease-Plugin-Netflix-Inputstream/</forum>
<source>https://github.com/asciidisco/plugin.video.netflix</source>
<news>
v0.13.23 (2019-06-19)
- Fix api_data change (credits @Jaker MX)
v0.13.22 (2019-03-08)
- Fix menu listing (credits @xLAva)
v0.13.21 (2018-12-03)
- More codec levels for FHD / UHD
v0.13.20 (2018-11-29)
- MSLv2 for manifest retrieval
v0.13.19 (2018-11-24)
- Fix VTT / VP9 issues
v0.13.18 (2018-11-17)
- Write correct codec into VP9 MPEG DAS profiles
v0.13.17 (2018-11-16)
- Add VP9 profiles to avoid PRK exception while downloading manifest
- Android ESN generation enhanced
v0.13.16 (2018-11-13)
- WebVTT subtitles
v0.13.13 (2018-09-13)
- Fix disabling of intro skipping not working
v0.13.12 (2018-08-21)
- Fix issues with timeline markers
v0.13.11 (2018-08-20)
- Fix login issues
- Fix fanarts for non-netflix originals
- Add Korean translation
- Update Italian translation
- Add query parameter widget_display to suppress setting custom view modes when called from a widget
- Skip intro and recap
- Remember audio settings across all episodes of a show
v0.13.9 (2018-06-14)
- fix login issues after typo fix in netflix login page
v0.13.8 (2018-06-07)
- fix proxy communication
- fix folder definition for image resources
v0.13.7 (2018-05-28)
- rework of login info parsing
v0.13.0 (2018-04-26)
- Android support WIDEVINE Cryptosession for MSL
v0.12.9 (2018-04-16)
- View for exported
- Support for inputstreamhelper
- Grab metadate for episodes on export
- Auto export new episodes for exported shows
- Auto update watched status inside kodi library
</news>
</extension>
</addon>