Skip to content

Commit 938489b

Browse files
committed
Update release notes
1 parent 72b5237 commit 938489b

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

App/Sources/UI/Releases/Release3_27.swift

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,14 @@ private struct ChangesView: View {
161161
@ObserveInjection var inject
162162

163163
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+
164172
Change(icon: { ScriptIconView(size: 24).anyView },
165173
text: "Improve shell scripting errors by showing the error message in the notification.",
166174
version: .v3271),
@@ -227,6 +235,7 @@ private struct ChangesView: View {
227235
GridRow {
228236
change.icon
229237
ZenDivider(.vertical)
238+
.padding(.vertical, 4)
230239
let markdown: LocalizedStringKey = LocalizedStringKey(change.text)
231240
Text(markdown)
232241
.tint(Color.accentColor)
@@ -329,6 +338,11 @@ private struct SupportersView: View {
329338
index: 16,
330339
imageUrl: URL(string: "https://avatars.githubusercontent.com/u/45841003?v=4"),
331340
githubHandle: "TaylorJKing"),
341+
342+
Supporter(
343+
index: 16,
344+
imageUrl: URL(string: "https://avatars.githubusercontent.com/u/227768?v=4"),
345+
githubHandle: "brunns"),
332346
]
333347

334348
var body: some View {
@@ -394,7 +408,7 @@ private struct Supporter: Hashable {
394408
let githubHandle: String
395409
}
396410

397-
private enum Version: String {
411+
private enum Version: String, Equatable {
398412
case v3275 = "3.27.5"
399413
case v3274 = "3.27.4"
400414
case v3273 = "3.27.3"

0 commit comments

Comments
 (0)