Skip to content

Commit 096c09d

Browse files
0.3.4 release
1 parent 92a81aa commit 096c09d

File tree

2 files changed

+36
-24
lines changed

2 files changed

+36
-24
lines changed

addon.xml

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,32 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon id="script.module.inputstreamhelper"
3-
version="0.3.3"
3+
version="0.3.4"
44
name="InputStream Helper"
55
provider-name="emilsvennesson">
6-
<requires>
7-
<import addon="xbmc.python" version="2.25.0"/>
8-
<import addon="script.module.kodi-six" version="0.0.2"/>
9-
<import addon="script.module.requests" version="2.9.1"/>
10-
</requires>
11-
<extension library="lib" point="xbmc.python.module"/>
12-
<extension point="xbmc.addon.metadata">
13-
<description lang="en_GB">A simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback.</description>
14-
<description lang="el_GR">Μία απλή μονάδα για το Kodi η οποία διευκολύνει την ζωή των προγραμματιστών οι οποίοι εξαρτώνται από τα πρόσθετσ InputStream και αναπαραγωγή τύπου DRM.</description>
15-
<news>2018.02.21 v0.3.3
16-
+ Load loop if it's a kernel module (thanks to mkreisl)
17-
+ Fix legacy Widevine CDM update detection
18-
+ inputstream_addon is now a public variable
19-
+ Notify user that ARM64 needs 32-bit userspace
20-
+ Improve logging
21-
+ Cosmetics
6+
<requires>
7+
<import addon="xbmc.python" version="2.25.0"/>
8+
<import addon="script.module.kodi-six" version="0.0.2"/>
9+
<import addon="script.module.requests" version="2.9.1"/>
10+
</requires>
11+
<extension library="lib" point="xbmc.python.module"/>
12+
<extension point="xbmc.addon.metadata">
13+
<description lang="en_GB">A simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback.</description>
14+
<description lang="el_GR">Μία απλή μονάδα για το Kodi η οποία διευκολύνει την ζωή των προγραμματιστών οι οποίοι εξαρτώνται από τα πρόσθετσ InputStream και αναπαραγωγή τύπου DRM.</description>
15+
<news>2019.03.23 v0.3.4
16+
+ python2_3 compability (mediaminister, Rechi)
17+
+ Option to disable inputstreamhelper in settings.xml
18+
+ calculate disk space on the tmp folder (dawez)
19+
+ Support for Unicode paths in Windows (WallyCZ)
20+
+ Italian translation (pinoelefante)
21+
+ Dutch translation (dnicolaas)
22+
+ Greek translation (Twilight0)
23+
+ Russian translation (vlmaksime)
2224
</news>
23-
<platform>all</platform>
24-
<license>MIT License</license>
25-
<source>https://github.com/emilsvennesson/script.module.inputstreamhelper</source>
26-
<assets>
27-
<icon>resources/icon.png</icon>
28-
</assets>
29-
</extension>
25+
<platform>all</platform>
26+
<license>MIT License</license>
27+
<source>https://github.com/emilsvennesson/script.module.inputstreamhelper</source>
28+
<assets>
29+
<icon>resources/icon.png</icon>
30+
</assets>
31+
</extension>
3032
</addon>

changelog.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2019.03.23 v0.3.4
2+
+ python2_3 compability (mediaminister, Rechi)
3+
+ Option to disable inputstreamhelper in settings.xml
4+
+ calculate disk space on the tmp folder (dawez)
5+
+ Support for Unicode paths in Windows (WallyCZ)
6+
+ Italian translation (pinoelefante)
7+
+ Dutch translation (dnicolaas)
8+
+ Greek translation (Twilight0)
9+
+ Russian translation (vlmaksime)
10+
111
2018.02.21 v0.3.3
212
+ Load loop if it's a kernel module (thanks to mkreisl)
313
+ Fix legacy Widevine CDM update detection

0 commit comments

Comments
 (0)