From 33fdbe840cea90c120f463b992ae4c37fb02bbfe Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Tue, 14 Feb 2023 19:44:57 +0100 Subject: [PATCH] feat(sonarr): added `Comedy Central` CF added Comedy Central streaming service to the Sonarr custom formats. --- docs/json/sonarr/cf/cc.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/json/sonarr/cf/cc.json diff --git a/docs/json/sonarr/cf/cc.json b/docs/json/sonarr/cf/cc.json new file mode 100644 index 000000000..71e16180f --- /dev/null +++ b/docs/json/sonarr/cf/cc.json @@ -0,0 +1,35 @@ +{ + "trash_id": "77a7b25585c18af08f60b1547bb9b4fb", + "trash_regex": "https://regex101.com/r/A3TRwE/1", + "name": "CC", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Comedy Central", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(CC)\\b[ ._-]web[ ._-]?(dl|rip)?\\b" + } + }, + { + "name": "WEBDL", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 3 + } + }, + { + "name": "WEBRIP", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 4 + } + } + ] +}