Skip to content

Commit

Permalink
Merge branch 'release/1.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian Boldt committed Jan 11, 2017
2 parents 7323dd3 + 7003e76 commit 2e989a1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.2.1 (2017-01-11)
- Fixed issue with background tap dismissal options

## 1.2.0 (2016-12-18)
- There is a new cool animation style called shiftIn Animation. Check out the README to find out more
- Rounding Corners can now be specified unsing the corners property (e.g. presentation.corners = [.leftBottom,rightTop])
Expand Down
2 changes: 2 additions & 0 deletions Example/Jelly.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
152009C91E26C6EA00537CD5 /* CHANGELOG.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = CHANGELOG.md; path = ../CHANGELOG.md; sourceTree = "<group>"; };
154509481DF6084B0096C822 /* Jelly_Tests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Jelly_Tests-Bridging-Header.h"; sourceTree = "<group>"; };
154509491DF6084C0096C822 /* JellyAnimatorSpec.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JellyAnimatorSpec.swift; sourceTree = "<group>"; };
155B7B841DE1E5820093DF2A /* CustomNavController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomNavController.swift; sourceTree = "<group>"; };
Expand Down Expand Up @@ -89,6 +90,7 @@
607FACC71AFB9204008FA782 = {
isa = PBXGroup;
children = (
152009C91E26C6EA00537CD5 /* CHANGELOG.md */,
15B1CF991DEB7299003B4107 /* Github */,
607FACF51AFB993E008FA782 /* Podspec Metadata */,
607FACD21AFB9204008FA782 /* Example for Jelly */,
Expand Down
2 changes: 1 addition & 1 deletion Jelly.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Pod::Spec.new do |s|
s.name = 'Jelly'
s.version = '1.2.0'
s.version = '1.2.1'
s.summary = 'Jelly provides custom view controller animations with just a few lines of code'

s.description = <<-DESC
Expand Down
4 changes: 3 additions & 1 deletion Jelly/Classes/JellyPresentationController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,8 @@ fileprivate extension JellyPresentationController {
}

dynamic func handleTap(recognizer: UITapGestureRecognizer) {
presentingViewController.dismiss(animated: true)
if self.presentation.isTapBackgroundToDismissEnabled {
presentingViewController.dismiss(animated: true)
}
}
}

0 comments on commit 2e989a1

Please sign in to comment.