From 222a1520a42e268a94dbbb27a138bd0d58375063 Mon Sep 17 00:00:00 2001 From: aljohn92 <16975578+aljohn92@users.noreply.github.com> Date: Fri, 18 Dec 2020 19:13:31 +0000 Subject: [PATCH 1/2] Update Sonarr-Release-Profile-RegEx.md By making the release type (webdl/rip) part of a non-capturing group, renames with {Preferred Words} won't overlap with {Quality Title} (e.g.: WEB-DL won't occur twice). --- .../Sonarr/V3/Sonarr-Release-Profile-RegEx.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md index fb1fa7d3b..3e91d1e75 100644 --- a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md @@ -79,17 +79,17 @@ It's recommended to add the Release Sources separate from the other release prof ```bash # Preferred (3) -[100] /(amzn|amazon).?web.?(dl|rip)/i -[100] /(atvp).?web.?(dl|rip)/i -[100] /(hmax).?web.?(dl|rip)/i -[90] /(dsnp|dsny|disney).?web.?(dl|rip)/i -[90] /(nf|netflix).?web.?(dl|rip)/i -[90] /(qibi).?web.?(dl|rip)/i -[85] /(hulu).?web.?(dl|rip)/i -[75] /(dcu).?web.?(dl|rip)/i -[75] /(hbo).?web.?(dl|rip)/i -[75] /(red).?web.?(dl|rip)/i -[75] /(it).?web.?(dl|rip)/i +[100] /(amzn|amazon)(?=.?web.?(dl|rip))/i +[100] /(atvp)(?=.?web.?(dl|rip))/i +[100] /(hmax)(?=.?web.?(dl|rip))/i +[90] /(dsnp|dsny|disney)(?=.?web.?(dl|rip))i +[90] /(nf|netflix)(?=.?web.?(dl|rip))/i +[90] /(qibi)(?=.?web.?(dl|rip))/i +[85] /(hulu)(?=.?web.?(dl|rip))/i +[75] /(dcu)(?=.?web.?(dl|rip))/i +[75] /(hbo)(?=.?web.?(dl|rip))/i +[75] /(red)(?=.?web.?(dl|rip))/i +[75] /(it)(?=.?web.?(dl|rip))/i ``` !!! note From 30f7380ec67eb2559374dd7db7a9de64814654be Mon Sep 17 00:00:00 2001 From: aljohn92 <16975578+aljohn92@users.noreply.github.com> Date: Fri, 18 Dec 2020 19:15:29 +0000 Subject: [PATCH 2/2] Update Sonarr-Release-Profile-RegEx.md typo --- 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 3e91d1e75..c1fc60a72 100644 --- a/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/V3/Sonarr-Release-Profile-RegEx.md @@ -82,7 +82,7 @@ It's recommended to add the Release Sources separate from the other release prof [100] /(amzn|amazon)(?=.?web.?(dl|rip))/i [100] /(atvp)(?=.?web.?(dl|rip))/i [100] /(hmax)(?=.?web.?(dl|rip))/i -[90] /(dsnp|dsny|disney)(?=.?web.?(dl|rip))i +[90] /(dsnp|dsny|disney)(?=.?web.?(dl|rip))/i [90] /(nf|netflix)(?=.?web.?(dl|rip))/i [90] /(qibi)(?=.?web.?(dl|rip))/i [85] /(hulu)(?=.?web.?(dl|rip))/i