You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
render_criteria works a little differently now:
Using render_criteria (and render-anti-criteria) on root blocks is now supported (#37). This was possible before but not really useful because you had to have the same criteria for all the blocks underneath it anyway.
Old: If any block in the chain meets criteria, then draw.
New: If root block doesn't meet criteria, then don't draw. If root block does mete criteria, but no child blocks do, then don't draw.
Add render_anti_criteria which allows you to tell blocks to draw only when a criteria is not present. (see Blocks documentation for more information.
When loading config, we now validate that all blocks have different names to make sure the config is written correctly.
Document how to send progress data to ProgressBlock.