Changeset 585


Ignore:
Timestamp:
May 23, 2024, 10:26:26 PM (6 weeks ago)
Author:
chronos
Message:
  • Added: Windows installer for version 1.3.4.
  • Modified: Files updated for version 1.3.4.
Files:
3 added
8 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.4/Global.pas

    r474 r585  
    1919  AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html';
    2020  CevoVersionMajor = 1;
    21   CevoVersionMinor = 4;
    22   CevoVersionBugFix = 0;
     21  CevoVersionMinor = 3;
     22  CevoVersionBugFix = 4;
    2323  CevoVersion = ((CevoVersionMajor and $ff) shl 16) or
    2424    ((CevoVersionMinor and $ff) shl 8) or
  • tags/1.3.4/Install/deb/debian/control

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

    r564 r585  
    4545
    4646  <releases>
     47    <release version="1.3.4" date="2024-05-23"/>
    4748    <release version="1.3.3" date="2024-04-24"/>
    4849  </releases>
  • tags/1.3.4/Install/rpm/c-evo.spec

    r421 r585  
    11Name:           c-evo
    2 Version:        1.4.0
     2Version:        1.3.4
    33Release:        1%{?dist}
    44Summary:        Empire building game
  • tags/1.3.4/Install/snap/snapcraft.yaml

    r553 r585  
    11name: c-evo
    22title: "C-evo: New Horizons"
    3 version: '1.4.0'
     3version: '1.3.4'
    44summary: A turn-based empire building game inspired by Civilization II game.
    55description: |
  • tags/1.3.4/Install/win/Common.iss

    r493 r585  
    55#define MyAppTitle "C-evo: New Horizons"
    66#define MyAppNameShort "C-evo-nh"
    7 #define MyAppVersion "1.4.0"
    8 #define MyAppVersionSuffix "alfa"
     7#define MyAppVersion "1.3.4"
     8;#define MyAppVersionSuffix "alfa"
    99#define MyAppPublisher "Chronosoft"
    1010#define MyAppPublisherShort "Chronosoft"
  • tags/1.3.4/Release notes.txt

    r556 r585  
     1Version 1.3.4 (2024-05-23)
     2==========================
     3
     4* Added: Allow to scroll tech tree form also with keyboard arrows.
     5* Added: Capital AI C beta as the latest available version of Capital AI.
     6* Removed: Unsupported .NET Liberator AI.
     7* Modified: Unsupported C# AI template replaced by latest Pascal AI template from original vesion 1.1.0 and adjusted it for Lazarus IDE.
     8* Modified: Start form changed to use Offscreen bitmap for drawing as Qt5 doesn't support copying from form canvas.
     9* Modified: Optimized BitBltBitmap scaling function.
     10* Modified: ScaleToNative made inline.
     11* Fixed: Task bar shouldn't be visible in full screen mode on Windows.
     12* Fixed: Do not pack Liberator AI to Windows installer as it requires .NET.
     13* Fixed: Draw right side of scaled frame outside of client area to not be visible.
     14* Fixed: Workaround for incorrectly styling TEdit controls under Gtk2.
     15* Fixed: Custom draw ListBox items to keep consistent style on Linux.
     16* Fixed: Last game name index error if no saved games.
     17* Fixed: Resize Term window offscreen bitmap on screen size change. Needed for tablet PC where screen can rotate.
     18
    119Version 1.3.3 (2024-04-24)
    220==========================
  • trunk/Release notes.txt

    r556 r585  
     1Version 1.3.4 (2024-05-23)
     2==========================
     3
     4* Added: Allow to scroll tech tree form also with keyboard arrows.
     5* Added: Capital AI C beta as the latest available version of Capital AI.
     6* Removed: Unsupported .NET Liberator AI.
     7* Modified: Unsupported C# AI template replaced by latest Pascal AI template from original vesion 1.1.0 and adjusted it for Lazarus IDE.
     8* Modified: Start form changed to use Offscreen bitmap for drawing as Qt5 doesn't support copying from form canvas.
     9* Modified: Optimized BitBltBitmap scaling function.
     10* Modified: ScaleToNative made inline.
     11* Fixed: Task bar shouldn't be visible in full screen mode on Windows.
     12* Fixed: Do not pack Liberator AI to Windows installer as it requires .NET.
     13* Fixed: Draw right side of scaled frame outside of client area to not be visible.
     14* Fixed: Workaround for incorrectly styling TEdit controls under Gtk2.
     15* Fixed: Custom draw ListBox items to keep consistent style on Linux.
     16* Fixed: Last game name index error if no saved games.
     17* Fixed: Resize Term window offscreen bitmap on screen size change. Needed for tablet PC where screen can rotate.
     18
    119Version 1.3.3 (2024-04-24)
    220==========================
Note: See TracChangeset for help on using the changeset viewer.