From b75ed3f6c062467e127580ca797179bf4781e209 Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Thu, 3 Sep 2026 17:20:11 -0400 Subject: [PATCH] Make Windows installer default for Windows. Fixes #605 --- src/pages/download.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/download.tsx b/src/pages/download.tsx index 516b77c0..ccb3ec45 100644 --- a/src/pages/download.tsx +++ b/src/pages/download.tsx @@ -15,7 +15,7 @@ import {releases, platformDetails, platformOrder, getArtifact} from '../releases function selectBestPlatform() { if (navigator.platform.indexOf("Win") != -1) - return 'win-with-java'; + return 'win-with-java-installer'; if (navigator.platform.indexOf("Mac") != -1) return 'mac'; if (navigator.platform.indexOf("X11") != -1) @@ -23,7 +23,7 @@ function selectBestPlatform() { if (navigator.platform.indexOf("Linux") != -1) return 'linux'; // by default, assume Windows - return 'win-with-java'; + return 'win-with-java-installer'; } function getDownloadLink(release, platform) {