From 084af18ddb4dc00c6a5e6b4b69771846bf90813b Mon Sep 17 00:00:00 2001 From: John Woodhouse Date: Wed, 31 Mar 2021 21:11:07 +0100 Subject: [PATCH 1/3] Update Basic DTS / Not DTS-HD regex Updates the Not DTS-HD regex to match against DTS-HD HRA, stops releases with DTS-HD HRA from being matched against both DTS and DTS-HD HRA custom formats. --- docs/Radarr/V3/Radarr-collection-of-custom-formats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md index 0721bbabd..9aa561c78 100644 --- a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md @@ -1212,7 +1212,7 @@ I also made 2 guides related to this one. "negate": true, "required": true, "fields": { - "value": "dts.?(hd|ma|es|hi)" + "value": "dts.?(hd|ma|es|hi|hr)" } }, { From 561fa738b02bc861611286da75a11d6ec17eb247 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Thu, 1 Apr 2021 22:43:54 +0200 Subject: [PATCH 2/3] Updated: Radarr - Collection of Custom Formats ```yml Updated: Radarr - Collection of Custom Formats - Updated: DoVi - Fixed stops match if detects DoVi SL - Updated: HDR - Fixed stop match if detects DoVi in release title. (Double Scoring) ``` --- .../V3/Radarr-collection-of-custom-formats.md | 79 +++++++++++++------ 1 file changed, 55 insertions(+), 24 deletions(-) diff --git a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md index 9aa561c78..3d5e97605 100644 --- a/docs/Radarr/V3/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/V3/Radarr-collection-of-custom-formats.md @@ -1984,17 +1984,28 @@ Advanced Audio Coding ```json { - "name": "DoVi", - "includeCustomFormatWhenRenaming": true, - "specifications": [{ - "name": "Dolby Vision", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": true, - "fields": { - "value": "\\b(DV|dovi|dolby[ .]vision)\\b" - } - }] + "name": "DoVi", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "Dolby Vision", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(dv|dovi|dolby[ .]vision)\\b" + } + }, + { + "name": "DoVi-SL: Dolby Vision (Single Layer)", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(sl[ .]dv|single[ .]layer[ .]dovi)\\b" + } + } + ] } ``` @@ -2029,7 +2040,7 @@ Advanced Audio Coding "negate": false, "required": true, "fields": { - "value": "\\b(DV|dovi|dolby[ .]vision)\\b" + "value": "\\b(dv|dovi|dolby[ .]vision)\\b" } }, { @@ -2049,6 +2060,15 @@ Advanced Audio Coding "fields": { "value": 8 } + }, + { + "name": "Dolby Vision (Single Layer)", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(sl[ .]dv|single[ .]layer[ .]dovi)\\b" + } } ] } @@ -2115,17 +2135,28 @@ Advanced Audio Coding ```json { - "name": "HDR", - "includeCustomFormatWhenRenaming": false, - "specifications": [{ - "name": "HDR", - "implementation": "ReleaseTitleSpecification", - "negate": false, - "required": true, - "fields": { - "value": "\\bHDR(\\b|\\d)" - } - }] + "name": "HDR", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "HDR", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\bHDR(\\b|\\d)" + } + }, + { + "name": "DoVi", + "implementation": "ReleaseTitleSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(dv|dovi|dolby[ .]vision)\\b" + } + } + ] } ``` @@ -2181,7 +2212,7 @@ Advanced Audio Coding "negate": true, "required": true, "fields": { - "value": "\\b(DV|dovi)\\b|dolby.?vision" + "value": "\\b(dv|dovi)\\b|dolby.?vision" } }, { From 4dd65ef54e202835428fdc74cf07db9c434e3b94 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Thu, 1 Apr 2021 22:51:12 +0200 Subject: [PATCH 3/3] Update Sonarr-Release-Profile-RegEx.md Fixed: Formatting --- docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md index 70f960298..7b0a72858 100644 --- a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md @@ -395,7 +395,7 @@ Add this for example as [15] ![!rp-su-season](images/rp-su-season.png) Then theirs only one way real way that always solves this issue. - create a new release profile specific for .su that uses the [Season regex(#optional-matches-season-packs-use-this-if-you-prefer-season-packs)] as `Must not contain (2)` + create a new release profile specific for .su that uses the [Season regex](#optional-matches-season-packs-use-this-if-you-prefer-season-packs) as `Must not contain (2)` ![!rp-release-profile-block-season-su](images/rp-release-profile-block-season-su.png)