From ec09a3ea9a11bdaf5ef829194b89c3bd2e47f6a5 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Sun, 5 Feb 2023 21:05:50 +0000 Subject: [PATCH 01/23] Add HBO rlsgrp exclusion --- docs/json/sonarr/cf/hbo.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/json/sonarr/cf/hbo.json b/docs/json/sonarr/cf/hbo.json index 6d5302ad0..bf51332e7 100644 --- a/docs/json/sonarr/cf/hbo.json +++ b/docs/json/sonarr/cf/hbo.json @@ -30,6 +30,15 @@ "fields": { "value": 4 } + }, + { + "name": "HBO", + "implementation": "ReleaseGroupSpecification", + "negate": true, + "required": true, + "fields": { + "value": "\\b(HBO)\\b" + } } ] } From a3dfd4bf97187865924fd529acfcdba9c5ef945c Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Sun, 5 Feb 2023 21:42:40 +0000 Subject: [PATCH 02/23] Regex consistency with YT Red --- docs/json/sonarr/cf/hbo.json | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/docs/json/sonarr/cf/hbo.json b/docs/json/sonarr/cf/hbo.json index bf51332e7..beb2a76f9 100644 --- a/docs/json/sonarr/cf/hbo.json +++ b/docs/json/sonarr/cf/hbo.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hbo)(?![-_. ]max)\\b" + "value": "\\b(hbo)(?![-_. ]max)\\b[ ._-]web[ ._-]?(dl|rip)?\\b" } }, { @@ -30,15 +30,6 @@ "fields": { "value": 4 } - }, - { - "name": "HBO", - "implementation": "ReleaseGroupSpecification", - "negate": true, - "required": true, - "fields": { - "value": "\\b(HBO)\\b" - } } ] } From 6601aa49b4a969cb7f76d1bbcf33d12256dd33e9 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:01:34 +0000 Subject: [PATCH 03/23] Update HBO/HMAX for consistency across the guide --- docs/json/sonarr/rp/streaming.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/json/sonarr/rp/streaming.json b/docs/json/sonarr/rp/streaming.json index 1013798f3..51aee5d11 100644 --- a/docs/json/sonarr/rp/streaming.json +++ b/docs/json/sonarr/rp/streaming.json @@ -22,7 +22,7 @@ "/\\b(dsnp|dsny|disney|Disney\\+)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(nf|netflix)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(qibi|quibi)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", - "/\\b(hmax|hbom|hbo max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" + "/\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" ] }, { @@ -36,7 +36,7 @@ "score": 75, "terms": [ "/\\b(dcu)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", - "/\\b(hbo)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", + "/\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(red)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(it)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(pmtp)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", From 1daf6a6db64dc75bb2f367899703c6c2c1ce7ae7 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:03:31 +0000 Subject: [PATCH 04/23] Update HBO/HMAX for consistency across the guide --- 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 cd614444b..f7a9d4932 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -163,7 +163,7 @@ Add this to your `Preferred (3)` with a score of [90] ``` ```bash -/\b(hmax|hbom|hbo max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i +/\b(hmax|hbom|hbo[-_. ]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i ``` Add this to your `Preferred (3)` with a score of [85] @@ -183,7 +183,7 @@ Add this to your `Preferred (3)` with a score of [75] ``` ```bash -/\b(hbo)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i +/\b(hbo)(?![-_. ]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i ``` ```bash From c9b8a60ae4657795b6c78d4b697b17992ccaa1e8 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:04:37 +0000 Subject: [PATCH 05/23] Update regex for consistency across the guide --- docs/json/sonarr/cf/hbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/sonarr/cf/hbo.json b/docs/json/sonarr/cf/hbo.json index beb2a76f9..313702a60 100644 --- a/docs/json/sonarr/cf/hbo.json +++ b/docs/json/sonarr/cf/hbo.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hbo)(?![-_. ]max)\\b[ ._-]web[ ._-]?(dl|rip)?\\b" + "value": "\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { From 7aeb0d0ea5d495d973a000179f5693eacbc427b0 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:05:19 +0000 Subject: [PATCH 06/23] Update regex for consistency across the guide --- docs/json/sonarr/cf/hmax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/sonarr/cf/hmax.json b/docs/json/sonarr/cf/hmax.json index b1361b21a..0ec604400 100644 --- a/docs/json/sonarr/cf/hmax.json +++ b/docs/json/sonarr/cf/hmax.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hmax|hbom|hbo max)\\b" + "value": "\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { From a92e8b989f3ea25c938dd4e0deb87f41be1be983 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:06:12 +0000 Subject: [PATCH 07/23] Update regex for consistency across the guide --- docs/json/radarr/cf/hmax.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/radarr/cf/hmax.json b/docs/json/radarr/cf/hmax.json index 011e61541..2030d7d5d 100644 --- a/docs/json/radarr/cf/hmax.json +++ b/docs/json/radarr/cf/hmax.json @@ -9,7 +9,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hmax|hbom|HBO Max)\\b" + "value": "\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { From f3e7b4518216ba4b0153224aa3723cf3db687d5b Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:11:39 +0000 Subject: [PATCH 08/23] Create HBO.json for older non-HMAX releases --- docs/json/radarr/cf/hbo.json | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 docs/json/radarr/cf/hbo.json diff --git a/docs/json/radarr/cf/hbo.json b/docs/json/radarr/cf/hbo.json new file mode 100644 index 000000000..4591eb6ef --- /dev/null +++ b/docs/json/radarr/cf/hbo.json @@ -0,0 +1,34 @@ +{ + "trash_id": "509e5f41146e278f9eab1ddaceb34515" + "name": "HBO", + "includeCustomFormatWhenRenaming": true, + "specifications": [ + { + "name": "HBO", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": true, + "fields": { + "value": "\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + } + }, + { + "name": "WEBDL", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 7 + } + }, + { + "name": "WEBRIP", + "implementation": "SourceSpecification", + "negate": false, + "required": false, + "fields": { + "value": 8 + } + } + ] +} From 2a4c62770ae4560f1456d17adce0e6f59102e882 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:12:43 +0000 Subject: [PATCH 09/23] Add HBO --- docs/Radarr/recyclarr-config/hd_bluray_web.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Radarr/recyclarr-config/hd_bluray_web.yml b/docs/Radarr/recyclarr-config/hd_bluray_web.yml index eefad9adf..51388d4ba 100644 --- a/docs/Radarr/recyclarr-config/hd_bluray_web.yml +++ b/docs/Radarr/recyclarr-config/hd_bluray_web.yml @@ -43,6 +43,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 4354db4da34c4027aee9a734ef58c335d2719c69 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:13:03 +0000 Subject: [PATCH 10/23] Add HBO --- docs/Radarr/recyclarr-config/remux_web_1080p.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Radarr/recyclarr-config/remux_web_1080p.yml b/docs/Radarr/recyclarr-config/remux_web_1080p.yml index ac3f0eaf3..7c60dc762 100644 --- a/docs/Radarr/recyclarr-config/remux_web_1080p.yml +++ b/docs/Radarr/recyclarr-config/remux_web_1080p.yml @@ -58,6 +58,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From db36bb591d6d438a62ad77b9acdfcd1b795a5eea Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:13:23 +0000 Subject: [PATCH 11/23] Add HBO --- docs/Radarr/recyclarr-config/remux_web_2160p.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Radarr/recyclarr-config/remux_web_2160p.yml b/docs/Radarr/recyclarr-config/remux_web_2160p.yml index 01ff2cb59..09763a1e8 100644 --- a/docs/Radarr/recyclarr-config/remux_web_2160p.yml +++ b/docs/Radarr/recyclarr-config/remux_web_2160p.yml @@ -73,6 +73,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From aeb0b0465e1f488eca2351a84268176be2a49b59 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:13:45 +0000 Subject: [PATCH 12/23] Add HBO --- docs/Radarr/recyclarr-config/uhd_bluray_web.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/Radarr/recyclarr-config/uhd_bluray_web.yml b/docs/Radarr/recyclarr-config/uhd_bluray_web.yml index dfbb27f88..3698c0c25 100644 --- a/docs/Radarr/recyclarr-config/uhd_bluray_web.yml +++ b/docs/Radarr/recyclarr-config/uhd_bluray_web.yml @@ -74,6 +74,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 6943402472ee3970bb27fa4988793e6d303770fc Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:14:22 +0000 Subject: [PATCH 13/23] Add HBO --- docs/SQP/yml/sqp-1.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/SQP/yml/sqp-1.yml b/docs/SQP/yml/sqp-1.yml index dc28cf4c2..762a2d732 100644 --- a/docs/SQP/yml/sqp-1.yml +++ b/docs/SQP/yml/sqp-1.yml @@ -77,6 +77,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 472629c9d42a08cff5ae591bce8e1fbb5db763b5 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:14:43 +0000 Subject: [PATCH 14/23] Add HBO --- docs/SQP/yml/sqp-2.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/SQP/yml/sqp-2.yml b/docs/SQP/yml/sqp-2.yml index e7cee1ea9..c8e063cb9 100644 --- a/docs/SQP/yml/sqp-2.yml +++ b/docs/SQP/yml/sqp-2.yml @@ -101,6 +101,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 835ec76689eebc0435731893e7119a31652fddc6 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:15:01 +0000 Subject: [PATCH 15/23] Add HBO --- docs/SQP/yml/sqp-3.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/SQP/yml/sqp-3.yml b/docs/SQP/yml/sqp-3.yml index 8a804323d..37e6cc8d6 100644 --- a/docs/SQP/yml/sqp-3.yml +++ b/docs/SQP/yml/sqp-3.yml @@ -98,6 +98,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 1c6cbcfa59b1101984af1557e9557dc227b9ba56 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:15:19 +0000 Subject: [PATCH 16/23] Add HBO --- docs/SQP/yml/sqp-4.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/SQP/yml/sqp-4.yml b/docs/SQP/yml/sqp-4.yml index 1d9df7f41..4d2621d82 100644 --- a/docs/SQP/yml/sqp-4.yml +++ b/docs/SQP/yml/sqp-4.yml @@ -97,6 +97,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From a2601201e0df57a9ed3da3041d35470a8a768004 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:15:37 +0000 Subject: [PATCH 17/23] Add HBO --- docs/SQP/yml/sqp-5.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/SQP/yml/sqp-5.yml b/docs/SQP/yml/sqp-5.yml index 90090db6a..6974ff0d6 100644 --- a/docs/SQP/yml/sqp-5.yml +++ b/docs/SQP/yml/sqp-5.yml @@ -100,6 +100,7 @@ radarr: - b3b3a6ac74ecbd56bcdbefa4799fb9df # AMZN - 40e9380490e748672c2522eaaeb692f7 # ATVP - 84272245b2988854bfb76a16e60baea5 # DSNP + - 509e5f41146e278f9eab1ddaceb34515 # HBO - 5763d1b0ce84aff3b21038eea8e9b8ad # HMAX - 526d445d4c16214309f0fd2b3be18a89 # Hulu - 170b1d363bd8516fbf3a3eb05d4faff6 # NF From 322f7e9a19c7a4e062a9d22797bf9cb7290054c2 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:18:17 +0000 Subject: [PATCH 18/23] Add HBO streaming service --- .../Radarr/Radarr-collection-of-custom-formats.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index dc8fefd8f..389592113 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -52,13 +52,14 @@ I also made 3 guides related to this one. | [Hybrid](#hybrid) | [BR-DISK](#br-disk) | [Remux Tier 01](#remux-tier-01) | [Amazon](#amzn) | | [Remaster](#remaster) | [LQ](#lq) | [Remux Tier 02](#remux-tier-02) | [Apple TV+](#atvp) | | [4K Remaster](#4k-remaster) | [3D](#3d) | [UHD Bluray Tier 01](#uhd-bluray-tier-01) | [Disney+](#dsnp) | -| [Special Edition](#special-edition) | [x265 (HD)](#x265-hd) | [UHD Bluray Tier 02](#uhd-bluray-tier-02) | [HBO Max](#hmax) | -| [Criterion Collection](#criterion-collection) | | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [Hulu](#hulu) | -| [Masters of Cinema](#masters-of-cinema) | | [HD Bluray Tier 01](#hd-bluray-tier-01) | [Netflix](#nf) | -| [Theatrical Cut](#theatrical-cut) | | [HD Bluray Tier 02](#hd-bluray-tier-02) | [Peacock TV](#pcok) | -| [IMAX](#imax) | | [WEB Tier 01](#web-tier-01) | [Paramount+](#pmtp) | -| [IMAX Enhanced](#imax-enhanced) | | [WEB Tier 02](#web-tier-02) | [Movies Anywhere](#ma) | -| [Open Matte](#open-matte) | | [WEB Tier 03](#web-tier-03) | [Pathe Thuis](#pathe) | +| [Special Edition](#special-edition) | [x265 (HD)](#x265-hd) | [UHD Bluray Tier 02](#uhd-bluray-tier-02) | [HBO](#hbo) | +| [Criterion Collection](#criterion-collection) | | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [HBO Max](#hmax) | +| [Masters of Cinema](#masters-of-cinema) | | [HD Bluray Tier 01](#hd-bluray-tier-01) | [Hulu](#hulu) | +| [Theatrical Cut](#theatrical-cut) | | [HD Bluray Tier 02](#hd-bluray-tier-02) | [Netflix](#nf) | +| [IMAX](#imax) | | [WEB Tier 01](#web-tier-01) | [Peacock TV](#pcok) | +| [IMAX Enhanced](#imax-enhanced) | | [WEB Tier 02](#web-tier-02) | [Paramount+](#pmtp) | +| [Open Matte](#open-matte) | | [WEB Tier 03](#web-tier-03) | [Movies Anywhere](#ma) | +| | | | [Pathe Thuis](#pathe) | | | | | [Bravia Core](#bcore) | | | | | [Stan](#stan) | From a693ad4881db02b984b541f11505894ac71d89cf Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:21:19 +0000 Subject: [PATCH 19/23] Add HBO --- includes/cf/radarr-streaming-services.md | 1 + 1 file changed, 1 insertion(+) diff --git a/includes/cf/radarr-streaming-services.md b/includes/cf/radarr-streaming-services.md index c058e8e75..0383e97bb 100644 --- a/includes/cf/radarr-streaming-services.md +++ b/includes/cf/radarr-streaming-services.md @@ -5,6 +5,7 @@ | [{{ radarr['cf']['atvp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#atvp) | 0 | {{ radarr['cf']['atvp']['trash_id'] }} | | [{{ radarr['cf']['bcore']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bcore) | {{ radarr['cf']['bcore']['trash_score'] }} | {{ radarr['cf']['bcore']['trash_id'] }} | | [{{ radarr['cf']['dsnp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dsnp) | 0 | {{ radarr['cf']['dsnp']['trash_id'] }} | + | [{{ radarr['cf']['hbo']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hbo) | 0 | {{ radarr['cf']['hbo']['trash_id'] }} | | [{{ radarr['cf']['hmax']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hmax) | 0 | {{ radarr['cf']['hmax']['trash_id'] }} | | [{{ radarr['cf']['hulu']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hulu) | 0 | {{ radarr['cf']['hulu']['trash_id'] }} | | [{{ radarr['cf']['ma']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#ma) | {{ radarr['cf']['ma']['trash_score'] }} | {{ radarr['cf']['ma']['trash_id'] }} | From 845f38259e33364b96722d9c8c95af13966138f0 Mon Sep 17 00:00:00 2001 From: yammes08 <111231042+yammes08@users.noreply.github.com> Date: Mon, 6 Feb 2023 19:26:25 +0000 Subject: [PATCH 20/23] Add missing comma --- docs/json/radarr/cf/hbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/json/radarr/cf/hbo.json b/docs/json/radarr/cf/hbo.json index 4591eb6ef..42f5fc38e 100644 --- a/docs/json/radarr/cf/hbo.json +++ b/docs/json/radarr/cf/hbo.json @@ -1,5 +1,5 @@ { - "trash_id": "509e5f41146e278f9eab1ddaceb34515" + "trash_id": "509e5f41146e278f9eab1ddaceb34515", "name": "HBO", "includeCustomFormatWhenRenaming": true, "specifications": [ From 354ab7f78eae92b683eb56d7e5d304cba5067626 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Tue, 7 Feb 2023 19:33:21 +0100 Subject: [PATCH 21/23] Fixed table formatting --- includes/cf/radarr-streaming-services.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cf/radarr-streaming-services.md b/includes/cf/radarr-streaming-services.md index 0383e97bb..ecb01c28c 100644 --- a/includes/cf/radarr-streaming-services.md +++ b/includes/cf/radarr-streaming-services.md @@ -5,7 +5,7 @@ | [{{ radarr['cf']['atvp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#atvp) | 0 | {{ radarr['cf']['atvp']['trash_id'] }} | | [{{ radarr['cf']['bcore']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#bcore) | {{ radarr['cf']['bcore']['trash_score'] }} | {{ radarr['cf']['bcore']['trash_id'] }} | | [{{ radarr['cf']['dsnp']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#dsnp) | 0 | {{ radarr['cf']['dsnp']['trash_id'] }} | - | [{{ radarr['cf']['hbo']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hbo) | 0 | {{ radarr['cf']['hbo']['trash_id'] }} | + | [{{ radarr['cf']['hbo']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hbo) | 0 | {{ radarr['cf']['hbo']['trash_id'] }} | | [{{ radarr['cf']['hmax']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hmax) | 0 | {{ radarr['cf']['hmax']['trash_id'] }} | | [{{ radarr['cf']['hulu']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#hulu) | 0 | {{ radarr['cf']['hulu']['trash_id'] }} | | [{{ radarr['cf']['ma']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#ma) | {{ radarr['cf']['ma']['trash_score'] }} | {{ radarr['cf']['ma']['trash_id'] }} | From 83dc3cb47a2b4402062716d5882e6f60b705b045 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Tue, 7 Feb 2023 19:33:49 +0100 Subject: [PATCH 22/23] added HBO description --- .../Radarr-collection-of-custom-formats.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index c3c8260c8..c9cd07bd9 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -1564,6 +1564,24 @@ I also made 3 guides related to this one. ------ +### HBO + +HBO + +??? question "HBO - [CLICK TO EXPAND]" + + [From Wikipedia, the free encyclopedia](https://en.wikipedia.org/wiki/HBO){:target="_blank" rel="noopener noreferrer"} + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/hbo.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ### HMAX HBO Max From a2348c969536f7bde0b1a55c94fc140101998a8f Mon Sep 17 00:00:00 2001 From: TRaSH Date: Tue, 7 Feb 2023 19:34:58 +0100 Subject: [PATCH 23/23] minor change to be consistent `[-_. ]` vs `[ ._-]` --- docs/Sonarr/Sonarr-Release-Profile-RegEx.md | 4 ++-- docs/json/radarr/cf/hbo.json | 2 +- docs/json/radarr/cf/hmax.json | 2 +- docs/json/sonarr/cf/hbo.json | 2 +- docs/json/sonarr/cf/hmax.json | 2 +- docs/json/sonarr/rp/streaming.json | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md index f7a9d4932..e9daa5b58 100644 --- a/docs/Sonarr/Sonarr-Release-Profile-RegEx.md +++ b/docs/Sonarr/Sonarr-Release-Profile-RegEx.md @@ -163,7 +163,7 @@ Add this to your `Preferred (3)` with a score of [90] ``` ```bash -/\b(hmax|hbom|hbo[-_. ]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i +/\b(hmax|hbom|hbo[ ._-]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i ``` Add this to your `Preferred (3)` with a score of [85] @@ -183,7 +183,7 @@ Add this to your `Preferred (3)` with a score of [75] ``` ```bash -/\b(hbo)(?![-_. ]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i +/\b(hbo)(?![ ._-]max)\b(?=[ ._-]web[ ._-]?(dl|rip)\b)/i ``` ```bash diff --git a/docs/json/radarr/cf/hbo.json b/docs/json/radarr/cf/hbo.json index 42f5fc38e..9fd54291c 100644 --- a/docs/json/radarr/cf/hbo.json +++ b/docs/json/radarr/cf/hbo.json @@ -9,7 +9,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + "value": "\\b(hbo)(?![ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { diff --git a/docs/json/radarr/cf/hmax.json b/docs/json/radarr/cf/hmax.json index 2030d7d5d..0c83fe0af 100644 --- a/docs/json/radarr/cf/hmax.json +++ b/docs/json/radarr/cf/hmax.json @@ -9,7 +9,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + "value": "\\b(hmax|hbom|hbo[ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { diff --git a/docs/json/sonarr/cf/hbo.json b/docs/json/sonarr/cf/hbo.json index 313702a60..fe8032d30 100644 --- a/docs/json/sonarr/cf/hbo.json +++ b/docs/json/sonarr/cf/hbo.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + "value": "\\b(hbo)(?![ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { diff --git a/docs/json/sonarr/cf/hmax.json b/docs/json/sonarr/cf/hmax.json index 0ec604400..22d470341 100644 --- a/docs/json/sonarr/cf/hmax.json +++ b/docs/json/sonarr/cf/hmax.json @@ -10,7 +10,7 @@ "negate": false, "required": true, "fields": { - "value": "\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" + "value": "\\b(hmax|hbom|hbo[ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)" } }, { diff --git a/docs/json/sonarr/rp/streaming.json b/docs/json/sonarr/rp/streaming.json index 51aee5d11..f82bb70cf 100644 --- a/docs/json/sonarr/rp/streaming.json +++ b/docs/json/sonarr/rp/streaming.json @@ -22,7 +22,7 @@ "/\\b(dsnp|dsny|disney|Disney\\+)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(nf|netflix)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(qibi|quibi)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", - "/\\b(hmax|hbom|hbo[-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" + "/\\b(hmax|hbom|hbo[ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i" ] }, { @@ -36,7 +36,7 @@ "score": 75, "terms": [ "/\\b(dcu)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", - "/\\b(hbo)(?![-_. ]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", + "/\\b(hbo)(?![ ._-]max)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(red)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(it)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i", "/\\b(pmtp)\\b(?=[ ._-]web[ ._-]?(dl|rip)\\b)/i",