From 06ad6c515a90909e8fa16f4f79cb4c96eedde0ac Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 17 Aug 2026 01:50:44 +0000 Subject: [PATCH] Add CRiME to 1080p Quality Tier 5 --- ops/218.add-crime-to-1080p-quality-tier-5.sql | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 ops/218.add-crime-to-1080p-quality-tier-5.sql diff --git a/ops/218.add-crime-to-1080p-quality-tier-5.sql b/ops/218.add-crime-to-1080p-quality-tier-5.sql new file mode 100644 index 00000000..b0fa9b50 --- /dev/null +++ b/ops/218.add-crime-to-1080p-quality-tier-5.sql @@ -0,0 +1,35 @@ +-- @operation: export +-- @entity: batch +-- @name: Add CRiME to 1080p Quality Tier 5 +-- @exportedAt: 2026-08-17T01:50:43.009Z +-- @opIds: 13114, 13115, 13116, 13117 + +-- --- BEGIN op 13114 ( create regular_expression "CRiME" ) +insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('CRiME', '(?<=^|[\s.-])BakedFEL\b', 'Matches "BakedFEL" when preceded by whitespace, a hyphen or dot', NULL); + +insert into "tags" ("name") values ('Bluray') on conflict ("name") do nothing; + +INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('CRiME', 'Bluray'); + +insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing; + +INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('CRiME', 'Release Group'); +-- --- END op 13114 + +-- --- BEGIN op 13115 ( update regular_expression "CRiME" ) +update "regular_expressions" set "pattern" = '(?<=^|[\s.-])CRiME\b' where "name" = 'CRiME' and "pattern" = '(?<=^|[\s.-])BakedFEL\b'; +-- --- END op 13115 + +-- --- BEGIN op 13116 ( update custom_format "1080p Quality Tier 5" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('1080p Quality Tier 5', 'CRiME', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'CRiME', 'CRiME'); +-- --- END op 13116 + +-- --- BEGIN op 13117 ( update custom_format "720p Quality Tier 5" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('720p Quality Tier 5', 'CRiME', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('720p Quality Tier 5', 'CRiME', 'CRiME'); +-- --- END op 13117