mirror of
https://github.com/zen-browser/www.git
synced 2025-07-10 02:05:31 +02:00
Added version 1.0.0-a.3!
This commit is contained in:
parent
95c0a8c98f
commit
6df551361b
3 changed files with 32 additions and 3 deletions
|
@ -39,8 +39,7 @@ export default function Features() {
|
||||||
<FeatureCard title="Customizable"
|
<FeatureCard title="Customizable"
|
||||||
description="Customize Zen to fit your needs. Change the theme, layout, and more." />
|
description="Customize Zen to fit your needs. Change the theme, layout, and more." />
|
||||||
<FeatureCard title="Workspaces"
|
<FeatureCard title="Workspaces"
|
||||||
description="Create workspaces to keep your tabs organized."
|
description="Create workspaces to keep your tabs organized." />
|
||||||
todo />
|
|
||||||
<FeatureCard title="Better new tab page"
|
<FeatureCard title="Better new tab page"
|
||||||
description="The new tab page in Zen is designed to help you get to your favorite websites faster." />
|
description="The new tab page in Zen is designed to help you get to your favorite websites faster." />
|
||||||
<FeatureCard title="Tab groups"
|
<FeatureCard title="Tab groups"
|
||||||
|
|
|
@ -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">
|
<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>
|
<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-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 && (
|
{data.extra && (
|
||||||
<p className="text-md mt-8">{data.extra}</p>
|
<p className="text-md mt-8">{data.extra}</p>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -45,7 +45,7 @@ export const releaseNotes: ReleaseNote[] = [
|
||||||
{
|
{
|
||||||
version: "1.0.0-a.2",
|
version: "1.0.0-a.2",
|
||||||
date: "12/07/2024",
|
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: [
|
features: [
|
||||||
"Added support for macOS aaarch64!",
|
"Added support for macOS aaarch64!",
|
||||||
"Some performance improvements.",
|
"Some performance improvements.",
|
||||||
|
@ -68,6 +68,32 @@ export const releaseNotes: ReleaseNote[] = [
|
||||||
"Removed support window's stub installer, it's under development.",
|
"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();
|
].reverse();
|
||||||
|
|
||||||
export function releaseNoteIsAlpha(note: ReleaseNote) {
|
export function releaseNoteIsAlpha(note: ReleaseNote) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue