Releases: futuredapp/FuntastyKit
Releases · futuredapp/FuntastyKit
v1.2.3: Root view controller animations options
Parameter for specifying animation options for root view controller animation.
v1.2.2: Open IBInspectable properties
In some cases we needed to override the IBInspectable properties, so we made them open.
v1.2.1: Hacktober refactoring & preferred action style
- Increase iOS deployment target to 9.0
- Add preferred action style
- Hacktober refactoring
v1.2.0: Swift 4.2
Merge pull request #48 from thefuntasty/feature/swift-4.2 Feature: Swift 4.2
v1.1.2: TabBarItemCoordinator memory fix
- Fix
TabBarItemCoordinator
leaking memory intabBarController
property.
v1.1.1: Swift 4.1
- Remove weak annotations from protocols
- Update project in Xcode 9.3
v1.1.0: Keyboard constraint and tab bar item coordinator
- Added
TabBarItemCoordinator
for adding view controllers toUITabBarController
- Added
KeyboardHeightConstraint
which changes height according to keyboard and animates correctly with it, also it fully supports iPhone X - Removed
Keyboardable
protocol - Fixed window root view controller animation duration parameter
v1.0.1: Swift 4
Merge pull request #38 from mkj-is/housekeep/swift-4 Migrate to Swift 4
v1.0: Coordinator ownership architecture update
View models are now created inside the coordinator. The view model has reference to coordinator and view controller, so the view controller no longer deals with any navigation logic.
- Add source to action sheet for iPad popover presentation
- Add calls of delegate in default coordinator stop method
- Simplify configuration of controllers (use method instead of closure)
- Add example scene for testing
- Remove Coordinated protocol
- Rename view reference to view controller
- Add example scene for testing
v0.13: Improve coordinator delegates
- Add delegate to alert coordinator
- Add calling of didStop method on alert coordinator after animation
- Make the view controller on coordinator read-only (since it is usually only set in the coordinator it should not
be changeable from the outside) - Add setter to coordinator delegates in the protocol
- Use animated variable when stopping push/modal coordinators