From 3694a1f3ad0f1ff39aa98f991ddf49dd56876da6 Mon Sep 17 00:00:00 2001 From: nitro <143457057+n7itro@users.noreply.github.com> Date: Tue, 24 Sep 2024 23:30:45 +0200 Subject: [PATCH] a.5 release notes --- src/lib/release-notes.ts | 31 +++++++++++++++++++++++++------ 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index a152a6c..f1ec49e 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -994,7 +994,7 @@ export const releaseNotes: ReleaseNote[] = [ fixes: [ { description: "The New Tab button is not visible", - isse: 1640, + issue: 1640, }, { description: "The Unified Extensions button is not visible", @@ -1009,15 +1009,34 @@ export const releaseNotes: ReleaseNote[] = [ }, { description: "Fixed an issue with reordering tabs", - }, - { - description: "Fixed an issue with ⌘ keyboard shortcuts on macOS", - }, + } ], }, + { + version: "1.0.1-a.5", + date: "24/09/2024", + image: false, + workflowId: 11020784612, + extra: "This update is a small patch to fix some issues that weren't addressed in the previous release!", + features: [ + "Moved application menu button to the right", + "Added new shortcuts", + "Collapsed tab sidebar is now smaller" + ], + fixes: [ + { + description: "Fixed issue with hovering over window control buttons (macOS)", + }, + { + description: "(Hopefully) resolved all issues with keyboard shortcuts", + issue: 1629 + }, + + ], + } ].reverse(); export function releaseNoteIsAlpha(note: ReleaseNote) { "use client"; return note.version.includes("-a."); -} +} \ No newline at end of file