From e50301822dd046eb64eefc4d478648d4587664a2 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 5 Dec 2023 11:23:34 +0200 Subject: [PATCH 1/2] fix(radarr): add `Extended Clip` to Extras CF --- docs/json/radarr/cf/extras.json | 2 +- docs/json/radarr/cf/special-edition.json | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/docs/json/radarr/cf/extras.json b/docs/json/radarr/cf/extras.json index f117bb992..5debb6972 100644 --- a/docs/json/radarr/cf/extras.json +++ b/docs/json/radarr/cf/extras.json @@ -13,7 +13,7 @@ "negate": false, "required": true, "fields": { - "value": "(?<=\\b[12]\\d{3}\\b).*\\b(Extras|Bonus)\\b" + "value": "(?<=\\b[12]\\d{3}\\b).*\\b(Extras|Bonus|Extended[ ._-]Clip)\\b" } } ] diff --git a/docs/json/radarr/cf/special-edition.json b/docs/json/radarr/cf/special-edition.json index 75a2b67fc..af14d8f7e 100644 --- a/docs/json/radarr/cf/special-edition.json +++ b/docs/json/radarr/cf/special-edition.json @@ -42,6 +42,15 @@ "fields": { "value": "Theatrical" } + }, + { + "name": "Not Extended Clip", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(Extended[ ._-]Clip)\\b" + } } ] } From 1a49400d37144079c8fb2bccebb42a7d09ff1ea0 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 5 Dec 2023 14:28:27 +0200 Subject: [PATCH 2/2] fix(sonarr): add `Extended Clip` to Extras CF --- docs/json/sonarr/cf/extras.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/sonarr/cf/extras.json b/docs/json/sonarr/cf/extras.json index 138b7a6da..5818901bf 100644 --- a/docs/json/sonarr/cf/extras.json +++ b/docs/json/sonarr/cf/extras.json @@ -13,7 +13,7 @@ "negate": false, "required": true, "fields": { - "value": "(?<=\\bS\\d+\\b).*\\b(Extras|Bonus)\\b" + "value": "(?<=\\bS\\d+\\b).*\\b(Extras|Bonus|Extended[ ._-]Clip)\\b" } } ]