Schema version 11.3.0
Incompatible schema changes
None.
Backwards-compatible schema changes
- As an alternative to naming all pixel keys, one can now define pixel groups either with the keyword
all
or with an object of XYZ/name constraints. See matrix structure docs and following examples:
"matrix": {
"pixelCount": [12, 1, 1],
"pixelGroups": {
"Master": "all",
"1/3": { "x": ["<=4"] },
"2/3": { "x": [">=5", "<=8"] },
"3/3": { "x": [">=9"] },
"Outer Thirds": ["1", "2", "3", "4", "9", "10", "11", "12"]
}
}
"matrix": {
"pixelKeys": [
[
["A1", "B1", "C1", "C2", "B2", "A2"]
]
],
"pixelGroups": {
"A": { "name": ["^A[1-2]$"] },
"B": { "name": ["^B[1-2]$"] },
"C": { "name": ["^C[1-2]$"] }
}
}
Bugfixes
None.