From cfd9b29682bcc717cb82321c39755bc8affa70f5 Mon Sep 17 00:00:00 2001 From: Seraphys Date: Tue, 1 Sep 2026 22:15:48 +0000 Subject: [PATCH] Add aBa to 1080p Quality Tier 6 --- ops/337.add-aba-to-1080p-quality-tier-6.sql | 35 +++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 ops/337.add-aba-to-1080p-quality-tier-6.sql diff --git a/ops/337.add-aba-to-1080p-quality-tier-6.sql b/ops/337.add-aba-to-1080p-quality-tier-6.sql new file mode 100644 index 00000000..4ca404bc --- /dev/null +++ b/ops/337.add-aba-to-1080p-quality-tier-6.sql @@ -0,0 +1,35 @@ +-- @operation: export +-- @entity: batch +-- @name: Add aBa to 1080p Quality Tier 6 +-- @exportedAt: 2026-09-01T22:15:46.777Z +-- @opIds: 14253, 14254, 14255, 14256 + +-- --- BEGIN op 14253 ( create regular_expression "aBa" ) +insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('aBa', '(?<=^|[\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 ('aBa', 'Bluray'); + +insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing; + +INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('aBa', 'Release Group'); +-- --- END op 14253 + +-- --- BEGIN op 14254 ( update regular_expression "aBa" ) +update "regular_expressions" set "pattern" = '(?<=^|[\s.-])aBa\b' where "name" = 'aBa' and "pattern" = '(?<=^|[\s.-])0BSiDiAN\b'; +-- --- END op 14254 + +-- --- BEGIN op 14255 ( update custom_format "1080p Quality Tier 6" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('1080p Quality Tier 6', 'aBa', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 6', 'aBa', 'aBa'); +-- --- END op 14255 + +-- --- BEGIN op 14256 ( update custom_format "1080p Quality Tier 6 (Efficient)" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('1080p Quality Tier 6 (Efficient)', 'aBa', 'release_group', 'all', 0, 0); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 6 (Efficient)', 'aBa', 'aBa'); +-- --- END op 14256