From 819ab0b18108b6dbb2aa8c1000d9cb2010cf0c45 Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Wed, 7 Aug 2024 23:27:04 +1000 Subject: [PATCH 1/2] Fix typo causing http server to restart when checking status --- resources/lib/youtube_plugin/kodion/network/http_server.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/youtube_plugin/kodion/network/http_server.py b/resources/lib/youtube_plugin/kodion/network/http_server.py index 2af4d96d2..b2ecba8bb 100644 --- a/resources/lib/youtube_plugin/kodion/network/http_server.py +++ b/resources/lib/youtube_plugin/kodion/network/http_server.py @@ -583,7 +583,7 @@ def httpd_status(context): address, ':', str(port), - PATHS.IP, + PATHS.PING, )) if not RequestHandler.requests: RequestHandler.requests = BaseRequestsClass(context=context) From a70852cb7de9001553ec736ed044d9d475d4d67a Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Tue, 13 Aug 2024 15:40:42 +1000 Subject: [PATCH 2/2] Version bump v7.0.9 --- addon.xml | 2 +- changelog.txt | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 1 deletion(-) diff --git a/addon.xml b/addon.xml index c8bdb7a99..207be451e 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index d2ffa7920..d8d59d139 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,61 @@ +## v7.0.9 +### Fixed +- Fix renaming playlists +- Improve http server wakeup #746 #801 +- Fix ask for video quality setting being inconsistently applied +- Fix http server not sleeping after initial start of service #746 #801 +- Fix not reloading WL playlist if open after playback of video in WL +- Fix navigating to search page after playback and prompt re-opening +- Fix issues with next page and jump to page in related video listings +- Attempt to workaround issue with getting system idle time on Xbox #839 +- Better handle unknown errors in player request responses #845 +- Fix double playback due to busy dialog crash workaround +- Fix disabling certification verification #841 +- Fix not using player request fallbacks #845 +- Fix incorrectly identifying VP9 streams #833 +- Fix videos not able to be re-opened from Kodi playlist #810 +- Fix http server not working in Kodi 18 +- Fix issues with http server wakeup and sleep on initial start/restart +- Fix API requests failing if not logged in +- Fix multi-audio streams failing to play +- Fix not properly defining default audio role #861 +- Don't retry player requests for offline live streams +- Fix incorrectly updating playing live stream details +- Fix typo causing http server to restart when checking status + +### Changed +- Make live query parameter optional when playing channel live stream +- Allow for removal of custom watch later and history playlists from settings #818 + - Use default value of "HL" for history or "WL" for watch later as reset value + - This will then clear the setting and clear value from access_manager.json + - Old values will be stored as a backup, just in case +- Update cached data when playlists are modified (removed/renamed) +- Changed bandwidth attribute of subtitles in MPEG-DASH manifest to 0 +- Rename My Subscriptions plugin url + - From: + - plugin://plugin.video.youtube/special/new_uploaded_videos_tv + - plugin://plugin.video.youtube/special/new_uploaded_videos_tv_filtered + - To: + - plugin://plugin.video.youtube/special/my_subscriptions + - plugin://plugin.video.youtube/special/my_subscriptions_filtered + - Old url retained for backwards compatibility, to be removed with Kodi v22 +- Disable OPUS audio again by default #537 +- Respect disable certificate verification setting with cURL in ISA #841 +- Update bookmarks when listing rather than only using item snapshot +- Player requests no longer use configured plugin language +- Alternate client selections removed + +### New +- Add notifications for creating/removing/clearing bookmarks #720 +- Add support for channel handles +- Enable loop to first page on last page of manually paginated listings (My Subscriptions) +- Improve use of progressive streams +- Improve stream selection for HLS stream in InputStream.Adaptive +- Add script action to refresh settings + - Settings > Maintenance > Refresh settings.xml + - Will remove unused settings from settings.xml to stop log spam +- Add context menu item to play live stream from start #320 + ## v7.0.9+beta.10 ### Fixed - Don't retry player requests for offline live streams