tianzhendong
3 weeks ago
8 changed files with 66 additions and 5 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,61 @@ |
|||
; Script generated by the Inno Setup Script Wizard. |
|||
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! |
|||
|
|||
#define MyAppName "QsuavTest" |
|||
#define MyAppVersion "1.0.2" |
|||
#define MyAppPublisher "xfd, Inc." |
|||
#define MyAppURL "https://www.example.com/" |
|||
#define MyAppExeName "QsuavTest.exe" |
|||
#define MyAppAssocName MyAppName + " File" |
|||
#define MyAppAssocExt ".myp" |
|||
#define MyAppAssocKey StringChange(MyAppAssocName, " ", "") + MyAppAssocExt |
|||
|
|||
[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={{AB777792-2F59-4DC8-AB3E-E216E8CFB837} |
|||
AppName={#MyAppName} |
|||
AppVersion={#MyAppVersion} |
|||
;AppVerName={#MyAppName} {#MyAppVersion} |
|||
AppPublisher={#MyAppPublisher} |
|||
AppPublisherURL={#MyAppURL} |
|||
AppSupportURL={#MyAppURL} |
|||
AppUpdatesURL={#MyAppURL} |
|||
DefaultDirName=C:\XFD\{#MyAppName} |
|||
ChangesAssociations=yes |
|||
DisableProgramGroupPage=yes |
|||
; Uncomment the following line to run in non administrative install mode (install for current user only.) |
|||
;PrivilegesRequired=lowest |
|||
PrivilegesRequiredOverridesAllowed=dialog |
|||
OutputDir=D:\4_Code\3_Deploy\QsuavTest |
|||
OutputBaseFilename=QsuavTest-full-v{#MyAppVersion} |
|||
SetupIconFile=D:\4_Code\3_Deploy\QsuavTest\Deploy\140xfd.ico |
|||
Compression=lzma |
|||
SolidCompression=yes |
|||
WizardStyle=modern |
|||
|
|||
[Languages] |
|||
Name: "english"; MessagesFile: "compiler:Default.isl" |
|||
|
|||
[Tasks] |
|||
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
|||
|
|||
[Files] |
|||
Source: "D:\4_Code\3_Deploy\QsuavTest\Deploy\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion |
|||
Source: "D:\4_Code\3_Deploy\QsuavTest\Deploy\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs |
|||
; NOTE: Don't use "Flags: ignoreversion" on any shared system files |
|||
|
|||
[Registry] |
|||
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocExt}\OpenWithProgids"; ValueType: string; ValueName: "{#MyAppAssocKey}"; ValueData: ""; Flags: uninsdeletevalue |
|||
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}"; ValueType: string; ValueName: ""; ValueData: "{#MyAppAssocName}"; Flags: uninsdeletekey |
|||
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}\DefaultIcon"; ValueType: string; ValueName: ""; ValueData: "{app}\{#MyAppExeName},0" |
|||
Root: HKA; Subkey: "Software\Classes\{#MyAppAssocKey}\shell\open\command"; ValueType: string; ValueName: ""; ValueData: """{app}\{#MyAppExeName}"" ""%1""" |
|||
Root: HKA; Subkey: "Software\Classes\Applications\{#MyAppExeName}\SupportedTypes"; ValueType: string; ValueName: ".myp"; ValueData: "" |
|||
|
|||
[Icons] |
|||
Name: "{autoprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
|||
Name: "{autodesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
|||
|
|||
[Run] |
|||
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
|||
|
Binary file not shown.
Loading…
Reference in new issue