From 985a863df5c120973d59a742e8f0738b4f20412e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?mauro=20=F0=9F=A4=99?= Date: Tue, 16 Jul 2024 15:24:55 +0000 Subject: [PATCH] feat: Add release notes for version 1.0.0-a.5 --- src/lib/release-notes.ts | 31 ++++++++++++++++++++++++++++++- 1 file changed, 30 insertions(+), 1 deletion(-) diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index efa982e..a42bad4 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -118,7 +118,36 @@ export const releaseNotes: ReleaseNote[] = [ issue: 52, } ], - } + }, + { + version: "1.0.0-a.5", + date: "16/07/2024", + extra: "This release is a very small release that includes some speed improvements and privacy improvements. This release is the fifth alpha release of the 1.0.0-alpha series.", + features: [ + "Improved performance of the browser, specially for windows users.", + "Changed some of firefox's default privacy settings to improve privacy.", + "Allowed using GPU for rendering by default.", + "Set the default user agent to Firefox.", + ], + fixes: [ + { + description: "Fixed license not being clear.", + issue: 62, + }, + { + description: "Fixed Zen not being able to execute on some linux distributions.", + issue: 36, + }, + { + description: "Fixed sites like whatsapp web not working correctly.", + issue: 59, + }, + { + description: "Fixed some background overlapping the browser view.", + issue: 48, + } + ], + }, ].reverse(); export function releaseNoteIsAlpha(note: ReleaseNote) {