refactor: Update download.tsx to use "WindowsStubInstaller" instead of "WindowsInstaller" in select options

This commit is contained in:
Mauro Balades 2024-07-12 23:34:13 +02:00
parent 310c0eeea0
commit fe8266bf5d
3 changed files with 29 additions and 3 deletions

View file

@ -100,10 +100,10 @@ export default function DownloadPage() {
<SelectGroup>
<SelectLabel>Operating System</SelectLabel>
<SelectItem value="WindowsInstaller">Windows Installer</SelectItem>
{/*<SelectItem value="WindowsStubInstaller">Windows Pretty Installer</SelectItem>*/}
<SelectItem value="WindowsZip">Windows (Zip)</SelectItem>
<SelectItem value="MacOS" disabled>MacOS</SelectItem>
<SelectItem value="MacOS">MacOS</SelectItem>
<SelectItem value="Linux">Linux</SelectItem>
<SelectItem value="WindowsStubInstaller" disabled>Windows Pretty Installer</SelectItem>
</SelectGroup>
</SelectContent>
</Select>

View file

@ -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) {

View file

@ -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",
};