Skip to content

Commit 70dbbcf

Browse files
0.1.0 release
1 parent 0f279c2 commit 70dbbcf

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# script.module.inputstreamhelper #
22

3-
A simple Kodi module that makes life easier for add-on developers relying on InputStream based-addons and DRM playback.
3+
A simple Kodi module that makes life easier for add-on developers relying on InputStream based add-ons and DRM playback.
44

55
## Features ##
66
* Displays informative dialogs if required InputStream components are unavailable

addon.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</requires>
1010
<extension library="lib" point="xbmc.python.module"/>
1111
<extension point="xbmc.addon.metadata">
12-
<description lang="en_GB">A Kodi module that makes life easier for add-on developers who are relying on InputStream based add-ons and DRM playback.</description>
12+
<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>
1313
<platform>all</platform>
1414
<license>MIT License</license>
1515
<source>https://github.com/emilsvennesson/script.module.inputstreamhelper</source>

changelog.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2017.09.13 v0.1.0
2+
+ Initial release

lib/inputstreamhelper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def _supports_widevine(self):
191191
dialog.ok(self._language(30004), self._language(30010).format(min_version))
192192
return False
193193
if 'WindowsApps' in xbmc.translatePath('special://xbmcbin/'): # uwp is not supported
194-
self.log('Unsupported UWP Kodi version detected.')
194+
self._log('Unsupported UWP Kodi version detected.')
195195
dialog.ok(self._language(30004), self._language(30012))
196196
return False
197197

@@ -236,7 +236,7 @@ def _supports_hls(self):
236236
if LooseVersion(self._inputstream_version()) >= LooseVersion(config.HLS_MINIMUM_IA_VERSION):
237237
return True
238238
else:
239-
self._log('HLS is not supported on {0} version {1}'.format(self._inputstream_addon), self._inputstream_version())
239+
self._log('HLS is not supported on {0} version {1}'.format(self._inputstream_addon, self._inputstream_version()))
240240
return False
241241

242242
def _check_for_drm(self):

0 commit comments

Comments
 (0)