Skip to content

Commit 8333a8f

Browse files
committed
Prepare for v0.5.9 release (#505)
1 parent 011b946 commit 8333a8f

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,10 @@ build: clean
8080

8181
multizip: clean
8282
@-$(foreach abi,$(KODI_PYTHON_ABIS), \
83-
echo -e "cd /addon/requires/import[@addon='xbmc.python']/@version\nset $(abi)\nsave\nbye" | xmllint --shell addon.xml; \
83+
echo "cd /addon/requires/import[@addon='xbmc.python']/@version\nset $(abi)\nsave\nbye" | xmllint --shell addon.xml; \
8484
matrix=$(findstring $(abi), $(word 1,$(KODI_PYTHON_ABIS))); \
8585
if [ $$matrix ]; then version=$(version)+matrix.1; else version=$(version); fi; \
86-
echo -e "cd /addon/@version\nset $$version\nsave\nbye" | xmllint --shell addon.xml; \
86+
echo "cd /addon/@version\nset $$version\nsave\nbye" | xmllint --shell addon.xml; \
8787
make zip; \
8888
)
8989

README.md

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

9393
## Releases
94+
### v0.5.9 (2022-03-22)
95+
- Update Croatian translation (@dsardelic, @muzena)
96+
- Replace deprecated LooseVersion (@mediaminister, @MarkusVolk)
97+
- Fix http_get decode error (@archtur)
98+
- Option to install Widevine from specified source (@horstle)
99+
94100
### v0.5.8 (2021-09-09)
95101
- Simplify Widevine CDM installation on ARM hardware (@horstle, @mediaminister)
96102
- Update Chrome OS ARM hardware id's (@mediaminister)

addon.xml

Lines changed: 7 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.5.8" provider-name="emilsvennesson, dagwieers, mediaminister, horstle">
2+
<addon id="script.module.inputstreamhelper" name="InputStream Helper" version="0.5.9" provider-name="emilsvennesson, dagwieers, mediaminister, horstle">
33
<requires>
44
<!--py3 compliant-->
55
<import addon="xbmc.python" version="2.25.0"/>
@@ -25,6 +25,12 @@
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.5.9 (2022-03-22)
29+
- Update Croatian translation
30+
- Replace deprecated LooseVersion
31+
- Fix http_get decode error
32+
- Option to install Widevine from specified source
33+
2834
v0.5.8 (2021-09-09)
2935
- Simplify Widevine CDM installation on ARM hardware
3036
- Update Chrome OS ARM hardware id's

0 commit comments

Comments
 (0)