From 2fee4030c8ac483972f673ae4bc6f3d92e118ec7 Mon Sep 17 00:00:00 2001 From: nitro <143457057+n7itro@users.noreply.github.com> Date: Tue, 20 Aug 2024 22:12:01 +0200 Subject: [PATCH 1/3] v25 release notes Feel free to add something to the extra notes for this release --- src/lib/release-notes.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index e2ee7aa..cf588a2 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -548,6 +548,23 @@ export const releaseNotes: ReleaseNote[] = [ issue: 103 } ] + }, + { + version: "1.0.0-a.25", + date: "20/08/2024", + extra: "This release is the twenty-fifth alpha release of the 1.0.0-alpha series.\n\nThis is a short release that addresses some important bugs.", + features: [ + "Updated to the latest stable version of Firefox (129.0.2)", + "Updated CSS to improve compact mode and vertical tabs styling", + "Updated the browser logo for Windows to a higher resolution", + "Fixed severe issue with platform specific preference handling", + ], + fixes: [ + { + description: "Issue with edge detection for expand-on-hover sidebar feature", + issue: 355 + } + ] } ].reverse(); From 2c9137833a82f952d08b5b3689eac9c94dc8a396 Mon Sep 17 00:00:00 2001 From: nitro <143457057+n7itro@users.noreply.github.com> Date: Tue, 20 Aug 2024 22:19:36 +0200 Subject: [PATCH 2/3] added workspace update --- src/lib/release-notes.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index cf588a2..665ca32 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -558,11 +558,16 @@ export const releaseNotes: ReleaseNote[] = [ "Updated CSS to improve compact mode and vertical tabs styling", "Updated the browser logo for Windows to a higher resolution", "Fixed severe issue with platform specific preference handling", + "Added feature to set a default workspace" ], fixes: [ { description: "Issue with edge detection for expand-on-hover sidebar feature", issue: 355 + }, + { + description: "Can't switch workspaces", + issue: 359 } ] } From 130b852849f4a3c0e0ead80b04254e1eff78c6fe Mon Sep 17 00:00:00 2001 From: nitro <143457057+n7itro@users.noreply.github.com> Date: Tue, 20 Aug 2024 22:21:59 +0200 Subject: [PATCH 3/3] removed wrong issue --- src/lib/release-notes.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index 665ca32..33a0998 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -564,10 +564,6 @@ export const releaseNotes: ReleaseNote[] = [ { description: "Issue with edge detection for expand-on-hover sidebar feature", issue: 355 - }, - { - description: "Can't switch workspaces", - issue: 359 } ] }