All Versions
24
Latest Version
Avg Release Cycle
55 days
Latest Release
1247 days ago

Changelog History
Page 3

  • v4.2.0 Changes

    January 09, 2018

    1 - Different view hierarchies

    Before the == wasn't working if views weren't on the same Z-index in the view hierarchy.
    It was blind taking the first argument's superview.
    ๐Ÿฑ Now the == operator is smart enough to grab the closest common ancestor ๐Ÿค“

    2 - Reflexivity

    The way it was before, the == operator wasn't reflexive.
    Meaning

    view.Width == contentView.WidthcontentView.Width == view.Width
    

    were not generating the same constraint behind the hood.
    Mathematically speaking this was quite misleading.

    Thanks to fix we can write interchageably :

    avatar.Top == photo.Top + 10photo.Top + 10 == avatar.Top
    

    3- Re-opening Layout([array]) overload

    Some needed it for dynamic layout so it's back :)

  • v4.1.0 Changes

    November 20, 2017

    โž• Added

    • ๐Ÿ‘ UILayoutSupport & UILayoutGuide are now supported in Equation base api.
  • v3.2.0 Changes

    June 14, 2017

    ๐Ÿ”„ Changed

    • Size constraints such as width and height can now be added without the need for a superview.

    โž• Added

    • ๐Ÿ†• New leadingConstraint & trailingConstraint property

    • ๐Ÿš€ Kudos to @trupin and @cowgp for this release ๐ŸŽ‰

  • v3.1.4 Changes

    June 14, 2017

    ๐Ÿ”„ Changed

    • Built with Xcode 8.3.1