From c4f881a4d2bdb5a6ff6ca5e7e23d6fe68ca1cfdc Mon Sep 17 00:00:00 2001 From: Seraphys Date: Mon, 15 Jun 2026 15:27:15 -0500 Subject: [PATCH] Add HDR/+ Negations to Dolby Vision (Without Fallback) --- ...tions-to-dolby-vision-without-fallback.sql | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 ops/182.add-hdr-negations-to-dolby-vision-without-fallback.sql diff --git a/ops/182.add-hdr-negations-to-dolby-vision-without-fallback.sql b/ops/182.add-hdr-negations-to-dolby-vision-without-fallback.sql new file mode 100644 index 00000000..4e976827 --- /dev/null +++ b/ops/182.add-hdr-negations-to-dolby-vision-without-fallback.sql @@ -0,0 +1,19 @@ +-- @operation: export +-- @entity: batch +-- @name: Add HDR/+ Negations to Dolby Vision (Without Fallback) +-- @exportedAt: 2026-06-15T20:27:13.107Z +-- @opIds: 11170, 11171 + +-- --- BEGIN op 11170 ( update custom_format "Dolby Vision (Without Fallback)" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('Dolby Vision (Without Fallback)', 'HDR', 'release_title', 'all', 1, 1); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('Dolby Vision (Without Fallback)', 'HDR', 'HDR'); +-- --- END op 11170 + +-- --- BEGIN op 11171 ( update custom_format "Dolby Vision (Without Fallback)" ) +INSERT INTO custom_format_conditions (custom_format_name, name, type, arr_type, negate, required) +VALUES ('Dolby Vision (Without Fallback)', 'HDR10+', 'release_title', 'all', 1, 1); + +INSERT INTO condition_patterns (custom_format_name, condition_name, regular_expression_name) VALUES ('Dolby Vision (Without Fallback)', 'HDR10+', 'HDR10+'); +-- --- END op 11171