Added version 1.0.0-a.3!

This commit is contained in:
Mauro Balades 2024-07-14 01:08:30 +02:00
parent 95c0a8c98f
commit 6df551361b
3 changed files with 32 additions and 3 deletions

View file

@ -39,8 +39,7 @@ export default function Features() {
<FeatureCard title="Customizable"
description="Customize Zen to fit your needs. Change the theme, layout, and more." />
<FeatureCard title="Workspaces"
description="Create workspaces to keep your tabs organized."
todo />
description="Create workspaces to keep your tabs organized." />
<FeatureCard title="Better new tab page"
description="The new tab page in Zen is designed to help you get to your favorite websites faster." />
<FeatureCard title="Tab groups"

View file

@ -9,6 +9,10 @@ export default function ReleaseNoteElement({ data }: { data: ReleaseNote }) {
<div className="mx-auto w-full px-10 md:px-0 md:w-1/2 lg:w-1/3">
<h1 className="text-4xl font-bold">Release notes for {data.version} 🎉</h1>
<p className="text-sm mt-1 font-bold text-muted-foreground">{data.date}</p>
<p className="text-md mt-4 text-muted-foreground">
If you encounter any issues, please report them on <a href="https://github.com/zen-browser/desktop/issues/">the issues page</a>.
<br/>Thanks everyone for your feedback! 🙌
</p>
{data.extra && (
<p className="text-md mt-8">{data.extra}</p>
)}

View file

@ -45,7 +45,7 @@ export const releaseNotes: ReleaseNote[] = [
{
version: "1.0.0-a.2",
date: "12/07/2024",
extra: "This release is the second alpha release of the 1.0.0-alpha series. It includes a lot of bug fixes and improvements given the feedback we received from the first alpha release. This release is still not considered stable, but it's a big step towards the first stable release. Thanks for your feedback, everyone!",
extra: "This release is the second alpha release of the 1.0.0-alpha series. It includes a lot of bug fixes and improvements given the feedback we received from the first alpha release. This release is still not considered stable, but it's a big step towards the first stable release.",
features: [
"Added support for macOS aaarch64!",
"Some performance improvements.",
@ -68,6 +68,32 @@ export const releaseNotes: ReleaseNote[] = [
"Removed support window's stub installer, it's under development.",
]
},
{
version: "1.0.0-a.3",
date: "14/07/2024",
extra: "This release is the third alpha release of the 1.0.0-alpha series. One big feature of this release is the new workspaces feature. This feature allows you to create different workspaces with different tabs and configurations. This release also includes a lot of bug fixes and improvements.",
features: [
"Added support for workspaces. (Experimental)",
"Better support for macOS aaarch64.",
],
fixes: [
{
description: "Fixed subwindows not being displayed correctly.",
issue: 54,
},
{
description: "Fixed zen's compact view mode.",
issue: 45,
},
{
description: "Fixed displaying tab icons when they are pinned.",
issue: 52,
},
],
breakingChanges: [
"Change the update URL meaning that since 1.0.0-a.2 (previous release) the browser will be able to update itself.",
]
},
].reverse();
export function releaseNoteIsAlpha(note: ReleaseNote) {