Changeset 687
- Timestamp:
- Aug 1, 2025, 9:03:45 PM (10 hours ago)
- Files:
-
- 1 added
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.3.8/Global.pas
r474 r687 19 19 AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html'; 20 20 CevoVersionMajor = 1; 21 CevoVersionMinor = 4;22 CevoVersionBugFix = 0;21 CevoVersionMinor = 3; 22 CevoVersionBugFix = 8; 23 23 CevoVersion = ((CevoVersionMajor and $ff) shl 16) or 24 24 ((CevoVersionMinor and $ff) shl 8) or -
tags/1.3.8/Install/deb/debian/changelog
r403 r687 1 c-evo (1. 4.0-0) precise; urgency=low1 c-evo (1.3.8-0) precise; urgency=low 2 2 3 * Original version 1. 4.0packaged with lazdebian3 * Original version 1.3.8 packaged with lazdebian 4 4 5 5 -- Chronos <robie@centrum.cz> Sun, 17 Dec 2016 00:51:08 +0100 -
tags/1.3.8/Install/deb/debian/control
r682 r687 3 3 Section: games 4 4 Priority: optional 5 Standards-Version: 1. 4.05 Standards-Version: 1.3.8 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
tags/1.3.8/Install/flatpak/net.zdechov.app.C-evo.yml
r682 r687 16 16 sources: 17 17 - type: svn 18 url: https://svn.zdechov.net/c-evo/t runk19 revision: 6 3718 url: https://svn.zdechov.net/c-evo/tags/1.3.8 19 revision: 687 20 20 buildsystem: simple 21 21 build-options: -
tags/1.3.8/Install/rpm/c-evo.spec
r682 r687 1 1 Name: c-evo 2 Version: 1. 4.02 Version: 1.3.8 3 3 Release: 1%{?dist} 4 4 Summary: A turn-based empire building strategy game inspired by Civilization II game. -
tags/1.3.8/Install/snap/snapcraft.yaml
r682 r687 1 1 name: c-evo 2 2 title: "C-evo: New Horizons" 3 version: '1. 4.0'3 version: '1.3.8' 4 4 summary: A turn-based empire building strategy game inspired by Civilization II game. 5 5 description: | … … 115 115 - libgtk2.0-dev 116 116 override-build: | 117 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%20 3.6/lazarus-project_3.6.0-0_amd64.deb118 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%20 3.6/fpc-laz_3.2.2-210709_amd64.deb119 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%20 3.6/fpc-src_3.2.2-210709_amd64.deb120 apt install ./lazarus-project_ 3.6.0-0_amd64.deb ./fpc-laz_3.2.2-210709_amd64.deb ./fpc-src_3.2.2-210709_amd64.deb117 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%204.2/lazarus-project_4.2.0-0_amd64.deb 118 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%204.2/fpc-laz_3.2.2-210709_amd64.deb 119 wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%204.2/fpc-src_3.2.2-210709_amd64.deb 120 apt install ./lazarus-project_4.2.0-0_amd64.deb ./fpc-laz_3.2.2-210709_amd64.deb ./fpc-src_3.2.2-210709_amd64.deb 121 121 stage: [-*] 122 122 prime: [-*] -
tags/1.3.8/Install/win/C-evo.iss
r679 r687 2 2 #define MyAppTitle "C-evo: New Horizons" 3 3 #define MyAppNameShort "C-evo-nh" 4 #define MyAppVersion "1. 4.0"5 #define MyAppVersionSuffix "alfa"4 #define MyAppVersion "1.3.8" 5 ;#define MyAppVersionSuffix "alfa" 6 6 #define MyAppPublisher "Chronosoft" 7 7 #define MyAppPublisherShort "Chronosoft" -
tags/1.3.8/Release notes.txt
r651 r687 1 Version 1.3.8 (2025-08-01) 2 ========================== 3 4 * Added: Ability to play music in background in start screen and in-game. Used uos as audio library. 5 * Added: Allow to switch music on/off from game window main menu. 6 * Added: Music volume option in game settings form. 7 * Added: Package Music files with option to not install them. 8 * Added: Allow to move with up, down, page up, page down, home and end keys in selection dialog. 9 * Added: Open product selection dialog with P key in city dialog. 10 * Added: Close city dialog with return key. 11 * Modified: Improved forms painting if resized to bigger dimensions. 12 * Modified: Auto select newly saved game as last game in previous games list. 13 * Modified: Generate only single Windows installer with support for both 32-bit and 64-bit Windows. 14 * Modified: If C-evo installed on Windows as 64-bit, then optionally install also 32-bit C-evo with 32-bit AIs. 15 * Modified: Load additional AIs on Windows only if executed with 32-bit process. 16 * Modified: Evaluate Escape key in Settings dialog. 17 * Fixed: World size was always set to minimum on start. 18 * Fixed: Wrong AI brain selection if only one AI available. 19 * Fixed: Make selected book or map visible in the list on application start. 20 * Fixed: Repaint start window after language change in settings window. 21 * Fixed: Fixed unit move style hostile calculation in StdAI. Engineers don't take hostile damage on hostile terrain. 22 * Fixed: Do not process keyboard input during unit attack on Linux. 23 * Fixed: Limit world size loaded from registry. 24 * Fixed: Images in Help window were not found if located under share directory. 25 * Fixed: Black strip on the bottom of Draft dialog. 26 1 27 Version 1.3.7 (2025-02-26) 2 28 ========================== -
tags/1.3.8/readme.txt
r657 r687 24 24 * Home page: https://app.zdechov.net/c-evo/ 25 25 * Source code: https://svn.zdechov.net/c-evo/ 26 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4. 0.026 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.2.0 27 27 * To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed). 28 28 -
trunk/Release notes.txt
r651 r687 1 Version 1.3.8 (2025-08-01) 2 ========================== 3 4 * Added: Ability to play music in background in start screen and in-game. Used uos as audio library. 5 * Added: Allow to switch music on/off from game window main menu. 6 * Added: Music volume option in game settings form. 7 * Added: Package Music files with option to not install them. 8 * Added: Allow to move with up, down, page up, page down, home and end keys in selection dialog. 9 * Added: Open product selection dialog with P key in city dialog. 10 * Added: Close city dialog with return key. 11 * Modified: Improved forms painting if resized to bigger dimensions. 12 * Modified: Auto select newly saved game as last game in previous games list. 13 * Modified: Generate only single Windows installer with support for both 32-bit and 64-bit Windows. 14 * Modified: If C-evo installed on Windows as 64-bit, then optionally install also 32-bit C-evo with 32-bit AIs. 15 * Modified: Load additional AIs on Windows only if executed with 32-bit process. 16 * Modified: Evaluate Escape key in Settings dialog. 17 * Fixed: World size was always set to minimum on start. 18 * Fixed: Wrong AI brain selection if only one AI available. 19 * Fixed: Make selected book or map visible in the list on application start. 20 * Fixed: Repaint start window after language change in settings window. 21 * Fixed: Fixed unit move style hostile calculation in StdAI. Engineers don't take hostile damage on hostile terrain. 22 * Fixed: Do not process keyboard input during unit attack on Linux. 23 * Fixed: Limit world size loaded from registry. 24 * Fixed: Images in Help window were not found if located under share directory. 25 * Fixed: Black strip on the bottom of Draft dialog. 26 1 27 Version 1.3.7 (2025-02-26) 2 28 ========================== -
trunk/readme.txt
r657 r687 24 24 * Home page: https://app.zdechov.net/c-evo/ 25 25 * Source code: https://svn.zdechov.net/c-evo/ 26 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4. 0.026 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.2.0 27 27 * To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed). 28 28
Note:
See TracChangeset
for help on using the changeset viewer.