diff --git a/src/components/download.tsx b/src/components/download.tsx index 30930dd..eaff6c8 100644 --- a/src/components/download.tsx +++ b/src/components/download.tsx @@ -100,10 +100,10 @@ export default function DownloadPage() { Operating System Windows Installer - {/*Windows Pretty Installer*/} Windows (Zip) - MacOS + MacOS Linux + Windows Pretty Installer diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index 9a71ae2..85660eb 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -42,6 +42,32 @@ 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!", + features: [ + "Added support for macOS arm64!", + "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.", + ] + }, ]; export function releaseNoteIsAlpha(note: ReleaseNote) { diff --git a/src/lib/releases.ts b/src/lib/releases.ts index f371b06..99f4dec 100644 --- a/src/lib/releases.ts +++ b/src/lib/releases.ts @@ -2,6 +2,6 @@ export const releases: any = { WindowsInstaller: "zen.installer.exe", WindowsStubInstaller: "zen.installer.pretty.exe", WindowsZip: "zen.win64.zip", - //MacOS: [], + MacOS: "zen.macos.dmg", Linux: "zen.linux.tar.bz2", }; \ No newline at end of file