Changeset 403


Ignore:
Timestamp:
Nov 2, 2021, 11:12:06 AM (2 years ago)
Author:
chronos
Message:
  • Modified: Trunk pushed to 1.4.0 alfa.
  • Modified: Updated Windows installer script to use New Horizons in name.
  • Added: Version 1.3.0 Windows installer binaries.
Files:
3 added
3 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • tags/1.3.0/Install/win/C-evo 32-bit.iss

    r218 r403  
    22
    33[Setup]
    4 OutputBaseFilename=Install-{#MyAppName}-{#MyAppVersion}-win32
     4OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}-win32
    55
    66[Components]
  • tags/1.3.0/Install/win/C-evo 64-bit.iss

    r218 r403  
    44ArchitecturesAllowed=x64
    55ArchitecturesInstallIn64BitMode=x64
    6 OutputBaseFilename=Install-{#MyAppName}-{#MyAppVersion}-win64
     6OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}-win64
    77
    88[Files]
  • tags/1.3.0/Install/win/C-evo.iss

    r392 r403  
    1010; installation to run on all architectures (including Itanium,
    1111; since it's capable of running 32-bit code too).
    12 OutputBaseFilename=Install-{#MyAppName}-{#MyAppVersion}
     12OutputBaseFilename=Install-{#MyAppNameShort}-{#MyAppVersion}{#MyAppVersionSuffix}
    1313
    1414[Components]
  • tags/1.3.0/Install/win/Common.iss

    r339 r403  
    33
    44#define MyAppName "C-evo"
     5#define MyAppTitle "C-evo: New Horizons"
     6#define MyAppNameShort "C-evo-nh"
    57#define MyAppVersion "1.3.0"
     8;#define MyAppVersionSuffix "alfa"
    69#define MyAppPublisher "Chronosoft"
    710#define MyAppPublisherShort "Chronosoft"
     
    1720WizardStyle=modern
    1821AppId={{6B40AF4D-C38C-4474-9614-8F0C4376C1CF}
    19 AppName={#MyAppName}
    20 AppVersion={#MyAppVersion}
    21 AppVerName={#MyAppName} {#MyAppVersion}
    22 UninstallDisplayName={#MyAppName}
     22AppName={#MyAppTitle}
     23#ifdef MyAppVersionSuffix
     24#define MyAppVersionSuffix "-" + MyAppVersionSuffix
     25#else
     26#define MyAppVersionSuffix ""
     27#endif
     28AppVersion={#MyAppVersion}{#MyAppVersionSuffix}
     29AppVerName={#MyAppName} {#MyAppVersion}{#MyAppVersionSuffix}
     30UninstallDisplayName={#MyAppTitle}
    2331UninstallDisplayIcon="{app}\{#MyAppExeName}"
    2432VersionInfoVersion={#MyAppVersion}
  • trunk/Global.pas

    r384 r403  
    1818  AITemplateFileName = 'AI Template' + DirectorySeparator + AITemplateManual + '.html';
    1919  CevoVersionMajor = 1;
    20   CevoVersionMinor = 3;
     20  CevoVersionMinor = 4;
    2121  CevoVersionBugFix = 0;
    2222  CevoVersion = ((CevoVersionMajor and $ff) shl 16) or
  • trunk/Install/deb/debian/changelog

    r288 r403  
    1 c-evo (1.3.0-0) precise; urgency=low
     1c-evo (1.4.0-0) precise; urgency=low
    22
    3   * Original version 1.3.0 packaged with lazdebian
     3  * Original version 1.4.0 packaged with lazdebian
    44
    55 -- Chronos <robie@centrum.cz>  Sun, 17 Dec 2016 00:51:08 +0100
  • trunk/Install/deb/debian/control

    r347 r403  
    33Section: games
    44Priority: optional
    5 Standards-Version: 1.3.0
     5Standards-Version: 1.4.0
    66Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8)
    77
  • trunk/Install/rpm/c-evo.spec

    r393 r403  
    11Name:           c-evo
    2 Version:        1.3.0
     2Version:        1.4.0
    33Release:        1%{?dist}
    44Summary:        Empire building game
  • trunk/Install/snap/snapcraft.yaml

    r388 r403  
    11name: c-evo
    22title: "C-evo: New Horizons"
    3 version: '1.3.0'
     3version: '1.4.0'
    44summary: A turn-based empire building game inspired by Civilization II game.
    55description: |
  • trunk/readme.txt

    r305 r403  
    2929== Release new version ==
    3030
    31 * Update version in GameServer.pas Version constant.
     31* Update version in Global.pas CevoVersion constants.
    3232* Update version in Install\win\Common.iss MyAppVersion define.
    3333* Update version in Install\rpm\c-evo.spec Version field.
Note: See TracChangeset for help on using the changeset viewer.