Skip to content

Commit 87c2de9

Browse files
committed
Update release notes and bump version to 3.25.3
1 parent fea7904 commit 87c2de9

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

App/Sources/UI/Releases/Release3_25_1.swift

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ private struct ChangesView: View {
122122
@ObserveInjection var inject
123123

124124
private let changes: [Change<AnyView>] = [
125+
Change(icon: { BugFixIconView(size: 24).anyView },
126+
text: "Fixes main window handling for older versions of macOS.",
127+
version: .v3253),
128+
129+
Change(icon: { WorkspaceIcon(size: 24).anyView },
130+
text: "Minor tweaks to the workspace command to make it more accurate and efficient.",
131+
version: .v3253),
132+
125133
Change(icon: { RelativeFocusIconView(.up, size: 24).anyView },
126134
text: "Fixes a bug where a stray mouse click event might get emitted if relative focus involved Control to activate.",
127135
version: .v3252),
@@ -402,13 +410,15 @@ private struct Supporter: Hashable {
402410
}
403411

404412
private enum Version: String {
413+
case v3253 = "3.25.3"
405414
case v3252 = "3.25.2"
406415
case v3251 = "3.25.1"
407416
case v3250 = "3.25.0"
408417

409418
var color: Color {
410419
switch self {
411-
case .v3252: Color(.systemYellow)
420+
case .v3253: Color(.systemYellow)
421+
case .v3252: Color(.systemOrange)
412422
case .v3251: Color(.systemRed)
413423
case .v3250: Color(.systemPurple)
414424
}

Project.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ let mainAppTarget = Target.target(
5454
"CURRENT_PROJECT_VERSION": SettingValue(stringLiteral: buildNumber),
5555
"DEVELOPMENT_TEAM": env["TEAM_ID"],
5656
"ENABLE_HARDENED_RUNTIME": true,
57-
"MARKETING_VERSION": "3.25.2",
57+
"MARKETING_VERSION": "3.25.3",
5858
"PRODUCT_NAME": "Keyboard Cowboy"
5959
],
6060
configurations: [

0 commit comments

Comments
 (0)