Changeset 411 for trunk/Install/win
- Timestamp:
- Nov 3, 2021, 6:14:00 PM (3 years ago)
- Location:
- trunk/Install/win
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Install/win/C-evo 32-bit.iss
r218 r411 2 2 3 3 [Setup] 4 OutputBaseFilename=Install-{#MyAppName }-{#MyAppVersion}-win324 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}-win32 5 5 6 6 [Components] -
trunk/Install/win/C-evo 64-bit.iss
r218 r411 4 4 ArchitecturesAllowed=x64 5 5 ArchitecturesInstallIn64BitMode=x64 6 OutputBaseFilename=Install-{#MyAppName }-{#MyAppVersion}-win646 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}-win64 7 7 8 8 [Files] -
trunk/Install/win/C-evo.iss
r392 r411 10 10 ; installation to run on all architectures (including Itanium, 11 11 ; since it's capable of running 32-bit code too). 12 OutputBaseFilename=Install-{#MyAppName }-{#MyAppVersion}12 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix} 13 13 14 14 [Components] -
trunk/Install/win/Common.iss
r339 r411 3 3 4 4 #define MyAppName "C-evo" 5 #define MyAppVersion "1.3.0" 5 #define MyAppTitle "C-evo: New Horizons" 6 #define MyAppNameShort "C-evo-nh" 7 #define MyAppVersion "1.4.0" 8 #define MyAppVersionSuffix "alfa" 6 9 #define MyAppPublisher "Chronosoft" 7 10 #define MyAppPublisherShort "Chronosoft" … … 17 20 WizardStyle=modern 18 21 AppId={{6B40AF4D-C38C-4474-9614-8F0C4376C1CF} 19 AppName={#MyAppName} 20 AppVersion={#MyAppVersion} 21 AppVerName={#MyAppName} {#MyAppVersion} 22 UninstallDisplayName={#MyAppName} 22 AppName={#MyAppTitle} 23 #ifdef MyAppVersionSuffix 24 #define MyAppVersionSuffix "-" + MyAppVersionSuffix 25 #else 26 #define MyAppVersionSuffix "" 27 #endif 28 AppVersion={#MyAppVersion}{#MyAppVersionSuffix} 29 AppVerName={#MyAppName} {#MyAppVersion}{#MyAppVersionSuffix} 30 UninstallDisplayName={#MyAppTitle} 23 31 UninstallDisplayIcon="{app}\{#MyAppExeName}" 24 32 VersionInfoVersion={#MyAppVersion}
Note:
See TracChangeset
for help on using the changeset viewer.