From b44a0dc0c14917af19e9d34c40300261271312ff Mon Sep 17 00:00:00 2001 From: mediaminister <45148099+mediaminister@users.noreply.github.com> Date: Mon, 21 Oct 2024 10:21:51 +0200 Subject: [PATCH] Prepare for v0.5.1 release (#13) --- README.md | 5 +++++ addon.xml | 11 ++++++++--- tests/test_api.py | 2 +- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index efa6cc2..9465376 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/addon.xml b/addon.xml index 6286dc3..162d5b6 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + @@ -21,8 +21,13 @@ 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. all GPL-3.0-only - v0.5.0 (2024-09-11) - - Update to new GoPlay API + +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 https://github.com/add-ons/plugin.video.goplay diff --git a/tests/test_api.py b/tests/test_api.py index 93c7b0c..2af1773 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -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)