From 8ec0783ffe0128b365da5df8fd0386924d4fb078 Mon Sep 17 00:00:00 2001 From: rg9400 <39887349+rg9400@users.noreply.github.com> Date: Fri, 7 Feb 2025 09:58:52 -0600 Subject: [PATCH] feat(radarr): Only match B&W edition after year (#2259) --- docs/json/radarr/cf/black-and-white-editions.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/json/radarr/cf/black-and-white-editions.json b/docs/json/radarr/cf/black-and-white-editions.json index 3e846c427..4056a3cd1 100644 --- a/docs/json/radarr/cf/black-and-white-editions.json +++ b/docs/json/radarr/cf/black-and-white-editions.json @@ -12,7 +12,7 @@ "negate": false, "required": false, "fields": { - "value": "\\b((B(lack)?[ ._-]?(out|(and|[n&])[ ._-]?(W(hite)?|Chrome))))\\b(?!$)" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b((B(lack)?[ ._-]?(out|(and|[n&])[ ._-]?(W(hite)?|Chrome))))\\b(?!$)" } }, { @@ -21,7 +21,7 @@ "negate": false, "required": false, "fields": { - "value": "\\b(Monochrome)\\b(?!$)" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b(Monochrome)\\b(?!$)" } }, { @@ -39,7 +39,7 @@ "negate": false, "required": false, "fields": { - "value": "\\b(Shush[ ._-]?Cut)\\b(?!$)" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b(Shush[ ._-]?Cut)\\b(?!$)" } }, { @@ -48,7 +48,7 @@ "negate": false, "required": false, "fields": { - "value": "\\b((No|Minus)[ ._-]?Colou?r)\\b(?!$)" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b((No|Minus)[ ._-]?Colou?r)\\b(?!$)" } }, { @@ -66,7 +66,7 @@ "negate": false, "required": false, "fields": { - "value": "\\b(Darkness?[ ._-]?(and|&)[ ._-]?(Light))\\b(?!$)" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b(Darkness?[ ._-]?(and|&)[ ._-]?(Light))\\b(?!$)" } } ]