From 60d50b664c0d9ea9d9d042c2859e659a9a33b43e Mon Sep 17 00:00:00 2001 From: Seraphys Date: Sun, 26 Apr 2026 08:17:14 -0500 Subject: [PATCH] Tweak PQ & HLG --- ops/125.tweak-pq-hlg.sql | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 ops/125.tweak-pq-hlg.sql diff --git a/ops/125.tweak-pq-hlg.sql b/ops/125.tweak-pq-hlg.sql new file mode 100644 index 00000000..080be8b0 --- /dev/null +++ b/ops/125.tweak-pq-hlg.sql @@ -0,0 +1,45 @@ +-- @operation: export +-- @entity: batch +-- @name: Tweak PQ & HLG +-- @exportedAt: 2026-04-26T13:17:13.306Z +-- @opIds: 7972, 7973, 7974, 7975 + +-- --- BEGIN op 7972 ( update custom_format "HLG" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'HLG' + AND name = 'Not HDR' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 1 + AND required = 1; +-- --- END op 7972 + +-- --- BEGIN op 7973 ( update custom_format "HLG" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'HLG' + AND name = 'Not HDR10' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 1 + AND required = 1; +-- --- END op 7973 + +-- --- BEGIN op 7974 ( update custom_format "PQ" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'PQ' + AND name = 'HDR' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 1 + AND required = 1; +-- --- END op 7974 + +-- --- BEGIN op 7975 ( update custom_format "PQ" ) +DELETE FROM custom_format_conditions + WHERE custom_format_name = 'PQ' + AND name = 'Not HDR10' + AND type = 'release_title' + AND arr_type = 'all' + AND negate = 1 + AND required = 1; +-- --- END op 7975