Skip to content

Commit dd6b455

Browse files
Prepare for v0.8.1 release (#608)
1 parent 45127e0 commit dd6b455

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ Please report any issues or bug reports on the [GitHub Issues](https://github.co
9090
This module is licensed under the **The MIT License**. Please see the [LICENSE.txt](LICENSE.txt) file for details.
9191

9292
## Releases
93+
### v0.8.1 (2025-09-22)
94+
- Fix Widevine CDM installation on ARM hardware (@mediaminister)
95+
9396
### v0.8.0 (2025-09-19)
9497
- Fix Widevine CDM installation on Windows, Linux and Macintosh (@mediaminister)
9598
- Add support for LG webOS (@Uukrull)

addon.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.module.inputstreamhelper" name="InputStream Helper" version="0.8.0" provider-name="emilsvennesson, dagwieers, mediaminister, horstle">
2+
<addon id="script.module.inputstreamhelper" name="InputStream Helper" version="0.8.1" provider-name="emilsvennesson, dagwieers, mediaminister, horstle">
33
<requires>
44
<!--py3 compliant-->
55
<import addon="xbmc.python" version="3.0.0"/>
@@ -25,6 +25,9 @@
2525
<description lang="hr_HR">Jednostavan Kodi modul koji olakšava razvijanje dodataka koji se temelje na InputStream dodatku i reprodukciji DRM zaštićenog sadržaja.</description>
2626
<description lang="ru_RU">Простой модуль для Kodi, который облегчает жизнь разработчикам дополнений, с использованием InputStream дополнений и воспроизведения DRM контента.</description>
2727
<news>
28+
v0.8.1 (2025-09-22)
29+
- Fix Widevine CDM installation on ARM hardware
30+
2831
v0.8.0 (2025-09-19)
2932
- Fix Widevine CDM installation on Windows, Linux and Macintosh
3033
- Add support for LG webOS

tests/checkchromeos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def get_arm_devices():
4343
devices = get_devices()
4444
arm_devices = []
4545
for device in devices:
46-
if device.get('User ABI').lower() in('arm', 'aarch64'):
46+
if device.get('User ABI').lower() in ('arm', 'aarch64'):
4747
arm_devices.append(device)
4848
return arm_devices
4949

0 commit comments

Comments
 (0)