All Versions
26
Latest Version
Avg Release Cycle
92 days
Latest Release
1479 days ago

Changelog History
Page 1

  • v1.8.4 Changes

    April 01, 2020
    • Contributions by Bradley Mackey. Thank you. Support for UITableViewStyle.insetGrouped, which Apple introduced in iOS13.
  • v1.8.3 Changes

    February 17, 2020
    • Contributions by Asaf Baibekov. Thank you. Neat simplifications and cleanups several places.
    • RegularExpressionSpecification: Fixed crash with utf8/utf16 length mismatch. Special characters could crash the app.
  • v1.8.2 Changes

    November 02, 2019
    • Contributions by Bradley Mackey. Thank you. The PrecisionSliders have so far always had a pinch to zoom gesture. Bradley have added a simple style, where pinch is disabled.
  • v1.8.1 Changes

    October 17, 2019
    • Contributions by Bradley Mackey. Thank you.
    • TextFieldCell/TextViewCell improvements. Better layout inside the safe area (iPhone X+). More robust handling of orientation change.
    • Extracted CustomizableDetailLabel and CustomizableTitleLabel, for getter/setter functions shared across similar classes.
  • v1.8.0 Changes

    October 14, 2019
    • Dark mode support and much more. Contributed by Bradley Mackey. Thank you.
    • Upgraded from Xcode10.x to Xcode11.0
    • Upgraded from Swift4.2 to Swift5
    • Deleted "develop" branch.
  • v1.7.1

    February 11, 2019
  • v1.7.0 Changes

    September 23, 2018
    • Upgraded from Xcode9.x to Xcode10.0
    • Upgraded from Swift4 to Swift4.2
  • v1.6.0 Changes

    December 21, 2017
    • Upgraded from Xcode9.0 to Xcode9.2
    • Upgraded from Swift3 to Swift4
  • v1.5.0 Changes

    August 24, 2017
    • Xcode9 preparations. Now compiles with Xcode9beta6.
    • Swiftlint
  • v1.4.0 Changes

    April 08, 2017
    • Upgraded from Xcode8.2.1 to Xcode8.3.1
    • Classes derived from FormViewController can now be used inside storyboards. Added 'SettingsViewController' that demonstrates this. FormViewController.init(coder aDecoder: NSCoder) have until now invoked super.init(nibName: nil, bundle: nil) so it has never worked inside a storyboard. FormViewController now instead implements init?(coder aDecoder: NSCoder) so it can invoke super.init(coder: aDecoder).
    • FormViewController.reloadForm() added.