diff --git a/public/releases/1.0.1-a.6.png b/public/releases/1.0.1-a.6.png new file mode 100644 index 0000000..4e32e23 Binary files /dev/null and b/public/releases/1.0.1-a.6.png differ diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index f1ec49e..e85f038 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -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."); -} \ No newline at end of file +}