File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
# script.module.inputstreamhelper #
2
2
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.
4
4
5
5
## Features ##
6
6
* Displays informative dialogs if required InputStream components are unavailable
Original file line number Diff line number Diff line change 9
9
</requires >
10
10
<extension library =" lib" point =" xbmc.python.module" />
11
11
<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 >
13
13
<platform >all</platform >
14
14
<license >MIT License</license >
15
15
<source >https://github.com/emilsvennesson/script.module.inputstreamhelper</source >
Original file line number Diff line number Diff line change
1
+ 2017.09.13 v0.1.0
2
+ + Initial release
Original file line number Diff line number Diff line change @@ -191,7 +191,7 @@ def _supports_widevine(self):
191
191
dialog .ok (self ._language (30004 ), self ._language (30010 ).format (min_version ))
192
192
return False
193
193
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.' )
195
195
dialog .ok (self ._language (30004 ), self ._language (30012 ))
196
196
return False
197
197
@@ -236,7 +236,7 @@ def _supports_hls(self):
236
236
if LooseVersion (self ._inputstream_version ()) >= LooseVersion (config .HLS_MINIMUM_IA_VERSION ):
237
237
return True
238
238
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 () ))
240
240
return False
241
241
242
242
def _check_for_drm (self ):
You can’t perform that action at this time.
0 commit comments