Added release 1.0.0-a.7!
This commit is contained in:
@@ -43,6 +43,7 @@ export default function DownloadPage() {
|
|||||||
platform: getDefaultPlatformBasedOnUserAgent(),
|
platform: getDefaultPlatformBasedOnUserAgent(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
const watchRelease = form.watch("platform");
|
||||||
|
|
||||||
const onSubmit = async (data: any) => {
|
const onSubmit = async (data: any) => {
|
||||||
const platform = data.platform;
|
const platform = data.platform;
|
||||||
@@ -104,6 +105,7 @@ export default function DownloadPage() {
|
|||||||
<SelectItem value="MacOS">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>
|
<SelectItem value="WindowsStubInstaller" disabled>Windows Pretty Installer</SelectItem>
|
||||||
|
<SelectItem value="Flatpak">Local Flatpak (Linux)</SelectItem>
|
||||||
</SelectGroup>
|
</SelectGroup>
|
||||||
</SelectContent>
|
</SelectContent>
|
||||||
</Select>
|
</Select>
|
||||||
@@ -111,7 +113,7 @@ export default function DownloadPage() {
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
<Button type="submit">Download Zen 🎉</Button>
|
<Button type="submit">Download Zen 🎉</Button>
|
||||||
{form.getValues().platform === "Linux" && (
|
{watchRelease === "Linux" && (
|
||||||
<div className="mt-20 rounded border bg-muted p-4 text-muted-foreground">
|
<div className="mt-20 rounded border bg-muted p-4 text-muted-foreground">
|
||||||
<p>
|
<p>
|
||||||
<strong>Linux user?</strong><br/>
|
<strong>Linux user?</strong><br/>
|
||||||
@@ -120,7 +122,7 @@ export default function DownloadPage() {
|
|||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{form.getValues().platform === "MacOS" && (
|
{watchRelease === "MacOS" && (
|
||||||
<div className="mt-20 rounded border bg-muted p-4 text-muted-foreground">
|
<div className="mt-20 rounded border bg-muted p-4 text-muted-foreground">
|
||||||
<p>
|
<p>
|
||||||
<strong>Mac user?</strong><br/>
|
<strong>Mac user?</strong><br/>
|
||||||
|
|||||||
@@ -213,6 +213,39 @@ export const releaseNotes: ReleaseNote[] = [
|
|||||||
"Changed the way profile avatars are stored, may not be any issues, please report them if you find any."
|
"Changed the way profile avatars are stored, may not be any issues, please report them if you find any."
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
version: "1.0.0-a.7",
|
||||||
|
date: "27/07/2024",
|
||||||
|
extra: "This release is the seventh alpha release of the 1.0.0-alpha series. This release includes some important bug fixes and improvements. The main focus of this release was to improve some small details and improve stability.",
|
||||||
|
features: [
|
||||||
|
"A grid system for pinned tabs.",
|
||||||
|
"Flatpak support.",
|
||||||
|
"More performance improvements.",
|
||||||
|
"Added newtab wallpapers (Version 2).",
|
||||||
|
"Enabled hiding floating sidebar web panels when clicking outside.",
|
||||||
|
"Branded more the installer.",
|
||||||
|
"Used more intuitive icons for the sidebar.",
|
||||||
|
"Improved animations.",
|
||||||
|
"More compact view stability improvements.",
|
||||||
|
],
|
||||||
|
fixes: [
|
||||||
|
{
|
||||||
|
description: "Fixed the browser crashing when updating on linux.",
|
||||||
|
issue: 76
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: "Fixed workspace deleting button, deleting the wrong workspace.",
|
||||||
|
issue: 81
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: "Fixed the expanded sidebar for the compact view.",
|
||||||
|
issue: 79
|
||||||
|
},
|
||||||
|
{
|
||||||
|
description: "Fixed small margin on hidden windows.",
|
||||||
|
}
|
||||||
|
],
|
||||||
|
}
|
||||||
].reverse();
|
].reverse();
|
||||||
|
|
||||||
export function releaseNoteIsAlpha(note: ReleaseNote) {
|
export function releaseNoteIsAlpha(note: ReleaseNote) {
|
||||||
|
|||||||
@@ -4,4 +4,5 @@ export const releases: any = {
|
|||||||
WindowsZip: "zen.win64.zip",
|
WindowsZip: "zen.win64.zip",
|
||||||
MacOS: "zen.macos.dmg",
|
MacOS: "zen.macos.dmg",
|
||||||
Linux: "zen.linux.tar.bz2",
|
Linux: "zen.linux.tar.bz2",
|
||||||
|
Flatpak: "com.zen.browser.flatpak",
|
||||||
};
|
};
|
||||||
Reference in New Issue
Block a user