123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- #define AppExeName "SyncTrayzor.exe"
- #define AppRoot "..\.."
- #define AppSrc AppRoot + "\src\SyncTrayzor"
- #define AppBin AppRoot +"\bin\" + Arch + "\Release"
- #define AppExe AppBin + "\SyncTrayzor.exe"
- #define AppName GetStringFileInfo(AppExe, "ProductName")
- #define AppVersion GetVersionNumbersString(AppExe)
- #define AppPublisher "SyncTrayzor"
- #define AppURL "https://github.com/canton7/SyncTrayzor"
- #define AppDataFolder "SyncTrayzor"
- #define RunRegKey "Software\Microsoft\Windows\CurrentVersion\Run"
- #define DotNetInstallerExe "dotNet472Setup.exe"
- #define DonateUrl "https://synctrayzor.antonymale.co.uk/donate"
- [Setup]
- AppId={{#AppId}
- AppName={#AppName} ({#Arch})
- AppVersion={#AppVersion}
- VersionInfoVersion={#AppVersion}
- ;AppVerName={#AppName} {#AppVersion}
- AppPublisher={#AppPublisher}
- AppPublisherURL={#AppURL}
- AppSupportURL={#AppURL}
- AppUpdatesURL={#AppURL}
- DefaultDirName={commonpf}\{#AppName}
- DefaultGroupName={#AppName}
- AllowNoIcons=yes
- OutputDir="."
- OutputBaseFilename={#AppName}Setup-{#Arch}
- SetupIconFile={#AppSrc}\Icons\default.ico
- WizardSmallImageFile=..\icon.bmp
- Compression=lzma2/max
- ;Compression=None
- SolidCompression=yes
- PrivilegesRequired=admin
- CloseApplications=yes
- RestartApplications=no
- ; If we try and close CefSharp.BrowserSubprocess.exe we'll fail - it doesn't respond well
- ; However if we close *just* SyncTrayzor, that will take care of shutting down CefSharp and syncthing
- CloseApplicationsFilter=SyncTrayzor.exe
- TouchDate=current
- WizardStyle=modern
- ; We do access user areas, but only as a best-effort attempt to clean up after ourselves
- UsedUserAreasWarning=no
- #if "x64" == Arch
- ArchitecturesInstallIn64BitMode=x64
- ArchitecturesAllowed=x64
- #endif
- [Languages]
- Name: "english"; MessagesFile: "compiler:Default.isl"
- [CustomMessages]
- InstallingDotNetFramework=Installing .NET Framework. This might take a few minutes...
- DotNetFrameworkFailedToLaunch=Failed to launch .NET Framework Installer with error "%1". Please fix the error then run this installer again.
- DotNetFrameworkFailed1602=.NET Framework installation was cancelled. This installation can continue, but be aware that this application may not run unless the .NET Framework installation is completed successfully.
- DotNetFrameworkFailed1603=A fatal error occurred while installing the .NET Framework. Please fix the error, then run the installer again.
- DotNetFrameworkFailed5100=Your computer does not meet the requirements of the .NET Framework. Please consult the documentation.
- DotNetFrameworkFailedOther=The .NET Framework installer exited with an unexpected status code "%1". Please review any other messages shown by the installer to determine whether the installation completed successfully, and abort this installation and fix the problem if it did not.
- [Tasks]
- Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
- [Dirs]
- Name: "{userappdata}\{#AppDataFolder}"
- [Files]
- ; Near the beginning, as it's extracted first and this makes it cheaper
- Source: "..\{#DotNetInstallerExe}"; DestDir: {tmp}; Flags: dontcopy nocompression noencryption
- Source: "{#AppBin}\*"; DestDir: "{app}"; Excludes: "*.xml,*.vshost.*,*.config,*.log,*.pdb,FluentValidation.resources.dll,System.Windows.Interactivity.resources.dll,syncthing.exe,data,logs,cef_extensions.pak,d3dcompiler_47.dll,libEGL.dll,libGLESv2.dll,swiftshader/libEGL.dll,swiftshader/libGLESv2.dll"; Flags: ignoreversion recursesubdirs
- Source: "{#AppBin}\SyncTrayzor.exe.Installer.config"; DestDir: "{app}"; DestName: "SyncTrayzor.exe.config"; Flags: ignoreversion
- Source: "{#AppSrc}\Icons\default.ico"; DestDir: "{app}"; Flags: ignoreversion
- Source: "{#AppRoot}\*.md"; DestDir: "{app}"; Flags: ignoreversion
- Source: "{#AppRoot}\*.txt"; DestDir: "{app}"; Flags: ignoreversion
- Source: "vc++\*.dll"; DestDir: "{app}"; Flags: ignoreversion
- Source: "ucrt\*.dll"; DestDir: "{app}"; Flags: ignoreversion; OnlyBelowVersion: 10.0
- Source: "syncthing.exe"; DestDir: "{app}"; DestName: "syncthing.exe"; Flags: ignoreversion
- [InstallDelete]
- Type: files; Name: "{app}\msvcp120.dll"
- Type: files; Name: "{app}\msvcr120.dll"
- Type: files; Name: "{app}\vccorlib120.dll"
- Type: files; Name: "{app}\*.pdb"
- Type: files; Name: "{app}\System.Windows.Interactivity.dll"
- [Icons]
- Name: "{group}\{#AppName}"; Filename: "{app}\{#AppExeName}"
- Name: "{group}\{cm:UninstallProgram,{#AppName}}"; Filename: "{uninstallexe}"
- Name: "{commondesktop}\{#AppName}"; Filename: "{app}\{#AppExeName}"; Tasks: desktopicon
- [Run]
- Filename: "{app}\{#AppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(AppName, '&', '&&')}}"; Flags: nowait postinstall; Parameters: {code:SyncTrayzorStartFlags}; Check: ShouldStartSyncTrayzor
- [Code]
- var
- GlobalRestartRequired: boolean;
- function DotNetIsMissing(): Boolean;
- var
- Exists: Boolean;
- Release: Cardinal;
- begin
- // https://docs.microsoft.com/en-us/dotnet/framework/migration-guide/how-to-determine-which-versions-are-installed#minimum-version
- Exists := RegQueryDWordValue(HKEY_LOCAL_MACHINE, 'SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full', 'Release', Release);
- Result := not Exists or (Release < 461808);
- end;
- // Adapted from https://blogs.msdn.microsoft.com/davidrickard/2015/07/17/installing-net-framework-4-5-automatically-with-inno-setup/
- function InstallDotNet(): String;
- var
- StatusText: string;
- ResultCode: Integer;
- begin
- StatusText := WizardForm.StatusLabel.Caption;
- WizardForm.StatusLabel.Caption := CustomMessage('InstallingDotNetFramework');
- WizardForm.ProgressGauge.Style := npbstMarquee;
- try
- ExtractTemporaryFile('{#DotNetInstallerExe}');
- if not Exec(ExpandConstant('{tmp}\{#DotNetInstallerExe}'), '/passive /norestart /showrmui /showfinalerror', '', SW_SHOW, ewWaitUntilTerminated, ResultCode) then
- begin
- Result := FmtMessage(CustomMessage('DotNetFrameworkFailedToLaunch'), [SysErrorMessage(ResultCode)]);
- end
- else
- begin
- // See https://msdn.microsoft.com/en-us/library/ee942965(v=vs.110).aspx#return_codes
- case resultCode of
- 0: begin
- // Successful
- end;
- 1602 : begin
- MsgBox(CustomMessage('DotNetFrameworkFailed1602'), mbInformation, MB_OK);
- end;
- 1603: begin
- Result := CustomMessage('DotNetFrameworkFailed1603');
- end;
- 1641: begin
- GlobalRestartRequired := True;
- end;
- 3010: begin
- GlobalRestartRequired := True;
- end;
- 5100: begin
- Result := CustomMessage('DotNetFrameworkFailed5100');
- end;
- else begin
- MsgBox(FmtMessage(CustomMessage('DotNetFrameworkFailedOther'), [IntToStr(ResultCode)]), mbError, MB_OK);
- end;
- end;
- end;
- finally
- WizardForm.StatusLabel.Caption := StatusText;
- WizardForm.ProgressGauge.Style := npbstNormal;
- end;
- end;
- procedure BumpInstallCount;
- var
- FileContents: AnsiString;
- InstallCount: integer;
- begin
- { Increment the install count in InstallCount.txt if it exists, or create it with the contents '1' if it doesn't }
- if LoadStringFromFile(ExpandConstant('{app}\InstallCount.txt'), FileContents) then
- begin
- InstallCount := StrTointDef(Trim(string(FileContents)), 0) + 1;
- end
- else
- begin
- InstallCount := 1;
- end;
- SaveStringToFile(ExpandConstant('{app}\InstallCount.txt'), IntToStr(InstallCount), False);
- end;
- procedure URLLabelOnClick(Sender: TObject);
- var
- ErrorCode: Integer;
- begin
- ShellExec('open', '{#DonateUrl}', '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
- end;
- procedure InitializeWizard;
- var
- URLLabel: TNewStaticText;
- begin
- URLLabel := TNewStaticText.Create(WizardForm);
- URLLabel.Caption := 'Donate';
- URLLabel.Cursor := crHand;
- URLLabel.Parent := WizardForm;
- URLLabel.Font.Style := URLLabel.Font.Style + [fsUnderline];
- URLLabel.Font.Color := clBlue;
- URLLabel.Top := WizardForm.ClientHeight - URLLabel.Height - 30;
- URLLabel.Left := ScaleX(20)
- URLLabel.Anchors := [akLeft, akBottom]
- URLLabel.OnClick := @URLLabelOnClick;
- end;
- procedure CurStepChanged(CurStep: TSetupStep);
- var
- FindRec: TFindRec;
- FolderPath: String;
- FilePath: String;
- ExeConfig: String;
- begin
- if CurStep = ssInstall then
- begin
- BumpInstallCount();
- { We might be being run from ProcessRunner.exe, *and* we might be trying to update it. Funsies. Let's rename it (which Windows lets us do) }
- DeleteFile(ExpandConstant('{app}\ProcessRunner.exe.old'));
- RenameFile(ExpandConstant('{app}\ProcessRunner.exe'), ExpandConstant('{app}\ProcessRunner.exe.old'));
- Log(ExpandConstant('Looking for resource files in {app}\*'));
- { Remove resource files. This means that out-of-date languages will be removed, which (as a last-ditch resore) will alert maintainers that something's wrong }
- if FindFirst(ExpandConstant('{app}\*'), FindRec) then
- begin
- try
- repeat
- if (FindRec.Attributes and FILE_ATTRIBUTE_DIRECTORY <> 0) and (FindRec.Name <> '.') and (FindRec.Name <> '..') then
- begin
- FolderPath := ExpandConstant('{app}\') + FindRec.Name;
- FilePath := FolderPath + '\SyncTrayzor.resources.dll';
- if DeleteFile(FilePath) then
- begin
- Log('Deleted ' + FilePath);
- if DelTree(FolderPath, True, False, False) then
- Log('Deleted ' + FolderPath);
- end;
- end;
- until not FindNext(FindRec);
- finally
- FindClose(FindRec);
- end;
- end;
- end
- else if CurStep = ssPostInstall then
- begin
- ExeConfig := ExpandConstant('{param:SyncTrayzorExeConfig}');
- if ExeConfig <> '' then
- begin
- if FileExists(ExeConfig) then
- begin
- FileCopy(ExeConfig, ExpandConstant('{app}\SyncTrayzor.exe.config'), false);
- end
- else
- begin
- MsgBox('Could not find SyncTrayzorExeConfig file: ' + ExeConfig + '. Using default.', mbError, MB_OK);
- end
- end
- end
- end;
- function CmdLineParamGiven(const Value: String): Boolean;
- var
- I: Integer;
- begin
- // Can't use {param}, as it doesn't match flags with no value
- Result := False;
- for I := 1 to ParamCount do
- if CompareText(ParamStr(I), Value) = 0 then
- begin
- Result := True;
- Exit;
- end;
- end;
- function PrepareToInstall(var NeedsRestart: Boolean): String;
- begin
- // 'NeedsRestart' only has an effect if we return a non-empty string, thus aborting the installation.
- // If the installers indicate that they want a restart, this should be done at the end of installation.
- // Therefore we set the global 'restartRequired' if a restart is needed, and return this from NeedRestart()
- if not CmdLineParamGiven('/SkipDotNetInstall') and DotNetIsMissing() then
- begin
- Result := InstallDotNet();
- end;
- end;
- function NeedRestart(): Boolean;
- begin
- Result := GlobalRestartRequired;
- end;
- function ShouldStartSyncTrayzor(): Boolean;
- begin
- Result := (not WizardSilent()) or CmdLineParamGiven('/StartSyncTrayzor');
- end;
- function SyncTrayzorStartFlags(param: String): String;
- begin
- if WizardSilent() then begin
- Result := '-minimized'
- end else begin
- Result := ''
- end;
- end;
- // We won't be able to find keys for users other than the one running the installer, but try and do
- // a best-effort attempt to cleaning ourselves up.
- procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
- var
- keyValueNames: TArrayOfString;
- keyValue: String;
- i: Integer;
- begin
- if CurUninstallStep = usPostUninstall then
- begin
- if RegGetValueNames(HKEY_CURRENT_USER, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Run', keyValueNames) then
- begin
- for i := 0 to GetArrayLength(keyValueNames)-1 do
- begin
- if Pos('SyncTrayzor', keyValueNames[i]) = 1 then
- begin
- if RegQueryStringValue(HKEY_CURRENT_USER, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Run', keyValueNames[i], keyValue) then
- begin
- if Pos(ExpandConstant('"{app}\{#AppExeName}"'), keyValue) = 1 then
- begin
- RegDeleteValue(HKEY_CURRENT_USER, 'SOFTWARE\Microsoft\Windows\CurrentVersion\Run', keyValueNames[i]);
- end;
- end;
- end
- end;
- end;
- end;
- end;
- [UninstallDelete]
- Type: files; Name: "{app}\ProcessRunner.exe.old"
- Type: files; Name: "{app}\InstallCount.txt"
- Type: filesandordirs; Name: "{userappdata}\{#AppDataFolder}"
- Type: filesandordirs; Name: "{localappdata}\{#AppDataFolder}"
|