Skip to content

Releases: futuredapp/FuntastyKit

v1.2.3: Root view controller animations options

11 Feb 14:03
58cc9a9
Compare
Choose a tag to compare

Parameter for specifying animation options for root view controller animation.

v1.2.2: Open IBInspectable properties

21 Jan 09:58
c7f65c6
Compare
Choose a tag to compare

In some cases we needed to override the IBInspectable properties, so we made them open.

v1.2.1: Hacktober refactoring & preferred action style

28 Nov 17:56
6460e3a
Compare
Choose a tag to compare
  • Increase iOS deployment target to 9.0
  • Add preferred action style
  • Hacktober refactoring

v1.2.0: Swift 4.2

27 Aug 14:22
08fb13c
Compare
Choose a tag to compare
Merge pull request #48 from thefuntasty/feature/swift-4.2

Feature: Swift 4.2

v1.1.2: TabBarItemCoordinator memory fix

21 Jun 12:39
250f187
Compare
Choose a tag to compare
  • Fix TabBarItemCoordinator leaking memory in tabBarController property.

v1.1.1: Swift 4.1

03 Apr 08:12
a6dbd50
Compare
Choose a tag to compare
  • Remove weak annotations from protocols
  • Update project in Xcode 9.3

v1.1.0: Keyboard constraint and tab bar item coordinator

27 Feb 09:35
ab9274c
Compare
Choose a tag to compare
  • Added TabBarItemCoordinator for adding view controllers to UITabBarController
  • 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

19 Feb 11:54
9fcdfb3
Compare
Choose a tag to compare
Merge pull request #38 from mkj-is/housekeep/swift-4

Migrate to Swift 4

v1.0: Coordinator ownership architecture update

09 Jan 10:34
99d445f
Compare
Choose a tag to compare

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

27 Sep 11:49
Compare
Choose a tag to compare
  • 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