All Versions
10
Latest Version
Avg Release Cycle
29 days
Latest Release
3088 days ago

Changelog History

  • v2.0.8

    November 02, 2015
  • v2.0.7

    October 07, 2015
  • v2.0.6

    September 15, 2015
  • v2.0.5

    September 02, 2015
  • v2.0.3 Changes

    July 22, 2015

    ๐Ÿ†• New Features

    • โž• Added left, right and center options to keepView:onPage: and keepView:onPages: to add more fine-tuned AutoLayout control.
    • โž• Added IFTTTPathPositionAnimation to animate a view moving along a bezier path, as seen in the paper airplane animation in the demo app.

    ๐Ÿ†• New Demo App

    • โšก๏ธ Major update to the JazzHands Demo App to show off our new animations.

    ๐Ÿ› Bug Fix

    • ๐Ÿ›  Fixed a bug in the Filmstrip when interpolating between black/white and other colors, and optimized performance of the Filmstrip by removing runtime type checks. Thanks to @RodolfoAntonici and @gazsp for the detective work on this!
  • v2.0.2

    July 08, 2015
  • v2.0.1

    July 08, 2015
  • v2.0.0 Changes

    June 22, 2015

    JazzHands 2.0!

    • โšก๏ธ Updated to work better with AutoLayout with new types of constraint animations
    • โž• Added a new IFTTTAnimatedPagingScrollViewController for quick-start AutoLayout-friendly animated paging scroll view animations.
    • โž• Added new keepView:onPage and keepView:onPages methods for much more simplicity in animating view positions on paging scrollviews, and much easier AutoLayout-friendly scrollviews.
    • โšก๏ธ Updated Demo app to show how to create a fully AutoLayout-friendly paging animated scrollview, perfect for use with rotation or the new iOS9 Split Screen multitasking.
    • ๐Ÿ”„ Changed to simpler syntax for adding keyframes
    • โšก๏ธ Updated to animate CGFloat times, to simplify keyframe times and work more smoothly on Retina displays.
    • Switched from a pre-generated array of interpolated animation values to interpolating at any point between keyframes on demand, for faster animation creation and far fewer allocations when adding keyframes.
    • Replaced IFTTTAngleAnimation with IFTTTRotationAnimation, which takes degrees instead of radians.
    • ๐Ÿ›  Fixed Transform animations to work together. Now IFTTTScaleAnimation, IFTTTRotationAnimation, and IFTTTTranslationAnimation can all be used on the same view without conflicting.
    • โœ… Increased unit test coverage.
    • ๐Ÿ‘€ Made IFTTTAnimation easy to subclass with your own custom animation types (see MyCustomAnimation in the Demo app for an example of how easy this is).
    • โž• Added Interpolatable protocol to define how to interpolate between values of different types.

    ๐Ÿ†• New Animations

    • โž• Added IFTTTFillColorAnimation, IFTTTStrokeStartAnimation, and IFTTTStrokeEndAnimation - thanks @pNre!
    • โž• Added IFTTTTextColorAnimation - thanks @revolter!
  • v0.2.1 Changes

    March 11, 2015

    โž• Added IFTTTCornerRadiusAnimation.

  • v0.2.0 Changes

    February 16, 2015
    • ๐Ÿ†• New easing functions for fine-grained control of your keyframes
    • ๐Ÿ‘Œ Improved support for storyboards in IFTTTAnimatedScrollViewController