Skip to content

Commit dec3f0f

Browse files
committed
fix unsupportedURL button action
1 parent 5006e8e commit dec3f0f

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.0.6] - 2024-08-01
8+
Requires macOS 12.0 and higher.
9+
10+
### Added
11+
12+
### Changed
13+
14+
### Fixed
15+
- The `unsupportedURL` key was not being honored when clicking on the Unsupported UI button
16+
- Addresses [626](https://github.com/macadmins/nudge/issues/626)
17+
718
## [2.0.5] - 2024-07-24
819
Requires macOS 12.0 and higher.
920

Nudge/UI/Common/InformationButton.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct InformationButtonAsAction: View {
4444

4545
var body: some View {
4646
Button(action: {
47-
UIUtilities().openMoreInfo()
47+
UIUtilities().openMoreInfoUnsupported()
4848
UIUtilities().postUpdateDeviceActions(userClicked: true, unSupportedUI: true)
4949
}) {
5050
Text(.init(UserInterfaceVariables.actionButtonTextUnsupported.localized(desiredLanguage: getDesiredLanguage(locale: appState.locale))))

0 commit comments

Comments
 (0)