Skip to content

Commit

Permalink
Prepare for v0.5.1 release (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
mediaminister authored Oct 21, 2024
1 parent 2c7e387 commit b44a0dc
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ De volgende features worden ondersteund:

## Changelog

## [v0.5.1](https://github.com/add-ons/plugin.video.goplay/tree/v0.5.1) (2024-10-21)

- Fix caching (@mediaminister)
- Add support for external Widevine device (@mediaminister)

## [v0.5.0](https://github.com/add-ons/plugin.video.goplay/tree/v0.5.0) (2024-09-11)

- Update to new GoPlay API (@mediaminister)
11 changes: 8 additions & 3 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.goplay" name="GoPlay" version="0.5.0" provider-name="mediaminister">
<addon id="plugin.video.goplay" name="GoPlay" version="0.5.1" provider-name="mediaminister">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.dateutil" version="2.8.1"/>
Expand All @@ -21,8 +21,13 @@
<disclaimer lang="en_GB">This add-on is not officially commissioned/supported by Play Media and is provided 'as is' without any warranty of any kind. The logos are property of Play Media.</disclaimer>
<platform>all</platform>
<license>GPL-3.0-only</license>
<news>v0.5.0 (2024-09-11)
- Update to new GoPlay API
<news>
v0.5.1 (2024-10-21)
- Fix caching
- Add support for external Widevine device

v0.5.0 (2024-09-11)
- Update to new GoPlay API
</news>
<source>https://github.com/add-ons/plugin.video.goplay</source>
<assets>
Expand Down
2 changes: 1 addition & 1 deletion tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_get_stream(self):
@unittest.skipUnless(kodiutils.get_setting('username') and kodiutils.get_setting('password'), 'Skipping since we have no credentials.')
def test_get_drm_stream(self):
try:
program = self._api.get_program('0534d8f5-31bc-4c23-ad9b-64c65c929d17') # NCIS: Los Angeles
program = self._api.get_program('022bd8fe-793e-4635-85da-4259d44950a3') # CSI Vegas
self.assertIsInstance(program, Program)
episode = self._api.get_episodes(program.seasons[0].uuid)[0]
resolved_stream = self._api.get_stream(episode.uuid, episode.content_type)
Expand Down

0 comments on commit b44a0dc

Please sign in to comment.