From c92884aa2943736f5a98741f918a2dc53b244075 Mon Sep 17 00:00:00 2001 From: nuxen Date: Thu, 3 Nov 2022 16:55:52 +0100 Subject: [PATCH] Added: `OPUS` Group negation for `Opus` CF --- docs/json/radarr/cf/opus.json | 9 +++++++++ docs/json/sonarr/cf/opus.json | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/docs/json/radarr/cf/opus.json b/docs/json/radarr/cf/opus.json index fb9bfa34e..ec2f37073 100644 --- a/docs/json/radarr/cf/opus.json +++ b/docs/json/radarr/cf/opus.json @@ -11,5 +11,14 @@ "fields": { "value": "\\bOPUS(\\b|\\d)" } + }, + { + "name": "Not OPUS", + "implementation": "ReleaseGroupSpecification", + "negate": true, + "required": true, + "fields": { + "value": "OPUS" + } }] } diff --git a/docs/json/sonarr/cf/opus.json b/docs/json/sonarr/cf/opus.json index 3d65fdb32..3602ab825 100644 --- a/docs/json/sonarr/cf/opus.json +++ b/docs/json/sonarr/cf/opus.json @@ -11,5 +11,14 @@ "fields": { "value": "\\bOPUS(\\b|\\d)" } + }, + { + "name": "Not OPUS", + "implementation": "ReleaseGroupSpecification", + "negate": true, + "required": true, + "fields": { + "value": "OPUS" + } }] }