mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 01:10:02 +02:00
156 lines
5.2 KiB
TypeScript
156 lines
5.2 KiB
TypeScript
|
|
interface Fix {
|
|
description: string;
|
|
issue?: number;
|
|
}
|
|
|
|
export interface ReleaseNote {
|
|
version: string;
|
|
date: string;
|
|
extra?: string;
|
|
fixes?: Fix[];
|
|
features?: string[];
|
|
breakingChanges?: string[];
|
|
}
|
|
|
|
export const releaseNotes: ReleaseNote[] = [
|
|
{
|
|
version: "1.0.0-a.1",
|
|
date: "11/07/2024",
|
|
extra: "This release will be the first release considered as stable. It's still in alpha, but it's the first release that we consider to be stable enough for daily use. You can start using it as your main browser right now if you are reading this!",
|
|
features: [
|
|
"Stable support for split views.",
|
|
"Updated firefox to version 128.0",
|
|
"Vertical tabs are now supported.",
|
|
"Better profile management system.",
|
|
"Full support for sidebar web panels.",
|
|
"Other minor UI additions and improvements.",
|
|
"Added support for an automatic update system.",
|
|
],
|
|
fixes: [
|
|
{
|
|
description: "Fixed a bug where the browser would crash when opening any extension.",
|
|
issue: 34,
|
|
},
|
|
{
|
|
description: "Fixed extension icon resolution on the toolbar.",
|
|
issue: 35,
|
|
},
|
|
{
|
|
description: "Applied a fix for that affected some linux users.",
|
|
issue: 36,
|
|
}
|
|
]
|
|
},
|
|
{
|
|
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.",
|
|
features: [
|
|
"Added support for macOS aaarch64!",
|
|
"Some performance improvements.",
|
|
],
|
|
fixes: [
|
|
{
|
|
description: "Fixed rounded corners of browser views for some websites.",
|
|
issue: 48,
|
|
},
|
|
{
|
|
description: "Fixed audio icon overlapping with the tab container.",
|
|
issue: 41,
|
|
},
|
|
{
|
|
description: "Changed to the correct branding for Zen Home.",
|
|
issue: 50,
|
|
}
|
|
],
|
|
breakingChanges: [
|
|
"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 aarch64.",
|
|
],
|
|
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: [
|
|
"Changed the update URL meaning that since 1.0.0-a.2 (previous release) the browser will be able to update itself.",
|
|
]
|
|
},
|
|
{
|
|
version: "1.0.0-a.4",
|
|
date: "14/07/2024",
|
|
extra: "This release is the fourth alpha release of the 1.0.0-alpha series. This release includes a lot of bug fixes and improvements. The main focus of this release was to improve some small details and the compact view mode.\n\nThis release is very small but it includes some important fixes and I wont be able to work on the browser for the next few days so I decided to release it now.\n\nSorry!",
|
|
features: [
|
|
"Improved compact view mode.",
|
|
"Tabs with no icons will now display a default icon.",
|
|
"Improved workspaces feature (Experimental).",
|
|
"Added support for pinned tabs.",
|
|
],
|
|
fixes: [
|
|
{
|
|
description: "Fixed the compact view mode not displaying correctly when it's not fullscreen.",
|
|
issue: 58,
|
|
},
|
|
{
|
|
description: "Fixed \"Weird margins in popup windows\".",
|
|
issue: 54,
|
|
},
|
|
{
|
|
description: "Fixed pinned tab icons not being displayed correctly.",
|
|
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) {
|
|
return note.version.includes("-a.");
|
|
}
|
|
|