Releases: gordontucker/FittedSheets
Releases · gordontucker/FittedSheets
2.6.1
What's Changed
- Update Package.swift by @richard-ash in #84
- Update README.md by @abayken in #87
- Blur effect by @farhad01 in #93
- Margin resize by @farhad01 in #95
- add allowPullingPastMinHeight by @maxches99 in #102
- Added spring based animation options to the sheet transition animations by @mgrider in #107
- fixed a compile error due to incorrect swift code by @sleepwalkerfx in #112
- Minor change on Inline presentation code by @CharlesHopman in #111
- bug-fix not working scrollview by @farhad01 in #121
- Refactor demos by @gordontucker in #133
- Correct typo for intrinsic demo image by @dlackty in #135
- Fix storyboard class reference by @mattio in #142
- Setup childForStatusBarStyle by @benrudhart in #147
- Allow for intrinsic height to be recalculated by @BradPatras in #153
- Fixes #118 by @AjiSantosoIND in #161
- Option to allow override should begin pull gesture by @chanonly123 in #172
- Added pull gesture velocity threshold by @chanonly123 in #171
- Support iOS 10 by @nhuanvd in #159
- Update README.md by @ProKashif in #179
- Add supportedInterfaceOrientations by @MariyanskiDev in #181
- Update preferred height when content size changes by @wazawoo in #167
- Add support for choosing the corner curve by @wazawoo in #166
- Add rubber band effect. by @llinardos in #155
- Fix Xcode 15 compiler error related to @available on stored properties by @AndrewSB in #202
- Add Bug Verification for presenting a fullscreen modal by @AndrewSB in #199
- Update to remove unsupported available with older properties and removed warnings by @darrenspriet in #212
- dismissOnPull obeys shouldDismiss by @stevelandeyasana in #189
- SheetViewController.swift --> resize animation fix by @kulikovs in #206
New Contributors
- @richard-ash made their first contribution in #84
- @abayken made their first contribution in #87
- @maxches99 made their first contribution in #102
- @mgrider made their first contribution in #107
- @sleepwalkerfx made their first contribution in #112
- @CharlesHopman made their first contribution in #111
- @dlackty made their first contribution in #135
- @mattio made their first contribution in #142
- @benrudhart made their first contribution in #147
- @BradPatras made their first contribution in #153
- @AjiSantosoIND made their first contribution in #161
- @chanonly123 made their first contribution in #172
- @nhuanvd made their first contribution in #159
- @ProKashif made their first contribution in #179
- @MariyanskiDev made their first contribution in #181
- @wazawoo made their first contribution in #167
- @llinardos made their first contribution in #155
- @darrenspriet made their first contribution in #212
- @stevelandeyasana made their first contribution in #189
- @kulikovs made their first contribution in #206
Full Changelog: 2.0.0...2.6.1
2.0.0
This is was a fairly large refactor of the codebase to enable fixing some of the existing bugs as well as making it more flexible for the future. It now uses a UIViewControllerTransitioning class to present the modal (so you'll want to enable animations now). It also respects the safeAreaInsets so there isn't a need to put the blur effect anymore. If you want that, it is easy enough to put on any view controllers you want to present. See the ReadMe for more information.
1.3.0
Replaced roundTopCorners: Bool
with topCornersRadius: CGFloat
so you can set the corner radius for the sheet to whatever you want.
1.2.1
Added ability to:
- Set the handle color
handleColor: UIColor?
- Set if you want the background to go behind the grab bar or not
extendBackgroundBehindHandle: Bool
- Set if you want rounded corners or not
roundTopCorners: Bool