From 9fc42a6218a8c5d4abacb39b1eebdbd3f54dfed4 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Tue, 26 Dec 2023 22:01:16 +0100 Subject: [PATCH] feat(Starr) add NEW CF `INTERNAL` (#1704) --- .../Radarr-collection-of-custom-formats.md | 18 +++++++++++++++++ .../sonarr-collection-of-custom-formats.md | 18 +++++++++++++++++ docs/json/radarr/cf/internal.json | 20 +++++++++++++++++++ docs/json/sonarr/cf/internal.json | 20 +++++++++++++++++++ 4 files changed, 76 insertions(+) create mode 100644 docs/json/radarr/cf/internal.json create mode 100644 docs/json/sonarr/cf/internal.json diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index de9bd38cc..0f59f28d1 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -91,6 +91,7 @@ I also made 3 guides related to this one. | | [Line/Mic Dubbed](#linemic-dubbed) | [FastSUB](#fastsub) | | | | [HFR](#hfr) | | | | | [VP9](#vp9) | | | +| | [Internal](#internal) | | | ------ @@ -1289,6 +1290,23 @@ I also made 3 guides related to this one. ------ +### Internal + +??? question "Internal - [Click to show/hide]" + + - For those that prefer scene releases may want to boost internals as they generally have higher settings that may not conform to ruleset. + - In some rare cases P2P use also INTERNAL. + +??? example "JSON - [Click to show/hide]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/internal.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### SDR ??? question "SDR - [Click to show/hide]" diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index 2aace0ddc..9438fa833 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -99,6 +99,7 @@ I also made 3 guides related to this one. | | [DV (Disk)](#dv-disk) | [FanSUB](#fansub) | | | | [HFR](#hfr) | [FastSUB](#fastsub) | | | | [VP9](#vp9) | | | +| | [Internal](#internal) | | | ------ @@ -1218,6 +1219,23 @@ I also made 3 guides related to this one. ------ +### Internal + +??? question "Internal - [Click to show/hide]" + + - For those that prefer scene releases may want to boost internals as they generally have higher settings that may not conform to ruleset. + - In some rare cases P2P use also INTERNAL. + +??? example "JSON - [Click to show/hide]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/internal.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### SDR ??? question "SDR - [Click to show/hide]" diff --git a/docs/json/radarr/cf/internal.json b/docs/json/radarr/cf/internal.json new file mode 100644 index 000000000..0982294c9 --- /dev/null +++ b/docs/json/radarr/cf/internal.json @@ -0,0 +1,20 @@ +{ + "trash_id": "182fa1c42a2468f8488e6dcf75a81b81", + "trash_scores": { + "default": 10 + }, + "trash_regex": "https://regex101.com/r/T7vznB/1", + "name": "INTERNAL", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "INTERNAL", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(INTERNAL)\\b" + } + } + ] +} diff --git a/docs/json/sonarr/cf/internal.json b/docs/json/sonarr/cf/internal.json new file mode 100644 index 000000000..ba5759394 --- /dev/null +++ b/docs/json/sonarr/cf/internal.json @@ -0,0 +1,20 @@ +{ + "trash_id": "5ab46ff851b76c337e13e81a4353875f", + "trash_scores": { + "default": 10 + }, + "trash_regex": "https://regex101.com/r/T7vznB/1", + "name": "INTERNAL", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "INTERNAL", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(INTERNAL)\\b" + } + } + ] +}