Changeset 403
- Timestamp:
- Nov 2, 2021, 11:12:06 AM (3 years ago)
- Files:
-
- 3 added
- 3 deleted
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.3.0/Install/win/C-evo 32-bit.iss
r218 r403 2 2 3 3 [Setup] 4 OutputBaseFilename=Install-{#MyAppName }-{#MyAppVersion}-win324 OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}-win32 5 5 6 6 [Components] -
tags/1.3.0/Install/win/C-evo 64-bit.iss
r218 r403 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] -
tags/1.3.0/Install/win/C-evo.iss
r392 r403 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] -
tags/1.3.0/Install/win/Common.iss
r339 r403 3 3 4 4 #define MyAppName "C-evo" 5 #define MyAppTitle "C-evo: New Horizons" 6 #define MyAppNameShort "C-evo-nh" 5 7 #define MyAppVersion "1.3.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} -
trunk/Global.pas
r384 r403 18 18 AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html'; 19 19 CevoVersionMajor = 1; 20 CevoVersionMinor = 3;20 CevoVersionMinor = 4; 21 21 CevoVersionBugFix = 0; 22 22 CevoVersion = ((CevoVersionMajor and $ff) shl 16) or -
trunk/Install/deb/debian/changelog
r288 r403 1 c-evo (1. 3.0-0) precise; urgency=low1 c-evo (1.4.0-0) precise; urgency=low 2 2 3 * Original version 1. 3.0 packaged with lazdebian3 * Original version 1.4.0 packaged with lazdebian 4 4 5 5 -- Chronos <robie@centrum.cz> Sun, 17 Dec 2016 00:51:08 +0100 -
trunk/Install/deb/debian/control
r347 r403 3 3 Section: games 4 4 Priority: optional 5 Standards-Version: 1. 3.05 Standards-Version: 1.4.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
trunk/Install/rpm/c-evo.spec
r393 r403 1 1 Name: c-evo 2 Version: 1. 3.02 Version: 1.4.0 3 3 Release: 1%{?dist} 4 4 Summary: Empire building game -
trunk/Install/snap/snapcraft.yaml
r388 r403 1 1 name: c-evo 2 2 title: "C-evo: New Horizons" 3 version: '1. 3.0'3 version: '1.4.0' 4 4 summary: A turn-based empire building game inspired by Civilization II game. 5 5 description: | -
trunk/readme.txt
r305 r403 29 29 == Release new version == 30 30 31 * Update version in G ameServer.pas Version constant.31 * Update version in Global.pas CevoVersion constants. 32 32 * Update version in Install\win\Common.iss MyAppVersion define. 33 33 * Update version in Install\rpm\c-evo.spec Version field.
Note:
See TracChangeset
for help on using the changeset viewer.