In the latest release, there were a bunch of changes to the automation UI to make them easier to parse as a human reader. Great change overall, it does make it much easier to see what things are doing at a glance.
I wanted to ask about the “Not” condition’s streamlined text specifically:
“Test if none of 4 conditions match” as shown in the above example.
Is this accurate? My understanding of the behavior of this condition is that “Test if not all of 4 conditions match” would be correct instead (because the collection of conditions within “Not” are implicitly logically ANDed with each other).
To get a “Test if none of 4 conditions match” I would expect I would need to put an “Or” condition inside the “Not” condition, and put all the sub-conditions within that “Or” (so they would be logically ORed and then the result of that inverted).