From 2c991811754f8a72bc83eaaddc132b4a14351957 Mon Sep 17 00:00:00 2001 From: nitro <143457057+n7itro@users.noreply.github.com> Date: Tue, 20 Aug 2024 01:32:50 +0200 Subject: [PATCH] v24 release notes --- src/lib/release-notes.ts | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index 055f0a3..e2ee7aa 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -474,6 +474,7 @@ export const releaseNotes: ReleaseNote[] = [ "Refactored parts of the Zen interface theme", "Disabled Reader Mode's parse-on-load function", "Updated network and buffer preferences", + "Improved font rendering", "Introduced support for WebAssembly SIMD", "Optimized macOS version for Nehalem architecture", "Added Branding Assets page", @@ -518,6 +519,36 @@ export const releaseNotes: ReleaseNote[] = [ } ], }, + { + version: "1.0.0-a.24", + date: "20/08/2024", + extra: "This release is the twenty-fourth alpha release of the 1.0.0-alpha series.\n\nThis release brings the long-awaited expand on hover feature, as well as some bug fixes and improvements to the theme store and documentation.", + features: [ + "Added a frequently asked questions page to the documentation", + "Added platform specific preferences to Zen themes", + "Added expand-on-hover feature for the tab sidebar", + "Improved scrollbar appearance on Windows", + "Improved URL bar background color" + ], + fixes: [ + { + description: "Mute button is shown on inactive collapsed tabs", + issue: 322 + }, + { + description: "Visual bug on bottom sidebar buttons", + issue: 304 + }, + { + description: "Closing tabs makes other tabs briefly smaller", + issue: 337 + }, + { + description: "Checkboxes are hard to see", + issue: 103 + } + ] + } ].reverse(); export function releaseNoteIsAlpha(note: ReleaseNote) {