New Profile: 2160p Balanced (#20)

tweak(regex): Better descriptions

tweak(profile): Modified Blu-ray behavior for Quality profiles
- Score set to 10, so that non reputable encodes are not ranked above web-dls
- Quality tier scores increased to make up for this

create(profile): Initialise Profile: 2160p Balanced
- New CF: 2160p Encode - used to negate any encodes at 4k
- New CF: Lossless Audio (1080p) - used to negate non-reputable encodes w/ lossless audio from overtaking wanted WEB-DLs
- New Profile: 2160p Balanced - grab 2160p WEB-DLs with fallback to 1080p Quality
This commit is contained in:
santiagosayshey
2025-01-19 12:47:18 +10:30
committed by GitHub
parent a66866d2a3
commit 1a2bdebd2c
9 changed files with 330 additions and 27 deletions

View File

@@ -1,6 +1,13 @@
name: 10bit-HDS
pattern: (?<=^|[\s.-])10bit-HDS\b
description: ''
description: 'Matches the release group `10bit-HDS` only if it is:
- Preceded by the start of the string (`^`), a whitespace character (`\s`), a period
(`.`), or a hyphen (`-`).
- Followed by a word boundary (`\b`), ensuring it ends cleanly without being part
of a longer word. '
tags:
- Release Group
tests: null
tests: []

View File

@@ -1,6 +1,12 @@
name: 3D
pattern: \b((bluray|bd)?3d|sbs|half[ .-]ou|half[ .-]sbs)\b
description: ''
description: 'Matches terms related to 3D video formats:
- `bluray3d` or `bd3d` (optional `bluray` or `bd` followed by `3d`).
- `sbs` (side-by-side).
- `half ou` or `half sbs` with space (` `), dot (`.`), or hyphen (`-`) as separators.'
tags:
- Enhancement
- Unwanted

View File

@@ -1,6 +1,13 @@
name: 4K4U
pattern: (?<=^|[\s.-])4K4U\b
description: ''
description: 'Matches the release group `4K4U` only if it is:
- Preceded by the start of the string (`^`), a whitespace character (`\s`), a period
(`.`), or a hyphen (`-`).
- Followed by a word boundary (`\b`), ensuring it ends cleanly without being part
of a longer word. '
tags:
- Release Group
tests: null
tests: []