Skip to content

Commit 2b43ba4

Browse files
committed
v2.0.7
1 parent a42f3cb commit 2b43ba4

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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.7] - 2024-08-08
8+
Requires macOS 12.0 and higher.
9+
10+
### Changed
11+
- The `SMAppService` logic logs have been moved to debug logs
12+
- When an updated Managed Preference is sent for `com.github.macadmins.Nudge`, if the values are different, [Nudge will exit](https://github.com/macadmins/nudge/commit/f13a697dd61400f7f0d73dc38226f7769ed8e4f4)
13+
- This is a workaround for issue [602](https://github.com/macadmins/nudge/issues/602)
14+
- The LaunchAgent will ensure the application is successfully restarted at a future time.
15+
16+
### Fixed
17+
- The Jamf JSON schema file had an [item missing](https://github.com/macadmins/nudge/pull/632) and a [key incorrectly set](https://github.com/macadmins/nudge/pull/634)
18+
719
## [2.0.6] - 2024-08-01
820
Requires macOS 12.0 and higher.
921

Nudge.xcodeproj/project.pbxproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@
698698
"@executable_path/../Frameworks",
699699
);
700700
MACOSX_DEPLOYMENT_TARGET = 12.0;
701-
MARKETING_VERSION = 2.0.6;
701+
MARKETING_VERSION = 2.0.7;
702702
PRODUCT_BUNDLE_IDENTIFIER = com.github.macadmins.Nudge;
703703
PRODUCT_NAME = "$(TARGET_NAME)";
704704
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -729,7 +729,7 @@
729729
"@executable_path/../Frameworks",
730730
);
731731
MACOSX_DEPLOYMENT_TARGET = 12.0;
732-
MARKETING_VERSION = 2.0.6;
732+
MARKETING_VERSION = 2.0.7;
733733
PRODUCT_BUNDLE_IDENTIFIER = com.github.macadmins.Nudge;
734734
PRODUCT_NAME = "$(TARGET_NAME)";
735735
PROVISIONING_PROFILE_SPECIFIER = "";

Nudge/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>2.0.6</string>
18+
<string>2.0.7</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.0.6</string>
20+
<string>2.0.7</string>
2121
<key>LSApplicationCategoryType</key>
2222
<string>public.app-category.utilities</string>
2323
<key>LSMinimumSystemVersion</key>

Nudge/Utilities/Utils.swift

+2
Original file line numberDiff line numberDiff line change
@@ -1428,6 +1428,8 @@ struct UIUtilities {
14281428
return
14291429
}
14301430
LogManager.notice("User clicked moreInfo button", logger: uiLog)
1431+
// TODO: Flesh this out once we understand what to do when there isn't a url in SOFA feed
1432+
// if OSVersionRequirementVariables.aboutUpdateURL == "sofa" { NSWorkspace.shared.open(url) }
14311433
NSWorkspace.shared.open(url)
14321434
}
14331435

0 commit comments

Comments
 (0)