Skip to content

Releases: SvenTiigi/WhatsNewKit

Version 2.2.1

30 Apr 15:15
Compare
Choose a tag to compare

What's Changed

  • Added PrivacyInfo.xcprivacy manifest file

Full Changelog: 2.2.0...2.2.1

Version 2.2.0

01 Feb 19:41
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.1.0...2.2.0

Version 2.1.0

02 Mar 19:43
Compare
Choose a tag to compare

What's Changed

  • Added a dedicated remove(presentedVersion:) function to the default implementations of a WhatsNewVersionStore (#64)
  • Removed deprecated function which contained a typo in its function parameter (238dadc)

Full Changelog: 2.0.4...2.1.0

Version 2.0.4

01 Dec 18:18
Compare
Choose a tag to compare

What's Changed

  • Group features in VoiceOver by @AndrewBennet in #62
  • master branch has been renamed to main

Full Changelog: 2.0.3...2.0.4

Version 2.0.3

30 Aug 17:53
50a121a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 2.0.2...2.0.3

Version 2.0.2

26 Apr 16:14
Compare
Choose a tag to compare

What's Changed

  • Fix extension signatures by @phjs in #55

New Contributors

  • @phjs made their first contribution in #55

Full Changelog: 2.0.1...2.0.2

Version 2.0.1

09 Jan 22:14
Compare
Choose a tag to compare

What's Changed

  • Fix issue 52 – prevent vertical collapsing of text on iOS 14 by @AndrewBennet in #53

Full Changelog: 2.0.0...2.0.1

Version 2.0.0

06 Jan 11:18
Compare
Choose a tag to compare

WhatsNewKit Version 2.0.0

WhatsNewKit Version 2.0.0 has been completely rewritten in SwiftUI.
You can now easily present your new features in SwiftUI, UIKit and AppKit.

import SwiftUI
import WhatsNewKit

struct ContentView: View {
   
   var body: some View {
       NavigationView {
           // ...
       }
       .whatsNewSheet()
   }
   
}

Breaking Changes

The new version 2.0.0 of WhatsNewKit introduces major breaking changes.
Please see the updated README.md to learn more about the new API.

CocoaPods (Deprecated)

This version drops the support for CocoaPods.

The Swift Package Manager is now the preferred way of integrating WhatsNewKit to your project.

dependencies: [
    .package(url: "https://github.com/SvenTiigi/WhatsNewKit.git", from: "2.0.0")
]

Changelog

Full Changelog: 1.3.7...2.0.0

Version 1.3.7

17 Oct 20:23
Compare
Choose a tag to compare

Bug fix

  • Fixed "Squished layout on iPad in multitasking" (#45)

Version 1.3.6

14 Sep 17:49
Compare
Choose a tag to compare

Bug fix

• Fixed "Swipe gesture to dismiss doesn't work reliably" (#44)