Skip to content

Commit e61c981

Browse files
committed
Update readme, changelog and podspec
1 parent 8968a9a commit e61c981

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 1.5.0
4+
5+
- Feature: add onlySwipeButtons property that allows to only swipe the buttons and keep the cell static
6+
- 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.
7+
- Feature: add preservesSelectionStatus property that allows to control whether selection/highlight is changed when swiped.
8+
- Feature: add keepButtonsSwiped property to Swipe settings
9+
- Feature: new delegate method: shouldHideSwipeOnTap:(CGPoint) point. Now you can cancel to hide opened swipe depending on the tap point
10+
- Feature: new delegate methods: swipeTableCellWillBeginSwiping & swipeTableCellWillEndSwiping. Useful to make cell changes that only are shown after the cell is swiped open
11+
- Fixed issue #113: Bug when changing the orientation of the device
12+
- Fixed typo throughout readme and source of "swiping"
13+
- Fixed issue #100: canSwipe not working when swipe to the allowed direction and swipe with inertia to the forbidden direction
14+
315
## 1.4.3
416

517
- Fixed crash with different class cells in multiple section tables

MGSwipeTableCell.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'MGSwipeTableCell'
3-
s.version = '1.4.3'
3+
s.version = '1.5.0'
44
s.author = { 'Imanol Fernandez' => '[email protected]' }
55
s.homepage = 'https://github.com/MortimerGoro/MGSwipeTableCell'
66
s.summary = 'An easy to use UITableViewCell subclass that allows to display swipeable buttons with a variety of transitions'

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ See [`MGSwipeTableCell.h`](MGSwipeTableCell/MGSwipeTableCell.h) header file for
3737

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

40+
See [`SpotifyDemo`](demo/SpotifyDemo) for a complete project which mimics Spotify App swipe style
41+
4042
See [`MGSwipeDemo`](demo/MGSwipeDemo) for a complete project where you can test the variety of transitions on a real device/simulator.
4143

4244
##Usage

0 commit comments

Comments
 (0)