Skip to content

Commit c414769

Browse files
0.3.3 release
1 parent 298a88a commit c414769

File tree

3 files changed

+16
-5
lines changed

3 files changed

+16
-5
lines changed

addon.xml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<addon id="script.module.inputstreamhelper"
3-
version="0.3.2"
3+
version="0.3.3"
44
name="InputStream Helper"
55
provider-name="emilsvennesson">
66
<requires>
@@ -10,9 +10,13 @@
1010
<extension library="lib" point="xbmc.python.module"/>
1111
<extension point="xbmc.addon.metadata">
1212
<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>
13-
<news>2018.01.30 v0.3.2
14-
+ Fix OSMC arm architecture detection
15-
+ Fix ldd permissions error
13+
<news>2018.02.21 v0.3.3
14+
+ Load loop if it's a kernel module (thanks to mkreisl)
15+
+ Fix legacy Widevine CDM update detection
16+
+ inputstream_addon is now a public variable
17+
+ Notify user that ARM64 needs 32-bit userspace
18+
+ Improve logging
19+
+ Cosmetics
1620
</news>
1721
<platform>all</platform>
1822
<license>MIT License</license>

changelog.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2018.02.21 v0.3.3
2+
+ Load loop if it's a kernel module (thanks to mkreisl)
3+
+ Fix legacy Widevine CDM update detection
4+
+ inputstream_addon is now a public variable
5+
+ Notify user that ARM64 needs 32-bit userspace
6+
+ Improve logging
7+
+ Cosmetics
8+
19
2018.01.30 v0.3.2
210
+ Fix OSMC arm architecture detection
311
+ Fix ldd permissions error

lib/inputstreamhelper.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,6 @@ def check_inputstream(self):
755755
else:
756756
return False
757757
self._log('{0} {1} is installed and enabled.'.format(self.inputstream_addon, self._inputstream_version()))
758-
dialog = xbmcgui.Dialog()
759758
if self.protocol == 'hls' and not self._supports_hls():
760759
dialog.ok(LANGUAGE(30004),
761760
LANGUAGE(30017).format(self.inputstream_addon, config.HLS_MINIMUM_IA_VERSION))

0 commit comments

Comments
 (0)