All Versions
16
Latest Version
Avg Release Cycle
117 days
Latest Release
1453 days ago

Changelog History
Page 2

  • v2.3.0 Changes

    November 16, 2016

    ๐Ÿš€ Released on 2016-11-16.

    • ๐Ÿšš shouldUsePrototypeCellHeightCalculation moved to TableDirector(tableView: tableView, shouldUsePrototypeCellHeightCalculation: true)
    • ๐Ÿ›  Prototype cell height calculation bugfixes
  • v2.2.0

    October 30, 2016
  • v2.1.0 Changes

    ๐Ÿš€ Released on 2016-10-19.

    • ๐Ÿ—„ action method was deprecated on TableRow. Use on instead.
    • ๐Ÿ‘Œ Support multiple actions with same type on row.
    • ๐Ÿ— You could now build your own cell height calculating strategy. See [TablePrototypeCellHeightCalculator](Sources/TablePrototypeCellHeightCalculator.swift).
    • ๐Ÿ‘€ Default distance between sections changed to UITableViewAutomaticDimension. You can customize it, see [TableSection](Sources/TableSection.swift)
  • v2.0.0 Changes

    ๐Ÿš€ Released on 2016-10-06. Breaking changes in 2.0.0: The signatures of TableRow and TableRowAction classes were changed from

    let action = TableRowAction<String, StringTableViewCell>(.click) { (data) in
    }
    
    let row = TableRow<String, StringTableViewCell>(item: "some string", actions: [action])
    

    to

    let action = TableRowAction<StringTableViewCell>(.click) { (data) in
    }
    
    let row = TableRow<StringTableViewCell>(item: "some string", actions: [action])
    

    This is the great improvement that comes from the community. Thanks a lot!

  • v1.3.0 Changes

    ๐Ÿš€ Released on 2016-09-04. Swift 3.0 support.

  • v0.1.0 Changes

    ๐Ÿš€ Released on 2015-11-15. Initial release called Tablet.