Skip to content

Commit b9c0e2e

Browse files
authored
Merge pull request #645 from macadmins/development
v2.0.10
2 parents 21fa025 + f96c882 commit b9c0e2e

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.10] - 2024-08-19
8+
Requires macOS 12.0 and higher.
9+
10+
### Fixed
11+
- When using `latest` or `latest-supported`, under active exploitation minor updates were not correctly assessed, resulting in SLA extensions defaulting to the `90` day SLA default value
12+
713
## [2.0.9] - 2024-08-16
814
Requires macOS 12.0 and higher.
915

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.9;
701+
MARKETING_VERSION = 2.0.10;
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.9;
732+
MARKETING_VERSION = 2.0.10;
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.9</string>
18+
<string>2.0.10</string>
1919
<key>CFBundleVersion</key>
20-
<string>2.0.9</string>
20+
<string>2.0.10</string>
2121
<key>LSApplicationCategoryType</key>
2222
<string>public.app-category.utilities</string>
2323
<key>LSMinimumSystemVersion</key>

Nudge/UI/Main.swift

+2
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,8 @@ class AppDelegate: NSObject, NSApplicationDelegate {
270270
slaExtension = TimeInterval(OSVersionRequirementVariables.activelyExploitedCVEsMajorUpgradeSLA * 86400)
271271
case (true, true, true):
272272
slaExtension = TimeInterval(OSVersionRequirementVariables.activelyExploitedCVEsMajorUpgradeSLA * 86400)
273+
case (true, false, false):
274+
slaExtension = TimeInterval(OSVersionRequirementVariables.activelyExploitedCVEsMinorUpdateSLA * 86400)
273275
case (true, true, false):
274276
slaExtension = TimeInterval(OSVersionRequirementVariables.activelyExploitedCVEsMinorUpdateSLA * 86400)
275277
case (false, false, true):

0 commit comments

Comments
 (0)