From 8bc7f61c02d101e1c6ca775244384a28f1cfa132 Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Thu, 28 Nov 2024 13:37:52 +1100 Subject: [PATCH] Version bump v7.2.0+beta.1 --- addon.xml | 2 +- changelog.txt | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) diff --git a/addon.xml b/addon.xml index 90191fc5e..cb9a3c9be 100644 --- a/addon.xml +++ b/addon.xml @@ -1,5 +1,5 @@ - + diff --git a/changelog.txt b/changelog.txt index eb13564cd..8c2b08504 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,76 @@ +## v7.2.0+beta.1 +### Fixed +- Fix processing of "q" and "channelId" search query params +- Fix using incorrect client headers with cURL when ISA is not used +- Fix incorrect use of str.lstrip +- Ensure language and region are passed to StreamInfo instances #989 +- Fix not updating cache for empty feeds in My Subscriptions +- Make parsing and serialising of list type parameters a reversible operation +- Fix logic used to filter out various type of streams + - Was previously checking any inclusion filters + - Now any exclusion filter that matches will filter stream out +- Fix plugin URI redirect from search +- Fix incorrect path handling during migration of old sqlite databases in Setup Wizard + +### Changed +- Re-enable player request clients that require specific OAuth tokens +- Re-enable OAuth authorisation for YouTube TV +- Update itags for 30fps HLS VP9.2 streams +- Update player client details and selections +- Add some ultra low quality itags +- Optimise wakeup to ensure http server is only started when required +- Improve check for Kodi subtitle language +- Improve handling of audio language selection #989 +- Replace preferred language subtitle option with preferred language + fallback + no ASR option #992 +- Allow for caching of subscriptions API requests in My Subscriptions +- Only use OAuth tokens if necessary #994 #996 +- Set default live stream type to MPEG-DASH for Kodi 21+ #1004 + +### New +- Update display of comments to be match other listings + - Make comment details follow "Show video details in video lists" setting + - Allow various sorting options + - Truncate comment to 140 characters in listing, full comment available in info dialog + - Show user thumbnail in listing + - Show user with thumbnail in info dialog + - Show video/comment details in navigation breadcrumb bar +- Overhaul update of fanart and other channel info for listings + - Add additional channel info to all items in listings in one pass + - channel name thumbnail in info dialog + - channel name in context menu items + - channel fanart if enabled + - Reduce network requests + - Improve cache usage + - Reduce thread usage +- Add custom Shorts duration #984 +- Allow use of HLS streams in external players + - Also allows for playing in Kodi without InputStream.Adaptive +- Add ability to create arbitrary filter criteria to My Subscriptions #984 + - "{ATTR_1}{OPERATOR_1}{VALUE_1}[{ATTR_X}{OPERATOR_X}{VALUE_X}...]" + - where ATTR_X can be any valid item getter or property e.g. + - "duration", "title", "artists"/"artists_string", "plot", "date", etc. or + - ".live", ".upcoming", ".completed" etc. Note the "." prefix + - where OPERATOR_X can be + - ">", ">=" (default), "<", "<=", "=", "==", "!=" typically for a int/float/bool type VALUE or + - "contains", "startswith", "endswith", "search" for a string type VALUE + - where VALUE_X is the desired criteria value. + - String type values are wrapped in double quote marks eg. "example" + - "," must be encoded as "%2C" eg. "example,test" becomes "example%2Ctest" + - "}" must be encoded as "%7D" eg. "example}test" becomes "example%7Dtest" + - any number of criteria rules can be used together + - rules seperated by a comma are OR rules + - rules contained within a comma group are AND rules +- Add filler parameter to v3.response_to_items + - Allows listings to be recursively filled after post request filtering + - Also show progress dialog for all listings +- Add support for sequentially filling Recommendations listing +- Add support for sequentially filling Trending listing +- Add new advanced list filter setting + - Works in the same manner as the My Subscriptions filter, but for all listings + - Can also be set using the item_filter plugin URI query parameter +- Add option to prefer lower resolution streams for unselected codecs +- Populate My Subscription listings using feed details + ## v7.1.1.3 ### Fixed - Fix http server not listening on any interface if listen IP is 0.0.0.0 #927