Skip to content

Commit

Permalink
Update readme, changelog and podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
MortimerGoro committed Jul 21, 2015
1 parent 8968a9a commit e61c981
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Changelog

## 1.5.0

- Feature: add onlySwipeButtons property that allows to only swipe the buttons and keep the cell 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

## 1.4.3

- Fixed crash with different class cells in multiple section tables
Expand Down
2 changes: 1 addition & 1 deletion MGSwipeTableCell.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'MGSwipeTableCell'
s.version = '1.4.3'
s.version = '1.5.0'
s.author = { 'Imanol Fernandez' => '[email protected]' }
s.homepage = 'https://github.com/MortimerGoro/MGSwipeTableCell'
s.summary = 'An easy to use UITableViewCell subclass that allows to display swipeable buttons with a variety of transitions'
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ See [`MGSwipeTableCell.h`](MGSwipeTableCell/MGSwipeTableCell.h) header file for

See [`MailAppDemo`](demo/MailAppDemo) for a complete project which mimics iOS 8.0 Mail App

See [`SpotifyDemo`](demo/SpotifyDemo) for a complete project which mimics Spotify App swipe style

See [`MGSwipeDemo`](demo/MGSwipeDemo) for a complete project where you can test the variety of transitions on a real device/simulator.

##Usage
Expand Down

0 comments on commit e61c981

Please sign in to comment.