@@ -161,6 +161,14 @@ private struct ChangesView: View {
161
161
@ObserveInjection var inject
162
162
163
163
private let changes : [ Change < AnyView > ] = [
164
+ Change ( icon: { BugFixIconView ( size: 24 ) . anyView } ,
165
+ text: " Fix bug where new Workspace ended up adding an App Focus command. " ,
166
+ version: . v3271) ,
167
+
168
+ Change ( icon: { ImprovementIconView ( size: 24 ) . anyView } ,
169
+ text: " Improve performance when handling repeating keyboard events that don't match a workflow. " ,
170
+ version: . v3271) ,
171
+
164
172
Change ( icon: { ScriptIconView ( size: 24 ) . anyView } ,
165
173
text: " Improve shell scripting errors by showing the error message in the notification. " ,
166
174
version: . v3271) ,
@@ -227,6 +235,7 @@ private struct ChangesView: View {
227
235
GridRow {
228
236
change. icon
229
237
ZenDivider ( . vertical)
238
+ . padding ( . vertical, 4 )
230
239
let markdown : LocalizedStringKey = LocalizedStringKey ( change. text)
231
240
Text ( markdown)
232
241
. tint ( Color . accentColor)
@@ -329,6 +338,11 @@ private struct SupportersView: View {
329
338
index: 16 ,
330
339
imageUrl: URL ( string: " https://avatars.githubusercontent.com/u/45841003?v=4 " ) ,
331
340
githubHandle: " TaylorJKing " ) ,
341
+
342
+ Supporter (
343
+ index: 16 ,
344
+ imageUrl: URL ( string: " https://avatars.githubusercontent.com/u/227768?v=4 " ) ,
345
+ githubHandle: " brunns " ) ,
332
346
]
333
347
334
348
var body : some View {
@@ -394,7 +408,7 @@ private struct Supporter: Hashable {
394
408
let githubHandle : String
395
409
}
396
410
397
- private enum Version : String {
411
+ private enum Version : String , Equatable {
398
412
case v3275 = " 3.27.5 "
399
413
case v3274 = " 3.27.4 "
400
414
case v3273 = " 3.27.3 "
0 commit comments