Version 2.2.1
- Added
PrivacyInfo.xcprivacy
manifest file
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.2.0...2.2.1
Version 2.2.0
What's Changed
- 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
New Contributors
- @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
What's Changed
- 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
What's Changed
- Group features in VoiceOver by @AndrewBennet in https://github.com/SvenTiigi/WhatsNewKit/pull/62
master
branch has been renamed tomain
Full Changelog: https://github.com/SvenTiigi/WhatsNewKit/compare/2.0.3...2.0.4
Version 2.0.3
What's Changed
- Added image alignment by @DmitryBespalov in https://github.com/SvenTiigi/WhatsNewKit/pull/59
New Contributors
- @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
What's Changed
- Fix extension signatures by @phjs in https://github.com/SvenTiigi/WhatsNewKit/pull/55
New Contributors
- @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
What's Changed
- 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
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: https://github.com/SvenTiigi/WhatsNewKit/compare/1.3.7...2.0.0
Version 1.3.7
Bug fix
- Fixed "Squished layout on iPad in multitasking" (https://github.com/SvenTiigi/WhatsNewKit/issues/45)
Version 1.3.6
Bug fix
• Fixed "Swipe gesture to dismiss doesn't work reliably" (https://github.com/SvenTiigi/WhatsNewKit/issues/44)