File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -122,6 +122,14 @@ private struct ChangesView: View {
122
122
@ObserveInjection var inject
123
123
124
124
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
+
125
133
Change ( icon: { RelativeFocusIconView ( . up, size: 24 ) . anyView } ,
126
134
text: " Fixes a bug where a stray mouse click event might get emitted if relative focus involved Control to activate. " ,
127
135
version: . v3252) ,
@@ -402,13 +410,15 @@ private struct Supporter: Hashable {
402
410
}
403
411
404
412
private enum Version : String {
413
+ case v3253 = " 3.25.3 "
405
414
case v3252 = " 3.25.2 "
406
415
case v3251 = " 3.25.1 "
407
416
case v3250 = " 3.25.0 "
408
417
409
418
var color : Color {
410
419
switch self {
411
- case . v3252: Color ( . systemYellow)
420
+ case . v3253: Color ( . systemYellow)
421
+ case . v3252: Color ( . systemOrange)
412
422
case . v3251: Color ( . systemRed)
413
423
case . v3250: Color ( . systemPurple)
414
424
}
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ let mainAppTarget = Target.target(
54
54
" CURRENT_PROJECT_VERSION " : SettingValue ( stringLiteral: buildNumber) ,
55
55
" DEVELOPMENT_TEAM " : env [ " TEAM_ID " ] ,
56
56
" ENABLE_HARDENED_RUNTIME " : true ,
57
- " MARKETING_VERSION " : " 3.25.2 " ,
57
+ " MARKETING_VERSION " : " 3.25.3 " ,
58
58
" PRODUCT_NAME " : " Keyboard Cowboy "
59
59
] ,
60
60
configurations: [
You can’t perform that action at this time.
0 commit comments