Skip to content

Releases: AliSoftware/Reusable

4.1.2

Choose a tag to compare

@AliSoftware AliSoftware released this 12 Sep 13:32
1867470
  • Update Package.swift and .podspec to use newer min iOS version supported by Xcode 12+.
    @AliSoftware
    #115

  • Fix Xcode 12.5 warnings about the class keyword for protocol inheritance that is deprecated.
    @johnarn
    #113

4.1.1

Choose a tag to compare

@AliSoftware AliSoftware released this 05 Mar 18:10

Swift 5 Support

Choose a tag to compare

@AliSoftware AliSoftware released this 06 May 19:31

4.0.5

Choose a tag to compare

@AliSoftware AliSoftware released this 02 Dec 22:03
  • Fix for only allowing the use of app extension API.
    igorkulman
    #73

4.0.4

Choose a tag to compare

@AliSoftware AliSoftware released this 13 Oct 13:09
  • Only allowing the use of app extension API so using the library in an app extension does not produce a warning.
    @igorkulman
    #70

4.0.3

Choose a tag to compare

@AliSoftware AliSoftware released this 25 Aug 19:44
e84643b
  • Upgrade to CircleCI 2.
    djbe
    #60

  • Update project to support Swift 4.2.
    djbe
    #58

4.0.2 — Docs, Example, Carthage support for Swift 4

Choose a tag to compare

@AliSoftware AliSoftware released this 25 Aug 19:44
a738240

4.0.1

Choose a tag to compare

@AliSoftware AliSoftware released this 16 Feb 14:19
  • Added a tvOS target in the Example project.
  • Carthage should now see the tvOS framework

4.0.0

Choose a tag to compare

@AliSoftware AliSoftware released this 16 Feb 14:18

Breaking changes

  • The method static func loadFromNib(owner:) of NibOwnerLoadable has been replaced by instance method func loadNibContent().
    This is more consistent as we need an instance (owner) anyway, and also avoids possible crashes when used with UIView subclasses
    not implementing non-required initializers init()/init(frame:).
    (Method static func loadFromNib() of NibLoadable is still unchanged).
    @Skoti
    #40
  • The storyboard property of StoryboardBased and StoryboardSceneBased protocols has been renamed to sceneStoryboard to avoid conflicts.
    @jakubgert
    #33

Fixes

  • Fixing documentation typos for CollectionHeaderView and MyXIBIndexSquaceCell.
    @Skoti
  • Fixing TableView Controller scene in Example project, to display cells above UITabBar.
    @Skoti

3.0.1

Choose a tag to compare

@AliSoftware AliSoftware released this 05 Dec 12:11
  • Fix instantiate() implementation on StoryboardSceneBased ViewControllers.
    @jakubgert
    #38
  • Removed strict NibReusable protocol conforming in register functions.
    You can now make a Reusable-only cell with a NibLoadable subclass.
    @nekrich
    #37