Compare commits

..

3 Commits

Author SHA1 Message Date
Seraphys
c0cdc5212e Prevent Yogi Double Matching 2026-03-17 22:20:15 -05:00
Seraphys
286e6ce0b1 Add ViSUM to 1080p Quality Tier 5 2026-03-15 09:52:13 -05:00
Seraphys
c920863bee Add iLoveHD to 1080p Quality Tier 5 2026-03-14 19:12:17 -05:00
3 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
-- @operation: export
-- @entity: batch
-- @name: Add iLoveHD to 1080p Quality Tier 5
-- @exportedAt: 2026-03-15T00:12:16.337Z
-- @opIds: 3005, 3006, 3007
-- --- BEGIN op 3005 ( create regular_expression "iLoveHD" )
insert into "regular_expressions" ("name", "pattern", "description", "regex101_id") values ('iLoveHD', '(?<=^|[\s.-])ADE\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 ('iLoveHD', 'Bluray');
insert into "tags" ("name") values ('Release Group') on conflict ("name") do nothing;
INSERT INTO regular_expression_tags (regular_expression_name, tag_name) VALUES ('iLoveHD', 'Release Group');
-- --- END op 3005
-- --- BEGIN op 3006 ( update regular_expression "iLoveHD" )
update "regular_expressions" set "pattern" = '(?<=^|[\s.-])iLoveHD\b' where "name" = 'iLoveHD' and "pattern" = '(?<=^|[\s.-])ADE\b';
-- --- END op 3006
-- --- BEGIN op 3007 ( 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', 'iLoveHD', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'iLoveHD', 'iLoveHD');
-- --- END op 3007

View File

@@ -0,0 +1,12 @@
-- @operation: export
-- @entity: batch
-- @name: Add ViSUM to 1080p Quality Tier 5
-- @exportedAt: 2026-03-15T14:52:11.983Z
-- @opIds: 3009
-- --- BEGIN op 3009 ( 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', 'ViSUM', 'release_group', 'all', 0, 0);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Quality Tier 5', 'ViSUM', 'ViSUM');
-- --- END op 3009

View File

@@ -0,0 +1,47 @@
-- @operation: export
-- @entity: batch
-- @name: Prevent Yogi Double Matching
-- @exportedAt: 2026-03-18T03:20:13.732Z
-- @opIds: 3011, 3012, 3013, 3014, 3015, 3016
-- --- BEGIN op 3011 ( update custom_format "1080p Efficient Movie Bluray Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Efficient Movie Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient Movie Bluray Tier 1', 'Not HONE', 'HONE');
-- --- END op 3011
-- --- BEGIN op 3012 ( update custom_format "1080p Efficient Movie WEB Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Efficient Movie WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient Movie WEB Tier 1', 'Not HONE', 'HONE');
-- --- END op 3012
-- --- BEGIN op 3013 ( update custom_format "1080p Efficient TV Bluray Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Efficient TV Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient TV Bluray Tier 1', 'Not HONE', 'HONE');
-- --- END op 3013
-- --- BEGIN op 3014 ( update custom_format "1080p Efficient TV WEB Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('1080p Efficient TV WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('1080p Efficient TV WEB Tier 1', 'Not HONE', 'HONE');
-- --- END op 3014
-- --- BEGIN op 3015 ( update custom_format "2160p Efficient TV Bluray Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('2160p Efficient TV Bluray Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('2160p Efficient TV Bluray Tier 1', 'Not HONE', 'HONE');
-- --- END op 3015
-- --- BEGIN op 3016 ( update custom_format "2160p Efficient TV WEB Tier 1" )
INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required)
VALUES ('2160p Efficient TV WEB Tier 1', 'Not HONE', 'release_title', 'all', 1, 1);
INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('2160p Efficient TV WEB Tier 1', 'Not HONE', 'HONE');
-- --- END op 3016