From cc3f844ea703ffd79300e6931d782da3d2790fff Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sat, 22 Aug 2026 15:30:19 +0000 Subject: [PATCH] Add GrapeHD to 720p Quality Tier 5 --- ...262.add-grapehd-to-720p-quality-tier-5.sql | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 ops/262.add-grapehd-to-720p-quality-tier-5.sql diff --git a/ops/262.add-grapehd-to-720p-quality-tier-5.sql b/ops/262.add-grapehd-to-720p-quality-tier-5.sql new file mode 100644 index 00000000..16465672 --- /dev/null +++ b/ops/262.add-grapehd-to-720p-quality-tier-5.sql @@ -0,0 +1,28 @@ +-- @operation: export +-- @entity: batch +-- @name: Add GrapeHD to 720p Quality Tier 5 +-- @exportedAt: 2026-08-22T15:30:18.031Z +-- @opIds: 13379, 13380, 13381 + +-- --- BEGIN op 13379 ( create regular_expression "GrapeHD" ) +insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('GrapeHD', '(?<=^|[\s.-])0BSiDiAN\b', NULL, NULL); + +insert into "tags" ("name") values ('Bluray') on conflict ("name") do nothing; + +INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('GrapeHD', 'Bluray'); + +insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing; + +INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('GrapeHD', 'Release Group'); +-- --- END op 13379 + +-- --- BEGIN op 13380 ( update regular_expression "GrapeHD" ) +update "regular_expressions" set "pattern" = '(?<=^|[\s.-])GrapeHD\b' where "name" = 'GrapeHD' and "pattern" = '(?<=^|[\s.-])0BSiDiAN\b'; +-- --- END op 13380 + +-- --- BEGIN op 13381 ( 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', 'GrapeHD', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('720p Quality Tier 5', 'GrapeHD', 'GrapeHD'); +-- --- END op 13381