All Versions
15
Latest Version
Avg Release Cycle
25 days
Latest Release
1303 days ago

Changelog History
Page 1

  • v1.4.1 Changes

    October 01, 2020

    ๐Ÿš€ Released on 2020-10-01

    ๐Ÿ”„ CHANGELOG

    • โšก๏ธ #14 [FIX] Cannot update the height of the ScrollStackRow's contentView because it does not receive scrollStackRowSizeForAxis() event when its layout di change
  • v1.4.0 Changes

    September 25, 2020

    Released on 2020-09-25

    ๐Ÿ”„ CHANGELOG

    • โšก๏ธ #13 Fixed an issue with separator visibility which is wrongly updated when setRows/addRows is called. isSeparatorHidden of ScrollStackRow is now a property of the row itself which is maintained regardless the order of the row (when autoHideLastRowSeparator is set).
    • ๐Ÿ“ฆ Compatibility with Swift Package Manager (SPM) 5.3
  • v1.3.3 Changes

    June 05, 2020

    Released on : 2020-06-06

    ๐Ÿ”„ CHANGELOG

    • ๐Ÿšš #12 ScrollStackRow and associated controller are not deallocated once removed
  • v1.3.2

    June 05, 2020
  • v1.3.1 Changes

    April 21, 2020

    Released on : 2020-04-21

    ๐Ÿ”„ CHANGELOG

    • #11 reloadContentFromStackView() should be called before getting the new size of the row (askForCutomizedSizeOfContentView())
  • v1.3.0 Changes

    January 26, 2020

    Released on : 2019-01-26

    ๐Ÿ”„ CHANGELOG

    • ๐Ÿ‘ #10 Support for lightweight rows layouts using plain UIView instances (without associated UIViewControllers).
      (This is especially useful when you don't have a complex logic in your views and you want to use ScrollStack to make custom layout and keep your code lightweight)
  • v1.2.3 Changes

    January 14, 2020

    Released on : 2019-01-14

    ๐Ÿ”„ CHANGELOG

    • ๐Ÿšš #9 Removed unnecessary call to layoutIfNeeded() in rowPadding set property of ScrollStackRow in order to prevent multiple layout call which may causes AL errors.
  • v1.2.2 Changes

    January 14, 2020

    Released on : 2019-01-14

    ๐Ÿ”„ CHANGELOG

    • ๐Ÿšš #8 Fixed an issue with removeRow methods which does not actually remove the cell from stack.
  • v1.2.1 Changes

    January 12, 2020

    Released on : 2019-01-12

    ๐Ÿ”„ CHANGELOG

    • #7 contentSize is not correctly dispatched to scrollStackContentSizeDidChange() delegate function the first time you set content of the stack
  • v1.2.0 Changes

    January 12, 2020

    Released on : 2019-01-12

    ๐Ÿ”„ CHANGELOG

    • #5 Added rowPadding property to setup the insets of the contentView property of the ScrollStackRow
    • โšก๏ธ #6 Added two new methods in ScrollStackControllerDelegate protocol: scrollStackDidUpdateLayout() to observer layout changes and scrollStackContentSizeDidChange()to observe changes in contentSize of the stack view.