From cc39bfc5ff2437a697fb07b8cd7bf64d5873c071 Mon Sep 17 00:00:00 2001 From: Zoe Roux Date: Mon, 18 Oct 2021 21:43:35 +0200 Subject: [PATCH] Windows: Fixing windows setup --- deployment/kyoo-windows.iss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deployment/kyoo-windows.iss b/deployment/kyoo-windows.iss index 276fe810..1986eb0d 100644 --- a/deployment/kyoo-windows.iss +++ b/deployment/kyoo-windows.iss @@ -9,7 +9,7 @@ AppUpdatesURL=https://github.com/AnonymusRaccoon/Kyoo DefaultDirName={commonpf}\Kyoo DisableProgramGroupPage=yes LicenseFile={#kyoo}\LICENSE -SetupIconFile={#kyoo}\wwwroot\favicon.ico +SetupIconFile={#kyoo}\wwwroot\icon-256x256.ico Compression=lzma SolidCompression=yes WizardStyle=modern @@ -54,7 +54,7 @@ procedure InitializeWizard; begin DataDirPage := CreateInputDirPage(wpSelectDir, 'Choose Data Location', 'Choose the folder in which to install the Kyoo data', - 'The installer will set the following folder for Kyoo. To install in a different folder, click Browse and select another folder.' + + 'The installer will set the following folder for Kyoo. To install in a different folder, click Browse and select another folder.' + 'Please make sure the folder exists and is accessible. Do not choose the server install folder. Click Next to continue.', False, ''); DataDirPage.Add(''); @@ -64,4 +64,4 @@ end; function GetDataDir(Param: String): String; begin Result := DataDirPage.Values[0]; -end; \ No newline at end of file +end;