espanso/scripts/resources/windows/setupscript.iss

68 lines
2.5 KiB
Plaintext
Raw Normal View History

2019-09-16 14:20:52 +00:00
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define MyAppName "Espanso"
2019-09-16 14:20:52 +00:00
#define MyAppVersion "{{{app_version}}}"
#define MyAppPublisher "Federico Terzi"
2019-09-16 14:20:52 +00:00
#define MyAppURL "{{{app_url}}}"
#define MyAppExeName "espansod.exe"
2021-07-17 13:59:08 +00:00
#define MyAppUserModelID "{{5E3B6C0F-1A4D-45C4-8872-D8174702101A}"
2019-09-16 14:20:52 +00:00
[Setup]
; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{0E3D83CE-A644-4E0E-8487-657C7ECF6BF9}
AppName={#MyAppName}
AppVersion={#MyAppVersion}
;AppVerName={#MyAppName} {#MyAppVersion}
AppPublisher={#MyAppPublisher}
AppPublisherURL={#MyAppURL}
AppSupportURL={#MyAppURL}
AppUpdatesURL={#MyAppURL}
DefaultDirName={autopf}\{#MyAppName}
DisableProgramGroupPage=yes
LicenseFile="{{{app_license}}}"
; Remove the following line to run in administrative install mode (install for all users.)
PrivilegesRequired=lowest
OutputDir="{{{output_dir}}}"
OutputBaseFilename={{{output_name}}}
SetupIconFile="{{{app_icon}}}"
Compression=lzma
SolidCompression=yes
WizardStyle=modern
ChangesEnvironment=yes
[Languages]
Name: "english"; MessagesFile: "compiler:Default.isl"
[Files]
Source: "{{{executable_path}}}"; DestDir: "{app}"; DestName: "espansod.exe"; Flags: ignoreversion
2019-09-16 14:35:58 +00:00
Source: "{{{app_icon}}}"; DestDir: "{app}"; Flags: ignoreversion
Source: "{{{cli_helper}}}"; DestDir: "{app}"; Flags: ignoreversion
{{{dll_include}}}
2019-09-16 14:20:52 +00:00
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
[Icons]
2021-07-17 13:59:08 +00:00
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Parameters: "launcher"; AppUserModelID: "{#MyAppUserModelID}"; IconFilename: "{app}\icon.ico";
;Name: "{userstartup}\espanso"; Filename: "{app}\espansod.exe"; Parameters: "launcher"; Tasks:StartMenuEntry;
2019-09-16 14:20:52 +00:00
;[Tasks]
;Name: modifypath; Description: Add espanso to PATH ( recommended );
;Name: "StartMenuEntry" ; Description: "Start espanso at Windows startup" ;
2019-09-16 14:20:52 +00:00
; [Code]
; const
; ModPathName = 'modifypath';
; ModPathType = 'user';
; function ModPathDir(): TArrayOfString;
; begin
; setArrayLength(Result, 1)
; Result[0] := ExpandConstant('{app}');
; end;
; #include "modpath.iss"
2019-09-16 14:20:52 +00:00
[Run]
Filename: "{app}\{#MyAppExeName}"; Parameters: "launcher"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
2019-09-16 14:20:52 +00:00
2019-09-16 14:35:58 +00:00
[UninstallRun]
Filename: "{cmd}"; Parameters: "/C ""taskkill /im espansod.exe /f /t"