Skip to content

Releases: layoutBox/PinLayout

Update Cocoa podspec to support Swift 5.1.1

31 Oct 21:50
930593a
Compare
Choose a tag to compare
  • Removed swift_version from the podspec. PinLayout supports all recent Swift versions, don't need to specify them individually.

Set Cocoapod swift versions to : 4.2, 5.0, 5.1

07 Oct 12:52
Compare
Choose a tag to compare

Update podspec to specify explicitly supported swift versions: ['4.2', '5.0', '5.1']

Improve method that validates `width` and `height` values

03 Oct 12:44
Compare
Choose a tag to compare
  • Method that set the width and height now validates more their parameter, by checking NaN and Infinity values.

Usage `UIView.effectiveUserInterfaceLayoutDirection` to detect RTL

16 Sep 20:23
Compare
Choose a tag to compare
  • Use UIView.effectiveUserInterfaceLayoutDirection to detect RTL on iOS 10 and above. This is recommended approach to detect layout direction taking into account view's semantic content attribute, trait environment and UIApplication layout direction.
  • Update Travis to Xcode 11.

Upgrade to Swift 5

15 Aug 15:20
Compare
Choose a tag to compare
  • Upgrade project to Swift 5
  • Update Pods
  • Apply xcodeproj migration

Added by Luc Dion in Pull Request #195

Update Swift Package Manager support for Xcode 11

25 Jun 15:44
Compare
Choose a tag to compare
  • Updated PinLayout to be used with Xcode 11's Swift Package Manager.

  • Fix Warnings: public' modifier is redundant for instance method declared in a public extension.

Add missing Objective-C API methods

02 Mar 14:04
Compare
Choose a tag to compare
  • wrapContent
  • wrapContentWithPadding:(CGFloat)
  • wrapContentWithInsets:(PEdgeInsets)
  • wrapContentWithType:(WrapType)
  • wrapContentWithType:(WrapType) padding:(CGFloat)
  • wrapContentWithType:(WrapType) insets:(PEdgeInsets)

Update support for Swift 4.2

29 Sep 12:25
Compare
Choose a tag to compare

The PinLayout pod doesn't specify anymore the Swift language version.

PinLayout supports Swift versions:

  • Swift 4.2 / 4.1 / 4.0

  • Swift 3.*

  • Added by Luc Dion in Pull Request #178

Minor internal changes

27 Sep 11:24
Compare
Choose a tag to compare

Remove sizeToFit() from SizeCalculable protocol.
This change ensure that PinLayout pin.sizeToFit() method behave correctly. As per the iOS documentation, we should not directly override sizeToFit() but rather always only implement sizeThatFits(_:) for auto-sizing needs. This update aim to remove the sizeToFit() requirement in the SizeCalculable protocol.

Minor changes

27 Sep 11:23
Compare
Choose a tag to compare
  • Cleanup .xcodeproj

  • Removed Swiftlint warnings

  • Fix an issue with PinLayoutSample app related to IntroRTLView example

  • Added by Luc Dion in Pull Request #177