Merge pull request #203 from zen-browser/release-notes

a-6 release notes
This commit is contained in:
mauro 🤙
2024-09-30 08:03:58 +02:00
committed by GitHub
2 changed files with 54 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 851 KiB

View File

@@ -1033,10 +1033,63 @@ export const releaseNotes: ReleaseNote[] = [
},
],
},
{
version: "1.0.1-a.6",
date: "29/09/2024",
image: true,
workflowId: 11095257662,
extra: "This release fixes a few critical bugs and introduces Tab Unloading! Unused tabs will free up memory with this new feature",
features: [
"Added Paste and Go button",
"Added Tab Unloading",
"Sidebar Web Panel can now be moved freely",
"Added warning when shortcut setting changes are unsaved",
"Enabled container tabs by default",
"Improved Expand Tabs on Hover layout"
],
themeChanges: [
"Toggle inputs will not use the themed tertiary color",
],
breakingChanges: [
"The keyboard shortcuts will be overriden by the defaults ones in this update.",
],
fixes: [
{
description: "Fixed Firefox add-ons not updating",
issue: 1173
},
{
description: "Fixed expand-on-hover shifting web page",
issue: 1718
},
{
description: "Fixed cycling between workspaces with shortcuts",
},
{
description: "Removed duplicate shortcut options in the settings",
issue: 1784
},
{
description: "Restored missing keyboard shortcuts",
issue: 1706
},
{
description: "Fixed keyboard shortcuts not saving",
issue: 1715
},
{
description: "Fixed workspace names that start with an emoji",
issue: 1732
},
{
description: "Fixed shortcut keys incorrectly displayed on macOS"
}
]
}
].reverse();
export function releaseNoteIsAlpha(note: ReleaseNote) {
"use client";
return note.version.includes("-a.");
}
}