|
@@ -3,9 +3,10 @@
|
|
#define MyAppPublisher "danielgatis"
|
|
#define MyAppPublisher "danielgatis"
|
|
#define MyAppURL "https://github.com/danielgatis/rembg"
|
|
#define MyAppURL "https://github.com/danielgatis/rembg"
|
|
#define MyAppExeName "rembg.exe"
|
|
#define MyAppExeName "rembg.exe"
|
|
|
|
+#define MyAppId "49AB7484-212F-4B31-A49F-533A480F3FD4"
|
|
|
|
|
|
[Setup]
|
|
[Setup]
|
|
-AppId={{49AB7484-212F-4B31-A49F-533A480F3FD4}
|
|
|
|
|
|
+AppId={#MyAppId}
|
|
AppName={#MyAppName}
|
|
AppName={#MyAppName}
|
|
AppVersion={#MyAppVersion}
|
|
AppVersion={#MyAppVersion}
|
|
AppPublisher={#MyAppPublisher}
|
|
AppPublisher={#MyAppPublisher}
|
|
@@ -15,7 +16,7 @@ AppUpdatesURL={#MyAppURL}
|
|
DefaultDirName={autopf}\{#MyAppName}
|
|
DefaultDirName={autopf}\{#MyAppName}
|
|
DefaultGroupName={#MyAppName}
|
|
DefaultGroupName={#MyAppName}
|
|
DisableProgramGroupPage=yes
|
|
DisableProgramGroupPage=yes
|
|
-OutputBaseFilename=setup
|
|
|
|
|
|
+OutputBaseFilename=rembg-cli-installer
|
|
Compression=lzma
|
|
Compression=lzma
|
|
SolidCompression=yes
|
|
SolidCompression=yes
|
|
WizardStyle=modern
|
|
WizardStyle=modern
|
|
@@ -35,9 +36,6 @@ Name: modifypath; Description: "Add to PATH variable"
|
|
[Icons]
|
|
[Icons]
|
|
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
Name: "{group}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"
|
|
|
|
|
|
-[Run]
|
|
|
|
-Filename: "{app}\{#MyAppExeName}"; Parameters: "--version"; Flags: runhidden
|
|
|
|
-
|
|
|
|
[Code]
|
|
[Code]
|
|
const
|
|
const
|
|
ModPathName = 'modifypath';
|
|
ModPathName = 'modifypath';
|
|
@@ -48,4 +46,4 @@ begin
|
|
setArrayLength(Result, 1)
|
|
setArrayLength(Result, 1)
|
|
Result[0] := ExpandConstant('{app}');
|
|
Result[0] := ExpandConstant('{app}');
|
|
end;
|
|
end;
|
|
-#include "modpath.iss"
|
|
|
|
|
|
+#include "_modpath.iss"
|