Changeset 72 for trunk/Install/win
- Timestamp:
- Jan 11, 2023, 5:18:36 PM (22 months ago)
- Location:
- trunk/Install/win
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install/win/Tunneler.iss
r40 r72 3 3 4 4 #define MyAppName "Tunneler" 5 #define MyAppVersion "1.0.0-alfa" 5 #define MyAppNameShort "Tunneler" 6 #define MyAppVersion "1.0.0" 6 7 #define MyAppPublisher "Chronosoft" 7 8 #define MyAppPublisherShort "Chronosoft" … … 9 10 #define MyAppExeName "Tunneler.exe" 10 11 #define MyAppDebugName "Tunneler.dbg" 11 #define MyAppSubDir ".. \.."12 #define MyAppSubDir "../.." 12 13 13 14 [Setup] … … 18 19 AppName={#MyAppName} 19 20 AppVersion={#MyAppVersion} 20 ;AppVerName={#MyAppName} {#MyAppVersion}21 AppVerName={#MyAppName} {#MyAppVersion} 21 22 AppPublisher={#MyAppPublisher} 22 23 AppPublisherURL={#MyAppURL} 23 24 AppSupportURL={#MyAppURL} 24 25 AppUpdatesURL={#MyAppURL} 25 DefaultDirName={pf}\{#MyAppPublisherShort}\{#MyAppName} 26 UninstallDisplayName={#MyAppName} 27 UninstallDisplayIcon="{app}\{#MyAppExeName}" 28 VersionInfoVersion={#MyAppVersion} 29 VersionInfoCompany={#MyAppPublisher} 30 DefaultDirName={commonpf}\{#MyAppPublisherShort}\{#MyAppName} 26 31 DefaultGroupName={#MyAppPublisherShort}\{#MyAppName} 27 32 AllowNoIcons=yes 28 33 OutputDir=. 29 OutputBaseFilename=Install-{#MyAppName }-{#MyAppVersion}34 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion} 30 35 Compression=lzma 31 36 SolidCompression=yes … … 39 44 ; installation to run on all architectures (including Itanium, 40 45 ; since it's capable of running 32-bit code too). 46 WizardStyle=modern 41 47 42 48 [Languages] … … 48 54 49 55 [Registry] 50 Root: HK CU; Subkey: "Software\Chronosoft\Tunneler"; Flags: uninsdeletekey56 Root: HKLM; Subkey: "Software\Chronosoft\Tunneler"; Flags: uninsdeletekey 51 57 52 58 [Files] … … 54 60 Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 55 61 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 56 ; NOTE: Don't use "Flags: ignoreversion" on any shared system files 62 Source: "{#MyAppSubDir}\Languages\*.pot"; DestDir: "{app}\Languages"; Flags: ignoreversion 57 63 58 64 [Icons] -
trunk/Install/win/build.bat
r40 r72 18 18 copy %MAIN_EXE% %WIN64_EXE% 19 19 20 "c:\Program Files (x86)\Inno Setup 5\ISCC.exe" "%PROJECTNAME%.iss"20 "c:\Program Files (x86)\Inno Setup 6\ISCC.exe" "%PROJECTNAME%.iss"
Note:
See TracChangeset
for help on using the changeset viewer.