Changeset 556
- Timestamp:
- Apr 24, 2024, 11:50:02 AM (7 months ago)
- Files:
-
- 3 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.3.3/Global.pas
r474 r556 19 19 AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html'; 20 20 CevoVersionMajor = 1; 21 CevoVersionMinor = 4;22 CevoVersionBugFix = 0;21 CevoVersionMinor = 3; 22 CevoVersionBugFix = 3; 23 23 CevoVersion = ((CevoVersionMajor and $ff) shl 16) or 24 24 ((CevoVersionMinor and $ff) shl 8) or -
tags/1.3.3/Install/deb/debian/changelog
r403 r556 1 c-evo (1. 4.0-0) precise; urgency=low1 c-evo (1.3.3-0) precise; urgency=low 2 2 3 * Original version 1. 4.0packaged with lazdebian3 * Original version 1.3.3 packaged with lazdebian 4 4 5 5 -- Chronos <robie@centrum.cz> Sun, 17 Dec 2016 00:51:08 +0100 -
tags/1.3.3/Install/deb/debian/control
r403 r556 3 3 Section: games 4 4 Priority: optional 5 Standards-Version: 1. 4.05 Standards-Version: 1.3.3 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
tags/1.3.3/Install/rpm/c-evo.spec
r421 r556 1 1 Name: c-evo 2 Version: 1. 4.02 Version: 1.3.3 3 3 Release: 1%{?dist} 4 4 Summary: Empire building game -
tags/1.3.3/Install/snap/snapcraft.yaml
r553 r556 1 1 name: c-evo 2 2 title: "C-evo: New Horizons" 3 version: '1. 4.0'3 version: '1.3.3' 4 4 summary: A turn-based empire building game inspired by Civilization II game. 5 5 description: | -
tags/1.3.3/Install/win/Common.iss
r493 r556 5 5 #define MyAppTitle "C-evo: New Horizons" 6 6 #define MyAppNameShort "C-evo-nh" 7 #define MyAppVersion "1. 4.0"8 #define MyAppVersionSuffix "alfa"7 #define MyAppVersion "1.3.3" 8 ;#define MyAppVersionSuffix "alfa" 9 9 #define MyAppPublisher "Chronosoft" 10 10 #define MyAppPublisherShort "Chronosoft" -
tags/1.3.3/Release notes.txt
r541 r556 1 Version 1.3.3 (2024-04-24) 2 ========================== 3 4 * Modified: Optimized high DPI scaling. Use lookup table for scaled values. Draw only terrain textures with precise scaling. 5 * Modified: Optimize code with earlier break from for cycle evaluating boolean result. 6 * Fixed: Bad unit drawing in battle dialog. 7 * Fixed: Incorrect range checking in scaled bitmap drawing method. 8 * Fixed: Correct translation of offered players AIs. 9 1 10 Version 1.3.2 (2024-04-16) 2 11 ========================== -
trunk/Release notes.txt
r541 r556 1 Version 1.3.3 (2024-04-24) 2 ========================== 3 4 * Modified: Optimized high DPI scaling. Use lookup table for scaled values. Draw only terrain textures with precise scaling. 5 * Modified: Optimize code with earlier break from for cycle evaluating boolean result. 6 * Fixed: Bad unit drawing in battle dialog. 7 * Fixed: Incorrect range checking in scaled bitmap drawing method. 8 * Fixed: Correct translation of offered players AIs. 9 1 10 Version 1.3.2 (2024-04-16) 2 11 ==========================
Note:
See TracChangeset
for help on using the changeset viewer.