From 2f70a71c95ce9c93296bc7ad8d5468577aaed976 Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Fri, 26 Dec 2025 15:11:54 -0800 Subject: [PATCH] deprecation notice --- docs/source/deprecation_notices.rst | 9 +++++++++ examples/advanced/tv_show_subscriptions.yaml | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/source/deprecation_notices.rst b/docs/source/deprecation_notices.rst index 9fc4b48d..a75240c2 100644 --- a/docs/source/deprecation_notices.rst +++ b/docs/source/deprecation_notices.rst @@ -1,6 +1,15 @@ Deprecation Notices =================== +Dec 2025 +-------- + +Override variables names can no longer be plugin names, to avoid the common pitfall of +defining a plugin underneath ``overrides``. + +In the past, there was usage of a ``date_range`` override variable in a few example configs +that complimented the ``Only Recent`` preset. This overrride variable usage needs to be +replaced with ``only_recent_date_range``. Sep 2024 -------- diff --git a/examples/advanced/tv_show_subscriptions.yaml b/examples/advanced/tv_show_subscriptions.yaml index 52e1728c..f0b18dfa 100644 --- a/examples/advanced/tv_show_subscriptions.yaml +++ b/examples/advanced/tv_show_subscriptions.yaml @@ -24,6 +24,6 @@ TV Show Only Recent: # to set only for that subscriptions "~BBC News": url: "https://www.youtube.com/@BBCNews" # use url2, url3, ... for multi-url in this form - date_range: "2weeks" + only_recent_date_range: "2weeks" "Frontline PBS": "https://www.youtube.com/@frontline" "Whitehouse": "https://www.bitchute.com/channel/zWsYVmCOu4JA/" # Supports non-YT sites \ No newline at end of file