mirror of
https://github.com/zen-browser/www.git
synced 2025-07-08 09:20:00 +02:00
refactor: Update download.tsx to use "WindowsStubInstaller" instead of "WindowsInstaller" in select options
This commit is contained in:
parent
310c0eeea0
commit
fe8266bf5d
3 changed files with 29 additions and 3 deletions
|
@ -100,10 +100,10 @@ export default function DownloadPage() {
|
||||||
<SelectGroup>
|
<SelectGroup>
|
||||||
<SelectLabel>Operating System</SelectLabel>
|
<SelectLabel>Operating System</SelectLabel>
|
||||||
<SelectItem value="WindowsInstaller">Windows Installer</SelectItem>
|
<SelectItem value="WindowsInstaller">Windows Installer</SelectItem>
|
||||||
{/*<SelectItem value="WindowsStubInstaller">Windows Pretty Installer</SelectItem>*/}
|
|
||||||
<SelectItem value="WindowsZip">Windows (Zip)</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="Linux">Linux</SelectItem>
|
||||||
|
<SelectItem value="WindowsStubInstaller" disabled>Windows Pretty Installer</SelectItem>
|
||||||
</SelectGroup>
|
</SelectGroup>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
|
|
|
@ -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) {
|
export function releaseNoteIsAlpha(note: ReleaseNote) {
|
||||||
|
|
|
@ -2,6 +2,6 @@ export const releases: any = {
|
||||||
WindowsInstaller: "zen.installer.exe",
|
WindowsInstaller: "zen.installer.exe",
|
||||||
WindowsStubInstaller: "zen.installer.pretty.exe",
|
WindowsStubInstaller: "zen.installer.pretty.exe",
|
||||||
WindowsZip: "zen.win64.zip",
|
WindowsZip: "zen.win64.zip",
|
||||||
//MacOS: [],
|
MacOS: "zen.macos.dmg",
|
||||||
Linux: "zen.linux.tar.bz2",
|
Linux: "zen.linux.tar.bz2",
|
||||||
};
|
};
|
Loading…
Add table
Add a link
Reference in a new issue