Releases: rwbutler/Updates
Releases · rwbutler/Updates
Updates 2.0.1
Updates 2.0.0
[2.0.0] - 2024-10-15
Added
- Added PrivacyInfo.xcprivacy
Changed
- Applied Xcode 16 recommended build settings.
- Base deployment target updated from iOS 9.3 to iOS 12.0 in-line with Xcode 16 support.
- Default branch now
main
rather thanmaster
.
Updates 1.6.1
[1.6.1] - 2022-09-26
Changed
- Added a public
init
forUpdatesResult
to make unit testing easier in consumer projects.
Updates 1.6.0
[1.6.0] - 2021-10-10
Added
- Added another
promptToUpdate
function which does not require anUpdatesResult
object which means that the function can be used without having to pass anUpdatesResult
object around the calling app. UpdatesResult
now has the App Store URL for the calling app if it is possible to form it from the required parameters.
Updates v1.5.0
[1.5.0] - 2021-10-05
Added
- Added properties
minOptionalAppVersion
andminRequiredAppVersion
with the latter taking precedence if both are set to a version string. If the former is set then the update type value will be.soft
i.e. a soft update whereas if the latter is set then the update type will be.hard
indicating that a different UI should be displayed to the user.
Note: At the current time UpdatesUI largely behaves the same for both type of update but for .hard
updates the cancel button is omitted meaning that the user must press the Update button to quit the dialog - it is recommended to implement your own UI here instead.
Updates v1.3.1
Added flag useStoreKit
which if disabled means that StoreKit is no longer used to attempt to determine the correct country code to use when contacting the iTunes Search API.
Updates v1.3.0
[1.3.0] - 2021-02-23
Added
- Added notification mode
.withoutAvailableUpdate
which notifies on every invocation ofcheckForUpdates
even where no update is available. Can be used for testing purposes.
Updates v1.2.4
[1.2.4] - 2021-02-22
Changed
- Fixed an issue which would result in the user always being notified about an update regardless of the value of the
NotificationMode
preference.
Updates v1.2.3
[1.2.3] - 2021-02-22
Changed
- Fixed an issue whereby the result could be returned as
.none
where information was missing from the user'sUpdates.json
file.