Changeset 687


Ignore:
Timestamp:
Aug 1, 2025, 9:03:45 PM (10 hours ago)
Author:
chronos
Message:
  • Added: Windows 1.3.8 installer.
  • Modified: Changes related to 1.3.8 release.
Files:
1 added
11 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.8/Global.pas

    r474 r687  
    1919  AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html';
    2020  CevoVersionMajor = 1;
    21   CevoVersionMinor = 4;
    22   CevoVersionBugFix = 0;
     21  CevoVersionMinor = 3;
     22  CevoVersionBugFix = 8;
    2323  CevoVersion = ((CevoVersionMajor and $ff) shl 16) or
    2424    ((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=low
     1c-evo (1.3.8-0) precise; urgency=low
    22
    3   * Original version 1.4.0 packaged with lazdebian
     3  * Original version 1.3.8 packaged with lazdebian
    44
    55 -- Chronos <robie@centrum.cz>  Sun, 17 Dec 2016 00:51:08 +0100
  • tags/1.3.8/Install/deb/debian/control

    r682 r687  
    33Section: games
    44Priority: optional
    5 Standards-Version: 1.4.0
     5Standards-Version: 1.3.8
    66Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8)
    77
  • tags/1.3.8/Install/flatpak/net.zdechov.app.C-evo.yml

    r682 r687  
    1616    sources:
    1717      - type: svn
    18         url: https://svn.zdechov.net/c-evo/trunk
    19         revision: 637
     18        url: https://svn.zdechov.net/c-evo/tags/1.3.8
     19        revision: 687
    2020    buildsystem: simple
    2121    build-options:
  • tags/1.3.8/Install/rpm/c-evo.spec

    r682 r687  
    11Name:           c-evo
    2 Version:        1.4.0
     2Version:        1.3.8
    33Release:        1%{?dist}
    44Summary:        A turn-based empire building strategy game inspired by Civilization II game.
  • tags/1.3.8/Install/snap/snapcraft.yaml

    r682 r687  
    11name: c-evo
    22title: "C-evo: New Horizons"
    3 version: '1.4.0'
     3version: '1.3.8'
    44summary: A turn-based empire building strategy game inspired by Civilization II game.
    55description: |
     
    115115    - libgtk2.0-dev
    116116    override-build: |
    117       wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%203.6/lazarus-project_3.6.0-0_amd64.deb
    118       wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%203.6/fpc-laz_3.2.2-210709_amd64.deb
    119       wget -nc https://downloads.sourceforge.net/project/lazarus/Lazarus%20Linux%20amd64%20DEB/Lazarus%203.6/fpc-src_3.2.2-210709_amd64.deb
    120       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.deb
     117      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
    121121    stage: [-*]
    122122    prime: [-*]
  • tags/1.3.8/Install/win/C-evo.iss

    r679 r687  
    22#define MyAppTitle "C-evo: New Horizons"
    33#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"
    66#define MyAppPublisher "Chronosoft"
    77#define MyAppPublisherShort "Chronosoft"
  • tags/1.3.8/Release notes.txt

    r651 r687  
     1Version 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
    127Version 1.3.7 (2025-02-26)
    228==========================
  • tags/1.3.8/readme.txt

    r657 r687  
    2424* Home page: https://app.zdechov.net/c-evo/
    2525* Source code: https://svn.zdechov.net/c-evo/
    26 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.0.0
     26* Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.2.0
    2727* To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed).
    2828
  • trunk/Release notes.txt

    r651 r687  
     1Version 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
    127Version 1.3.7 (2025-02-26)
    228==========================
  • trunk/readme.txt

    r657 r687  
    2424* Home page: https://app.zdechov.net/c-evo/
    2525* Source code: https://svn.zdechov.net/c-evo/
    26 * Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.0.0
     26* Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 4.2.0
    2727* To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed).
    2828
Note: See TracChangeset for help on using the changeset viewer.