From 6e26718f364c4a715b126ad20c8cdb8926342ad2 Mon Sep 17 00:00:00 2001 From: JHubi1 Date: Fri, 11 Apr 2025 22:32:32 +0200 Subject: [PATCH] Installer default option change --- windows_installer/ollama.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows_installer/ollama.iss b/windows_installer/ollama.iss index c843b18..0b9e211 100644 --- a/windows_installer/ollama.iss +++ b/windows_installer/ollama.iss @@ -96,7 +96,7 @@ begin { TODO: Uncoment when arm64 is ready! } {if (ProcessorArchitecture = paArm64) and (ExpandConstant('{#AppArchitectures}') = 'x64') then begin - if SuppressibleTaskDialogMsgBox('Architecture Compatibility', 'You are running the x64 version of the installer on an arm64 device. There is an arm64 version avaliable for download. It is recommended to be used. Do you wish to continue?', mbError, MB_YESNO, [SetupMessage(msgButtonYes), SetupMessage(msgButtonNo)], 0, IDNO) = IDNO then + if SuppressibleTaskDialogMsgBox('Architecture Compatibility', 'You are running the x64 version of the installer on an arm64 device. There is an arm64 version avaliable for download. It is recommended to be used. Do you wish to continue?', mbError, MB_YESNO, [SetupMessage(msgButtonYes), SetupMessage(msgButtonNo)], 0, IDYES) = IDNO then begin Result := false; end;