All Versions
26
Latest Version
Avg Release Cycle
78 days
Latest Release
-

Changelog History
Page 2

  • v1.6.2 Changes

    November 10, 2017
    • ๐Ÿ– Handle iOS 11 safeAreaInsets.
    • ๐Ÿ›  Fix issue #302: Right Buttons are covered iPhone X when landscape.
    • ๐Ÿšš Use availability checks for Objective-C to remove some warings in XCode 9.
  • v1.6.1 Changes

    • ๐Ÿ›  Fix issue #294: iOS 11 crash.
  • v1.6.0 Changes

    • ๐Ÿ›  Fix glitch when dragging before animation completes.
    • ๐Ÿ›  Fix cell separator overlap when swiping.
    • โž• Add buttonsDistance property to MGSwipeSettings: allows to control distance between the buttons.
    • โž• Add MGSwipeExpansionLayoutNone type that allows not to performont button layout in expansions.
    • ๐Ÿ‘Œ Improved AppExtension and RTL language support.
    • ๐Ÿ‘Œ Improved Swift interoperation.
  • v1.5.6 Changes

    • ๐Ÿ‘Œ Improve iOS 10.0 support
    • Objective-C nullable annotations to improve Swift 3.0 interoperation. Add Swift 3.0 sample.
    • ๐Ÿ‘Œ Improve accesibility implementation to allow recording UI Tests
    • โž• Add preprocessor macro to allow compilations on App Extension projects
    • โž• Add swipeBounceRate property. Coefficient applied to cell movement in bounce zone
    • ๐Ÿ›  Fix issue #216: Crash when combining programmatically created offset animations in consecutive block callbacks
    • ๐Ÿ›  Fix issue #139: Accessing Buttons in UITests does not work
    • ๐Ÿ›  Fix issue #134: Crash due to zombie object in expansion
    • ๐Ÿ›  Fix button text alignment for RTL languages
  • v1.5.5 Changes

    • ๐Ÿ›  Fix iOS 8.0 compatibility issue
    • ๐Ÿ›  Fix issue #190: duplicate callback
  • v1.5.4 Changes

    • ๐Ÿ›  Safer animation and callbacks checks after a cell is deleted. Fixes issue #91 caused by a null cell.indexPath because the callback was called while/after a cell is deleted
    • ๐Ÿ›  Fix issue #168: problem with devices that read right to left (Arabic and Hebrew)
    • ๐Ÿ›  Fix swipe issues after reloading a table
    • ๐Ÿ›  Fix issue #163: Swipe not working after deleting a cell
    • โž• Add enableSwipeBounces property. Enabled by default, if disabled the swipe bounces will be disabled and the swipe motion will stop right after the button.
    • โž• Add allowsOppositeSwipe property. Controls whether swipe gesture is allowed in opposite directions. NO value disables swiping in opposite direction once started in one direction
    • โž• Add topMargin and bottomMargin properties to MGSwipeSettings
    • โž• Add touchOnDismissSwipe property. Controls whether dismissing a swiped cell when clicking outside of the cell generates a real touch event on the other cell. Default behaviour is the same as the Mail app on iOS. Enable it if you want to allow to start a new swipe while a cell is already in swiped.
    • โž• Add a 'BOOL finished' parameter to completion animation callbacks
  • v1.5.3 Changes

    • ๐Ÿ›  Fix duplicated callbacks with reused button instances among many cells
    • ๐Ÿ›  Fix Carthage header for normal projects
  • v1.5.2 Changes

    • โž• Add Carthage support
    • ๐Ÿ›  Fix issues #160 and #162: Delegate call multiple time on single touch on iOS 9
    • ๐Ÿ›  Fix programmatic call to setSwipeOffset when swipeView is not yet created
    • ๐Ÿ›  Fix Swipe backgroundColor change without re-initializing the cell
    • ๐Ÿ›  Fix UITableCellSelectionStyle on end swipe
    • centerIconOverText now takes a spacing argument
  • v1.5.1 Changes

    • ๐Ÿ›  Fix default animation values
  • v1.5.0 Changes

    • ๐Ÿ”‹ Feature: Add predefined and configurable easing functions to the API. Swipe animations are now splitted into different settings so you can now use different animations (easing function, duration, etc) for each kind of animations: show swipe, hide swipe, stretch cell from already swiped buttons and more.
    • ๐Ÿ”‹ Feature: Full support for Spotify App like swipe animations. Create new Spotify Demo project.
    • ๐Ÿ”‹ Feature: add onlySwipeButtons property that allows to only swipe the buttons and keep the cell content static
    • ๐Ÿ”‹ Feature: add fromOffset argument to the canSwipe delegate method. Useful for supporting sidebar menus with swipe to open. You can use it to restrict the cell from being swiped if the offset is to close to the edge.
    • ๐Ÿ”‹ Feature: add preservesSelectionStatus property that allows to control whether selection/highlight is changed when swiped.
    • ๐Ÿ”‹ Feature: add keepButtonsSwiped property to Swipe settings
    • ๐Ÿ”‹ Feature: new delegate method: shouldHideSwipeOnTap:(CGPoint) point. Now you can cancel to hide opened swipe depending on the tap point
    • ๐Ÿ”‹ Feature: new delegate methods: swipeTableCellWillBeginSwiping & swipeTableCellWillEndSwiping. Useful to make cell changes that only are shown after the cell is swiped open
    • ๐Ÿ›  Fixed issue #113: Bug when changing the orientation of the device
    • ๐Ÿ›  Fixed typo throughout readme and source of "swiping"
    • ๐Ÿ›  Fixed issue #100: canSwipe not working when swipe to the allowed direction and swipe with inertia to the forbidden direction
    • ๐Ÿ›  Fixed clip mask when animating expansion
    • Keep expansion color while expansion is animating to 0