mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-12-16 11:38:11 +02:00
72 lines
2.6 KiB
Plaintext
72 lines
2.6 KiB
Plaintext
|
; Script generated by the Inno Setup Script Wizard.
|
||
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
|
||
|
|
||
|
#define MyAppName "OInt"
|
||
|
#define MyAppVersion "1.9.0"
|
||
|
#define MyAppPublisher "bayselonarrend"
|
||
|
#define MyAppURL "https://github.com/Bayselonarrend/OpenIntegrations"
|
||
|
#define MyAppExeName "oint.exe"
|
||
|
|
||
|
[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={{E1D44D44-2C84-4112-80AA-2DC406D85A11}
|
||
|
AppName={#MyAppName}
|
||
|
AppVersion={#MyAppVersion}
|
||
|
;AppVerName={#MyAppName} {#MyAppVersion}
|
||
|
AppPublisher={#MyAppPublisher}
|
||
|
AppPublisherURL={#MyAppURL}
|
||
|
AppSupportURL={#MyAppURL}
|
||
|
AppUpdatesURL={#MyAppURL}
|
||
|
DefaultDirName={autopf}\{#MyAppName}
|
||
|
DefaultGroupName={#MyAppName}
|
||
|
DisableProgramGroupPage=yes
|
||
|
LicenseFile=C:\Repos\OPI\LICENSE
|
||
|
OutputDir="G:\Мой диск\Проекты\ОПИ\Релизы\{#MyAppVersion}"
|
||
|
; Uncomment the following line to run in non administrative install mode (install for current user only.)
|
||
|
;PrivilegesRequired=lowest
|
||
|
Compression=lzma
|
||
|
SolidCompression=yes
|
||
|
WizardStyle=modern
|
||
|
OutputBaseFilename=oint_{#MyAppVersion}_installer
|
||
|
|
||
|
[Languages]
|
||
|
Name: "russian"; MessagesFile: "compiler:Languages\Russian.isl"
|
||
|
|
||
|
[Tasks]
|
||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
|
||
|
|
||
|
[Files]
|
||
|
Source: "G:\Мой диск\Проекты\ОПИ\Релизы\{#MyAppVersion}\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion
|
||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
|
||
|
|
||
|
[Icons]
|
||
|
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
||
|
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon
|
||
|
|
||
|
[Run]
|
||
|
Filename: "{cmd}"; Parameters: "/k ""cd ""{app}"" && {#MyAppExeName}"""; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent
|
||
|
|
||
|
[Registry]
|
||
|
Root: HKLM; Subkey: "SYSTEM\CurrentControlSet\Control\Session Manager\Environment"; \
|
||
|
ValueType: expandsz; ValueName: "Path"; ValueData: "{olddata};{app}"; \
|
||
|
Check: NeedsAddPath('{app}')
|
||
|
|
||
|
[Code]
|
||
|
|
||
|
function NeedsAddPath(Param: string): boolean;
|
||
|
var
|
||
|
OrigPath: string;
|
||
|
begin
|
||
|
if not RegQueryStringValue(HKEY_LOCAL_MACHINE,
|
||
|
'SYSTEM\CurrentControlSet\Control\Session Manager\Environment',
|
||
|
'Path', OrigPath)
|
||
|
then begin
|
||
|
Result := True;
|
||
|
exit;
|
||
|
end;
|
||
|
{ look for the path with leading and trailing semicolon }
|
||
|
{ Pos() returns 0 if not found }
|
||
|
Result := Pos(';' + Param + ';', ';' + OrigPath + ';') = 0;
|
||
|
end;
|