diff --git a/src/components/LatestRelease/index.jsx b/src/components/LatestRelease/index.jsx index 8bb1563e..bb2eaee5 100644 --- a/src/components/LatestRelease/index.jsx +++ b/src/components/LatestRelease/index.jsx @@ -6,7 +6,11 @@ function LatestReleaseButton() { "https://github.com/evo-lua/evo-runtime/releases" ); const [releaseInfo, setReleaseInfo] = useState( - "Fetching latest release info..." + <> + Fetching latest release info... +
+ (JavaScript must be enabled for this to work) + ); const [assets, setAssets] = useState([]); @@ -26,7 +30,12 @@ function LatestReleaseButton() { setDownloadUrl(releaseUrl); setReleaseInfo( - `Latest Release: ${releaseTag} (${releaseDate.toDateString()} · ${humanReadableTimeDifference} ago)` + <> + Latest Release: +
+ {releaseTag} ({releaseDate.toDateString()} ·{" "} + {humanReadableTimeDifference} ago) + ); }) .catch((error) => { @@ -51,7 +60,7 @@ function LatestReleaseButton() {
- Download for Windows (x64) + Download for Windows Download for Linux (x64) @@ -59,6 +68,9 @@ function LatestReleaseButton() { Download for Mac OS (x64) + + Download for Mac OS (M1) +
);