From d4c344f8e0f4cb19a831f985e3feb77a06fa33c3 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sat, 16 Aug 2025 19:57:36 +0200 Subject: [PATCH 1/2] feat(starr): Add Streaming Service ATV (This is NOT ATVP) --- docs/json/radarr/cf/atv.json | 34 +++++++++++++++++++++++++++++++++ docs/json/sonarr/cf/atv.json | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+) create mode 100644 docs/json/radarr/cf/atv.json create mode 100644 docs/json/sonarr/cf/atv.json diff --git a/docs/json/radarr/cf/atv.json b/docs/json/radarr/cf/atv.json new file mode 100644 index 0000000000..a01287fc91 --- /dev/null +++ b/docs/json/radarr/cf/atv.json @@ -0,0 +1,34 @@ +{ + "trash_id": "d9e511921c8cedc7282e291b0209cdc5", + "name": "ATV", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Apple TV", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(atv)\\b" + } + }, + { + "name": "WEBDL", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 7 + } + }, + { + "name": "WEBRIP", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 8 + } + } + ] +} diff --git a/docs/json/sonarr/cf/atv.json b/docs/json/sonarr/cf/atv.json new file mode 100644 index 0000000000..670f60da4d --- /dev/null +++ b/docs/json/sonarr/cf/atv.json @@ -0,0 +1,37 @@ +{ + "trash_id": "5399f0ab9f023a9ce164d8bfc9c71356", + "trash_scores": { + "default": 0 + }, + "name": "ATV", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Apple TV", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(atv)\\b" + } + }, + { + "name": "WEBDL", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 3 + } + }, + { + "name": "WEBRIP", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 4 + } + } + ] +} From 0c9772900d5c0f78ab7ecab7d06369f2607c8b40 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sat, 16 Aug 2025 20:11:32 +0200 Subject: [PATCH 2/2] fixed temp non-valid score --- docs/json/sonarr/cf/atv.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/sonarr/cf/atv.json b/docs/json/sonarr/cf/atv.json index 670f60da4d..0499b45b80 100644 --- a/docs/json/sonarr/cf/atv.json +++ b/docs/json/sonarr/cf/atv.json @@ -1,7 +1,7 @@ { "trash_id": "5399f0ab9f023a9ce164d8bfc9c71356", "trash_scores": { - "default": 0 + "default": 50 }, "name": "ATV", "includeCustomFormatWhenRenaming": true,