From cd80e317f32b77140f4d9e095e248dea5532515c Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Sun, 9 Feb 2025 00:08:23 +0100 Subject: [PATCH] Some more ideas --- changedetectionio/conditions.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/changedetectionio/conditions.py b/changedetectionio/conditions.py index 9a28a9f9d..7a70874a0 100644 --- a/changedetectionio/conditions.py +++ b/changedetectionio/conditions.py @@ -15,6 +15,8 @@ operator_choices = [ ("contains_regex", "Text Matches Regex"), ("!contains_regex", "Text Does NOT Match Regex"), ("changed > minutes", "Changed more than X minutes ago"), + ("watch_uuid_unviewed_change", "Watch UUID had an unviewed change"), + ("watch_uuid_not_unviewed_change", "Watch UUID NOT had an unviewed change") # ("watch_uuid_changed", "Watch UUID had unviewed change"), # ("watch_uuid_not_changed", "Watch UUID did NOT have unviewed change"), # ("!!", "Is Truthy"), @@ -42,7 +44,9 @@ field_choices = [ ("watch_uuid", "Watch UUID"), ("watch_history_length", "History Length"), ("watch_history", "All Watch Text History"), - ("watch_check_count", "Watch Check Count") + ("watch_check_count", "Watch Check Count"), + ("watch_uuid", "Other Watch by UUID"), + #("requests_get", "Web GET requests (https://..)") ]