From b524a50bb1f64a9fc34c5bffebe70575353427eb Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 19 Dec 2021 16:57:21 +0100 Subject: [PATCH 1/2] Update Sonarr-Release-Profile-RegEx.md Updated: Sonarr - Release Profile RegEx (WEB-DL) - Changed: Better recornizing of so called scene releases, even renamed ones. --- docs/Sonarr/Sonarr-Release-Profile-RegEx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index f410b91a1..e90c568e2 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -457,10 +457,10 @@ Add this to your `Must not contain (2)` If you don't want to download so called scene releases. -dd this to your `Must not contain (2)` +Add this to your `Must not contain (2)` ```bash -/\b([ .]WEB[ .])\b/i +/([-_. ]WEB[-_. ]|\bCAKES\b|GGEZ|GGWP|GLHF)/i ``` ------ From 658508ae0f851c2d968b1343d635440b5d677225 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 19 Dec 2021 18:18:06 +0100 Subject: [PATCH 2/2] Update Sonarr-Release-Profile-RegEx.md - Changed: Shortened regex for Optional Ignore DoVi for WEBDL, being Sonarr sees the GUI bug as a feature (it covers now 99% of all webdl) - Fixed: Optional Ignore scene releases --- docs/Sonarr/Sonarr-Release-Profile-RegEx.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index e90c568e2..d4a8ca97a 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -436,7 +436,7 @@ Add this to your `Preferred (3)` with a score of [15] Add this to your `Must not contain (2)` ```bash -/\b(?=.*(dv|dovi|dolby[ .]vision)\b)(?=.*(WEB[-_. ]DL|WEBDL|AmazonHD|iTunesHD|MaxdomeHD|NetflixU?HD|WebHD|[. ]WEB[. ](?:[xh]26[45]|DDP?5[. ]1)|[. ](?-i:WEB)$|\d+0p(?:[-. ]AMZN)?[-. ]WEB[-. ]|WEB-DLMux|\b\s\/\sWEB\s\/\s\b|AMZN[. ]WEB[. ]|WebRip|Web-Rip|WEBMux))/i +/(?=.*\b(dv|dovi|dolby[ .]vision)\b)(?=.*(WEB[-_. ]?(DL|RIP)|\bWEB\b))/i ``` #### Optional Ignore the group -scene @@ -460,7 +460,7 @@ Add this to your `Must not contain (2)` Add this to your `Must not contain (2)` ```bash -/([-_. ]WEB[-_. ]|\bCAKES\b|GGEZ|GGWP|GLHF)/i +/([_. ]WEB[_. ]|\\bCAKES\\b|GGEZ|GGWP|GLHF)/i ``` ------