From a6e2678778ec3d0d7086e53ed2aaa1753fb2eff7 Mon Sep 17 00:00:00 2001 From: owine Date: Mon, 1 Apr 2024 11:29:13 -0500 Subject: [PATCH] feat(sonarr): Update Season Pack CF and guide (#1872) --- .../sonarr-collection-of-custom-formats.md | 29 +------------------ docs/json/sonarr/cf/season-pack-spec.json | 15 ---------- docs/json/sonarr/cf/season-pack.json | 4 +-- 3 files changed, 3 insertions(+), 45 deletions(-) delete mode 100644 docs/json/sonarr/cf/season-pack-spec.json diff --git a/docs/Sonarr/sonarr-collection-of-custom-formats.md b/docs/Sonarr/sonarr-collection-of-custom-formats.md index 3713c53b2..c8810e1bb 100644 --- a/docs/Sonarr/sonarr-collection-of-custom-formats.md +++ b/docs/Sonarr/sonarr-collection-of-custom-formats.md @@ -1148,35 +1148,9 @@ We've made 3 guides related to this. ### Season Pack -??? question "Season Pack - [Click to show/hide]" - - This Custom Format can be used to prefer or exclude season packs - - - Give it a score of `10` if you prefer a season pack. - - Give it a score of `-10000` if you prefer to not download season packs. - - `/\bS\d+\b(?!E\d+\b)/i` season packs are preferred: however, given the folder name is ignored the issue occurs as the file names would not be a season pack. - - !!! danger "WARNING" - - This Custom Format could result in a download loop :bangbang: - - This will upgrade also your already downloaded single episodes :bangbang: - -??? example "JSON - [Click to show/hide]" - - ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack.json' %]][[% endfilter %]] - ``` - -[TOP](#index) - ---- - -### Season Pack (New "Release Type" Handling, Sonarr v4.0.2.1262+ only) - !!! danger "WARNING" - This CF utilizes functionality only available starting in Sonarr v4.0.2.1262. - - This CF is currently "Guides Only" and does not have a `trash_id` for sync tools. - - This CF is currently "Guides Only" and does not yet have a `trash_id` for sync tools pending ReleaseType being released as stable / Sonarr `main` ??? question "Season Pack - [Click to show/hide]" This Custom Format can be used to prefer or exclude season packs @@ -1187,13 +1161,12 @@ We've made 3 guides related to this. !!! info - This Custom Format could previously result in download loops. The new "Release Type" CF now prevents this undesired behavior. :bangbang: - - This Custom Format will replace the current Season Pack Custom Format as a drop in replacement when the functionality reaches a full release version of Sonarr. - This will upgrade your already downloaded single episodes :bangbang: ??? example "JSON - [Click to show/hide]" ```json - [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack-spec.json' %]][[% endfilter %]] + [[% filter indent(width=4) %]][[% include 'json/sonarr/cf/season-pack.json' %]][[% endfilter %]] ``` [TOP](#index) diff --git a/docs/json/sonarr/cf/season-pack-spec.json b/docs/json/sonarr/cf/season-pack-spec.json deleted file mode 100644 index 048f3061c..000000000 --- a/docs/json/sonarr/cf/season-pack-spec.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - "name": "Season Pack", - "includeCustomFormatWhenRenaming": false, - "specifications": [ - { - "name": "Season Packs", - "implementation": "ReleaseTypeSpecification", - "negate": false, - "required": false, - "fields": { - "value": 3 - } - } - ] -} diff --git a/docs/json/sonarr/cf/season-pack.json b/docs/json/sonarr/cf/season-pack.json index d8bf134c8..ab40fd0c9 100644 --- a/docs/json/sonarr/cf/season-pack.json +++ b/docs/json/sonarr/cf/season-pack.json @@ -5,11 +5,11 @@ "specifications": [ { "name": "Season Packs", - "implementation": "ReleaseTitleSpecification", + "implementation": "ReleaseTypeSpecification", "negate": false, "required": false, "fields": { - "value": "\\bS\\d+\\b(?!E\\d+\\b)" + "value": 3 } } ]