From 67d801da797cade7e0381ab2d013315e64f25668 Mon Sep 17 00:00:00 2001 From: Romain Failliot Date: Thu, 18 Aug 2016 13:28:01 -0400 Subject: [PATCH] Fix installer. * v0.5.0-alpha.4 * Create a directory in the start menu * Install dir is now just "Diffuse" * Set an icon for the uninstaller --- windows-installer/diffuse.new.iss | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/windows-installer/diffuse.new.iss b/windows-installer/diffuse.new.iss index 7fdb512..0b350fd 100644 --- a/windows-installer/diffuse.new.iss +++ b/windows-installer/diffuse.new.iss @@ -3,12 +3,13 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define MyAppName "Diffuse Merge Tool" -#define MyAppVersion "0.5.0-alpha.3" +#define MyAppGroupName "Diffuse" +#define MyAppVersion "0.5.0-alpha.4" #define MyAppPublisher "Diffuse Team" #define MyAppURL "https://github.com/MightyCreak/diffuse/" #define MyAppExeName "diffuse.exe" -#define SrcDir ".\build\exe.win-amd64-3.4\" +#define SrcDir "build\exe.win-amd64-3.4\" [Setup] ; NOTE: The value of AppId uniquely identifies this application. @@ -24,11 +25,13 @@ AppSupportURL={#MyAppURL} AppUpdatesURL={#MyAppURL} ArchitecturesAllowed=x64 ArchitecturesInstallIn64BitMode=x64 -DefaultDirName={pf}\{#MyAppName} -DisableProgramGroupPage=yes +DefaultDirName={pf}\{#MyAppGroupName} +DefaultGroupName={#MyAppGroupName} +;DisableProgramGroupPage=yes OutputBaseFilename=setup-diffuse-{#MyAppVersion}-x64 Compression=lzma SolidCompression=yes +UninstallDisplayIcon={app}\{#MyAppExeName} [Languages] Name: "en"; MessagesFile: "compiler:Default.isl,.\en.isl" @@ -52,7 +55,7 @@ Source: "{#SrcDir}*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs crea ; NOTE: Don't use "Flags: ignoreversion" on any shared system files [Icons] -Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" +Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon [Run]