-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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(); | ||
|
@@ -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}`, | ||
}; | ||
|
||
|