From 8c7f01f78069b9f001d76545db3427a5d4a38980 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 2 Sep 2025 19:51:55 -0500 Subject: [PATCH] tweak(format): Revert AI Combination --- custom_formats/Upscale.yml | 20 ++++++++++++++++++++ custom_formats/Upscaled.yml | 2 +- regex_patterns/AI Movies.yml | 7 +++++++ regex_patterns/AI TV.yml | 7 +++++++ regex_patterns/AI Upscale.yml | 7 ------- 5 files changed, 35 insertions(+), 8 deletions(-) create mode 100644 custom_formats/Upscale.yml create mode 100644 regex_patterns/AI Movies.yml create mode 100644 regex_patterns/AI TV.yml delete mode 100644 regex_patterns/AI Upscale.yml diff --git a/custom_formats/Upscale.yml b/custom_formats/Upscale.yml new file mode 100644 index 0000000..f3bb6b6 --- /dev/null +++ b/custom_formats/Upscale.yml @@ -0,0 +1,20 @@ +name: Upscale +description: 'Matches the ''Upscaled'' regex pattern + + + Radarr Version' +tags: +- Banned +- Enhancement +conditions: +- name: Upscaled + negate: false + pattern: Upscaled + required: false + type: release_title +- name: AI Movies + negate: false + pattern: AI Movies + required: false + type: release_title +tests: [] diff --git a/custom_formats/Upscaled.yml b/custom_formats/Upscaled.yml index 8db8e2a..d162a03 100644 --- a/custom_formats/Upscaled.yml +++ b/custom_formats/Upscaled.yml @@ -14,7 +14,7 @@ conditions: type: release_title - name: AI TV negate: false - pattern: AI Upscale + pattern: AI TV required: false type: release_title tests: [] diff --git a/regex_patterns/AI Movies.yml b/regex_patterns/AI Movies.yml new file mode 100644 index 0000000..d26137f --- /dev/null +++ b/regex_patterns/AI Movies.yml @@ -0,0 +1,7 @@ +name: AI Movies +pattern: (?<=\b[12]\d{3}\b).*(\b(AI)\b) +description: Matches AI Upscales +tags: +- Enhancement +- Banned +tests: [] diff --git a/regex_patterns/AI TV.yml b/regex_patterns/AI TV.yml new file mode 100644 index 0000000..e6d198d --- /dev/null +++ b/regex_patterns/AI TV.yml @@ -0,0 +1,7 @@ +name: AI TV +pattern: (?<=\bS\d+\b).*(\b(AI)\b) +description: Matches AI Upscales +tags: +- Enhancement +- Banned +tests: [] diff --git a/regex_patterns/AI Upscale.yml b/regex_patterns/AI Upscale.yml deleted file mode 100644 index 95be14a..0000000 --- a/regex_patterns/AI Upscale.yml +++ /dev/null @@ -1,7 +0,0 @@ -name: AI Upscale -pattern: \b(?:[12]\d{3}|S\d{1,2}(?:E\d{1,2})?)\b.*?\b(AI)\b -description: Matches AI Upscales -tags: -- Enhancement -- Banned -tests: []