Version 2.2.1
- Added
PrivacyInfo.xcprivacymanifest file
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.2.0...2.2.1
Version 2.2.0
- Added support for visionOS (https://github.com/SvenTiigi/WhatsNewKit/pull/68, https://github.com/SvenTiigi/WhatsNewKit/pull/74)
- Fixed a typo by @passatgt in https://github.com/SvenTiigi/WhatsNewKit/pull/66
- @passatgt made their first contribution in https://github.com/SvenTiigi/WhatsNewKit/pull/66
- @alexandrereol made their first contribution in https://github.com/SvenTiigi/WhatsNewKit/pull/74
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.1.0...2.2.0
Version 2.1.0
- Added a dedicated
remove(presentedVersion:)function to the default implementations of a WhatsNewVersionStore (https://github.com/SvenTiigi/WhatsNewKit/issues/64) - Removed deprecated function which contained a typo in its function parameter (https://github.com/SvenTiigi/WhatsNewKit/commit/238dadc14dd58885f51037e63d08baf4275c480e)
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.4...2.1.0
Version 2.0.4
- Group features in VoiceOver by @AndrewBennet in https://github.com/SvenTiigi/WhatsNewKit/pull/62
masterbranch has been renamed tomain
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.3...2.0.4
Version 2.0.3
- Added image alignment by @DmitryBespalov in https://github.com/SvenTiigi/WhatsNewKit/pull/59
- @DmitryBespalov made their first contribution in https://github.com/SvenTiigi/WhatsNewKit/pull/59
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.2...2.0.3
Version 2.0.2
- Fix extension signatures by @phjs in https://github.com/SvenTiigi/WhatsNewKit/pull/55
- @phjs made their first contribution in https://github.com/SvenTiigi/WhatsNewKit/pull/55
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.1...2.0.2
Version 2.0.1
- Fix issue 52 – prevent vertical collapsing of text on iOS 14 by @AndrewBennet in https://github.com/SvenTiigi/WhatsNewKit/pull/53
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.0...2.0.1
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()
}
}
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.
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")
]
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/1.3.7...2.0.0
Version 1.3.7
- Fixed "Squished layout on iPad in multitasking" (https://github.com/SvenTiigi/WhatsNewKit/issues/45)
Version 1.3.6
• Fixed "Swipe gesture to dismiss doesn't work reliably" (https://github.com/SvenTiigi/WhatsNewKit/issues/44)
