Changeset 411


Ignore:
Timestamp:
Nov 3, 2021, 6:14:00 PM (2 years ago)
Author:
chronos
Message:
  • Fixed: Contact page link.
  • Fixed: Styling of settings edit boxes under Windows.
  • Modified: Updated Windows installer scripts.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Global.pas

    r403 r411  
    1010  CevoHomepageShort = 'app.zdechov.net/c-evo';
    1111  CevoHomepage = 'https://' + CevoHomepageShort;
    12   CevoContactShort = 'app.zdechov.net/c-evo#Contact';
     12  CevoContactShort = 'app.zdechov.net/c-evo#Support';
    1313  CevoContact = 'https://' + CevoContactShort;
    1414  CevoContactBug = 'https://app.zdechov.net/c-evo/report/1';
  • trunk/Install/win/C-evo 32-bit.iss

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

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

    r392 r411  
    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]
  • trunk/Install/win/Common.iss

    r339 r411  
    33
    44#define MyAppName "C-evo"
    5 #define MyAppVersion "1.3.0"
     5#define MyAppTitle "C-evo: New Horizons"
     6#define MyAppNameShort "C-evo-nh"
     7#define MyAppVersion "1.4.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/Settings.lfm

    r409 r411  
    113113  object EditShortCutPrimary: TEdit
    114114    Left = 176
    115     Height = 40
     115    Height = 19
     116        BorderStyle = bsNone
    116117    Top = 256
    117118    Width = 136
     
    129130  object EditShortCutSecondary: TEdit
    130131    Left = 328
    131     Height = 40
     132    Height = 19
     133        BorderStyle = bsNone
    132134    Top = 257
    133135    Width = 136
Note: See TracChangeset for help on using the changeset viewer.