From b874552cea5f2442b5189cf5b72dfb040f4102cd Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 01:17:16 +0100 Subject: [PATCH 1/7] feat(radarr): add `Upscaled` CF --- docs/json/radarr/cf/upscaled.json | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 docs/json/radarr/cf/upscaled.json diff --git a/docs/json/radarr/cf/upscaled.json b/docs/json/radarr/cf/upscaled.json new file mode 100644 index 000000000..8e6cbeff7 --- /dev/null +++ b/docs/json/radarr/cf/upscaled.json @@ -0,0 +1,36 @@ +{ + "trash_id": "bfd8eb01832d646a0a89c4deb46f8564", + "trash_score": "-10000", + "trash_regex": "https://regex101.com/r/HBqWdQ/1", + "name": "Upscaled", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "Upscaled", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(Up(s(caled|UHD)|(Rez)))\\b" + } + }, + { + "name": "AI Upscales", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "^(?=.*\\b(HEVC)\\b)(?=.*\\b(AI)\\b)" + } + }, + { + "name": "TheUpscaler", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(The[ ._-]Upscaler)\\b" + } + } + ] +} From 988687afe6077d6c85807c294275eaa40dd71327 Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 01:28:02 +0100 Subject: [PATCH 2/7] feat(radarr): added `Upscaled` CF to Radarr guide --- .../Radarr-collection-of-custom-formats.md | 18 +++++++++++++++++- includes/cf/radarr-unwanted.md | 2 ++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index c9cd07bd9..fb8cdeca2 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -53,7 +53,7 @@ I also made 3 guides related to this one. | [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](#hbo) | -| [Criterion Collection](#criterion-collection) | | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [HBO Max](#hmax) | +| [Criterion Collection](#criterion-collection) | [Upscaled](#upscaled) | [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) | @@ -964,6 +964,22 @@ I also made 3 guides related to this one. ------ +### Upscaled + +??? question "Upscaled - [CLICK TO EXPAND]" + + This custom format is used to prevent Radarr from grabing upscaled releases. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/upscaled.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ## Optional ------ diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index be740178b..b6a5c179d 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -5,6 +5,7 @@ | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_score'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | ------ @@ -17,3 +18,4 @@ !!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? + - **{{ radarr['cf']['upscaled']['name'] }}:** A custom format to prevent Radarr from grabing upscalded releases. From 681c965cc6526c89c1ee81c001575b88e282ac38 Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 01:17:16 +0100 Subject: [PATCH 3/7] feat(radarr): add `Upscaled` CF --- docs/json/radarr/cf/upscaled.json | 36 +++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 docs/json/radarr/cf/upscaled.json diff --git a/docs/json/radarr/cf/upscaled.json b/docs/json/radarr/cf/upscaled.json new file mode 100644 index 000000000..8e6cbeff7 --- /dev/null +++ b/docs/json/radarr/cf/upscaled.json @@ -0,0 +1,36 @@ +{ + "trash_id": "bfd8eb01832d646a0a89c4deb46f8564", + "trash_score": "-10000", + "trash_regex": "https://regex101.com/r/HBqWdQ/1", + "name": "Upscaled", + "includeCustomFormatWhenRenaming": false, + "specifications": [ + { + "name": "Upscaled", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(Up(s(caled|UHD)|(Rez)))\\b" + } + }, + { + "name": "AI Upscales", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "^(?=.*\\b(HEVC)\\b)(?=.*\\b(AI)\\b)" + } + }, + { + "name": "TheUpscaler", + "implementation": "ReleaseTitleSpecification", + "negate": false, + "required": false, + "fields": { + "value": "\\b(The[ ._-]Upscaler)\\b" + } + } + ] +} From 8cfdf4cb676aef4064022ab941959e99045f11bb Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 01:28:02 +0100 Subject: [PATCH 4/7] feat(radarr): added `Upscaled` CF to Radarr guide --- .../Radarr-collection-of-custom-formats.md | 18 +++++++++++++++++- includes/cf/radarr-unwanted.md | 2 ++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index c9cd07bd9..fb8cdeca2 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -53,7 +53,7 @@ I also made 3 guides related to this one. | [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](#hbo) | -| [Criterion Collection](#criterion-collection) | | [UHD Bluray Tier 03](#uhd-bluray-tier-03) | [HBO Max](#hmax) | +| [Criterion Collection](#criterion-collection) | [Upscaled](#upscaled) | [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) | @@ -964,6 +964,22 @@ I also made 3 guides related to this one. ------ +### Upscaled + +??? question "Upscaled - [CLICK TO EXPAND]" + + This custom format is used to prevent Radarr from grabing upscaled releases. + +??? example "JSON - [CLICK TO EXPAND]" + + ```json + [[% filter indent(width=4) %]][[% include 'json/radarr/cf/upscaled.json' %]][[% endfilter %]] + ``` + +[TOP](#index) + +------ + ## Optional ------ diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index be740178b..b6a5c179d 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -5,6 +5,7 @@ | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_score'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | ------ @@ -17,3 +18,4 @@ !!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? + - **{{ radarr['cf']['upscaled']['name'] }}:** A custom format to prevent Radarr from grabing upscalded releases. From c55015b37eee7a6c9090690e30ca245ca591a9fb Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sat, 18 Feb 2023 13:46:01 +0100 Subject: [PATCH 5/7] Fixed: Table formatting --- includes/cf/radarr-unwanted.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index b6a5c179d..7eca61983 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -1,11 +1,11 @@ ??? abstract "Unwanted - [CLICK TO EXPAND]" - | Custom Format | Score | Trash ID | - | ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------- | ------------------------------------------------- | - | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | - | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | - | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | - | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | - | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_score'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | + | Custom Format | Score | Trash ID | + | ------------------------------------------------------------------------------------------------------- | --------------------------------------------- | ------------------------------------------ | + | [{{ radarr['cf']['br-disk']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#br-disk) | {{ radarr['cf']['br-disk']['trash_score'] }} | {{ radarr['cf']['br-disk']['trash_id'] }} | + | [{{ radarr['cf']['lq']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#lq) | {{ radarr['cf']['lq']['trash_score'] }} | {{ radarr['cf']['lq']['trash_id'] }} | + | [{{ radarr['cf']['x265-hd']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-hd) :warning: | {{ radarr['cf']['x265-hd']['trash_score'] }} | {{ radarr['cf']['x265-hd']['trash_id'] }} | + | [{{ radarr['cf']['3d']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#3d) | {{ radarr['cf']['3d']['trash_score'] }} | {{ radarr['cf']['3d']['trash_id'] }} | + | [{{ radarr['cf']['upscaled']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#upscaled) | {{ radarr['cf']['upscaled']['trash_score'] }} | {{ radarr['cf']['upscaled']['trash_id'] }} | ------ From 1b3e935df5e9da3119ca294308756ad762f53d21 Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 13:51:40 +0100 Subject: [PATCH 6/7] feat(radarr): fix spelling mistake --- includes/cf/radarr-unwanted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/cf/radarr-unwanted.md b/includes/cf/radarr-unwanted.md index b6a5c179d..0c1945fba 100644 --- a/includes/cf/radarr-unwanted.md +++ b/includes/cf/radarr-unwanted.md @@ -18,4 +18,4 @@ !!! Danger "Don't use this together with [{{ radarr['cf']['x265-no-hdrdv']['name'] }}](/Radarr/Radarr-collection-of-custom-formats/#x265-no-hdrdv), Only ever include one of them :warning:" - **{{ radarr['cf']['3d']['name'] }}:** Is 3D still a thing for home use ? - - **{{ radarr['cf']['upscaled']['name'] }}:** A custom format to prevent Radarr from grabing upscalded releases. + - **{{ radarr['cf']['upscaled']['name'] }}:** A custom format to prevent Radarr from grabbing upscaled releases. From 318d7e6583dea5519db039b3fb99971e4892cf1e Mon Sep 17 00:00:00 2001 From: nuxen <47067662+nuxencs@users.noreply.github.com> Date: Sat, 18 Feb 2023 13:53:11 +0100 Subject: [PATCH 7/7] feat(radarr): fix another spelling mistake --- docs/Radarr/Radarr-collection-of-custom-formats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Radarr/Radarr-collection-of-custom-formats.md b/docs/Radarr/Radarr-collection-of-custom-formats.md index fb8cdeca2..61bab29d3 100644 --- a/docs/Radarr/Radarr-collection-of-custom-formats.md +++ b/docs/Radarr/Radarr-collection-of-custom-formats.md @@ -968,7 +968,7 @@ I also made 3 guides related to this one. ??? question "Upscaled - [CLICK TO EXPAND]" - This custom format is used to prevent Radarr from grabing upscaled releases. + This custom format is used to prevent Radarr from grabbing upscaled releases. ??? example "JSON - [CLICK TO EXPAND]"