From b13475cbef10789f4e625bfd5a929a3612132db7 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Wed, 7 Aug 2024 22:51:40 +0200 Subject: [PATCH] feat: Release version 1.0.0-a.15 with Firefox support, split view improvements, performance enhancements, and sidebar placement option Fixes: #181, #180 --- src/lib/release-notes.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index 4fedbe6..5c2be12 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -402,6 +402,27 @@ export const releaseNotes: ReleaseNote[] = [ }, ], }, + { + version: "1.0.0-a.15", + date: "07/08/2024", + extra: "This release is the fifteenth alpha release of the 1.0.0-alpha series.\n\nI've skipped version 1.0.0-a.14 because of the quality of the release, it was not good enough to be released.\n\nThis release includes some bug fixes and improvements.\n\nThanks everyone for the feedback! It may look like a small release but it includes some important fixes and improvements.", + features: [ + "Added support for the latest version of Firefox (129.0).", + "Reworked on split views.", + "Improved the performance of the browser.", + "Allow the sidebar to be at the right side of the browser.", + ], + fixes: [ + { + description: "Blank space when closing tabs", + issue: 181, + }, + { + description: "Tab bar: misaligned icons and hover background", + issue: 180, + }, + ], + } ].reverse(); export function releaseNoteIsAlpha(note: ReleaseNote) {