diff --git a/CHANGELOG.md b/CHANGELOG.md index 38ae213a..dd527a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Changed + +- Removed `fields` from Invidious requests, as per [https://github.com/iv-org/invidious/pull/4276](https://github.com/iv-org/invidious/pull/4276) + ## [0.19.2] - 2024-02-11 ### Fixed diff --git a/playlet-app/src/components/BootstrapScene/BootstrapScene.bs b/playlet-app/src/components/BootstrapScene/BootstrapScene.bs index 5e587423..d25c7d3b 100644 --- a/playlet-app/src/components/BootstrapScene/BootstrapScene.bs +++ b/playlet-app/src/components/BootstrapScene/BootstrapScene.bs @@ -23,7 +23,12 @@ end function function GetPlayletLibUrls() as object #if DEBUG debug = { type: "debug", link: Manifest.ReadValue("playlet_lib_debug_url") } - return [debug] + embedded = { type: "embedded", link: Manifest.ReadValue("playlet_lib_embedded_url") } + #if DEBUG_FALLBACK_TO_EMBEDDED + return [debug, embedded] + #else + return [debug] + #end if #else savedUrls = Registry.GetPlayletLibUrlsFromRegistry() if savedUrls <> invalid diff --git a/playlet-app/src/manifest b/playlet-app/src/manifest index 2ace20d2..17f269c1 100644 --- a/playlet-app/src/manifest +++ b/playlet-app/src/manifest @@ -33,4 +33,4 @@ playlet_lib_debug_url=http://DEBUG_HOST_IP_ADDRESS:8086/playlet-lib.zip git_commit_sha=unknown -bs_const=DEBUG=false \ No newline at end of file +bs_const=DEBUG=false;DEBUG_FALLBACK_TO_EMBEDDED=true \ No newline at end of file diff --git a/playlet-lib/src/components/Screens/SearchScreen/SearchScreen.xml b/playlet-lib/src/components/Screens/SearchScreen/SearchScreen.xml index 3b34e8b0..29b5c74d 100644 --- a/playlet-lib/src/components/Screens/SearchScreen/SearchScreen.xml +++ b/playlet-lib/src/components/Screens/SearchScreen/SearchScreen.xml @@ -10,9 +10,9 @@