Skip to content

Commit

Permalink
Update website
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed May 14, 2024
1 parent de68c4b commit bf2645d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions website/src/components/install-via-reaboot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {UAParser} from "ua-parser-js";
import {ParsedRecipe} from "reaboot-commons/src/recipe-util";
import {RecipeRef} from "./recipe-ref";

const LATEST_REABOOT_VERSION = "0.3.0";
const LATEST_REABOOT_VERSION = "0.4.0";

export function InstallViaReaboot(props: { recipe: ParsedRecipe }) {
const downloadConfig = getDownloadConfig();
Expand Down Expand Up @@ -210,32 +210,32 @@ const SUSPICIOUS_DOWNLOAD_COMMENT = "It's possible that some browsers flag the d

const macOsArm64Download = {
label: "macOS ARM64",
asset: "reaboot-macos-arm64.zip",
asset: "ReaBoot-macos-arm64.zip",
description: "Choose this if you have an Apple Silicon CPU (M1 or newer) and don't use Rosetta."
};
const macOsX86_64Download = {
label: "macOS Intel",
asset: "reaboot-macos-x86_64.zip",
asset: "ReaBoot-macos-x86_64.zip",
description: "Choose this if you have an Intel 64-bit CPU or if you want to use Rosetta on an Apple Silicon CPU."
};
const linuxX86_64Download = {
label: "Linux x86_64 (deb)",
asset: "reaboot-linux-x86_64.deb",
asset: "ReaBoot-linux-x86_64.deb",
description: "This is a package suitable for Debian and Debian derivatives (e.g. Ubuntu). If you need other Linux package formats, write to [email protected].",
};
const windowsX64ExeDownload = {
label: "Windows x64 (Portable)",
asset: "reaboot-windows-x64.exe",
asset: "ReaBoot-windows-x64.exe",
description: "This runs ReaBoot directly without having to install it first (recommended)."
};
const windowsX64NsisDownload = {
label: "Windows x64 (NSIS Installer)",
asset: "reaboot-windows-x64-setup.exe",
asset: "ReaBoot-windows-x64-setup.exe",
description: `This is an installer for ReaBoot that's compatible even with older Windows versions. ${PREFER_PORTABLE_COMMENT}`,
};
const windowsX64MsiDownload = {
label: "Windows x64 (MSI Installer)",
asset: "reaboot-windows-x64-setup.msi",
asset: "ReaBoot-windows-x64-setup.msi",
description: `This is a native installer for ReaBoot. ${PREFER_PORTABLE_COMMENT}`,
};

Expand Down

0 comments on commit bf2645d

Please sign in to comment.