Redesigned the website!

This commit is contained in:
Mauro Balades
2024-08-01 20:15:50 +02:00
parent c6a979d585
commit ac79dea1f7
12 changed files with 1161 additions and 295 deletions

View File

@@ -1,7 +1,46 @@
export const releases: any = {
WindowsInstaller: "zen.installer.exe",
WindowsStubInstaller: "zen.installer.pretty.exe",
WindowsZip: "zen.win64.zip",
MacOS: "zen.macos.dmg",
Linux: "zen.linux.tar.bz2",
};
export const releases: any = {
WindowsInstaller: "zen.installer-x64.exe",
WindowsInstaller32: "zen.installer-x32.exe",
WindowsZip: "zen.win-x64.zip",
WindowsZip32: "zen.win-x32.zip",
MacOS: "zen.macos-aarch64.dmg",
MacOSIntel: "zen.macos-x64.dmg",
Linux: "zen.linux-x64.tar.bz2",
Linux32: "zen.linux-x32.tar.bz2",
LinuxAppImage: "zen-x64.AppImage",
LinuxAppImage32: "zen-x32.AppImage",
};
// platform
// -> arch
// -> file
export const releaseTree: any = {
windows: {
x64: {
installer: "WindowsInstaller",
portable: "WindowsZip",
},
x32: {
installer: "WindowsInstaller32",
portable: "WindowsZip32",
},
},
macos: {
x64: "MacOSIntel",
arm: "MacOS",
},
linux: {
x64: {
portable: "Linux",
appimage: "LinuxAppImage",
},
x32: {
portable: "Linux32",
appimage: "LinuxAppImage32",
},
},
};