Changeset 71


Ignore:
Timestamp:
Nov 28, 2020, 1:02:34 PM (3 years ago)
Author:
chronos
Message:
  • Modified: Updated files for 1.1.0 release.
  • Added: Windows installed binary for 1.1.0 release.
Files:
1 added
10 edited

Legend:

Unmodified
Added
Removed
  • tags/1.1.0/Forms/UFormMain.lfm

    r63 r71  
    5252    AppName = 'Big Metro'
    5353    Description = 'Enjoyable real-time metro building game.'
    54     ReleaseDate = 44160
     54    ReleaseDate = 44163
    5555    RegistryKey = '\Software\Chronosoft\BigMetro'
    5656    RegistryRoot = rrKeyCurrentUser
  • tags/1.1.0/Install/deb/debian/control

    r54 r71  
    33Section: utils
    44Priority: optional
    5 Standards-Version: 1.0.1
     5Standards-Version: 1.1.0
    66Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8)
    77
  • tags/1.1.0/Install/win/BigMetro.iss

    r56 r71  
    44#define MyAppName "BigMetro"
    55#define MyAppNameShort "BigMetro"
    6 #define MyAppVersion "1.0.1"
     6#define MyAppVersion "1.1.0"
    77#define MyAppPublisher "Chronosoft"
    88#define MyAppPublisherShort "Chronosoft"
     
    6060Source: "{#MyAppSubDir}\lib\x86_64-win64-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode
    6161Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode
    62 ;Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
     62Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
    6363
    6464
  • tags/1.1.0/Read me.txt

    r58 r71  
    1 Developed using Lazarus 2.0.10 (http://www.lazarus-ide.org/)
     1A real-time metro building game. Become a manager of your own metro and try to build a biggest yet the most efficient metro system to transport huge number of passengers. The game is inspired by Mini Metro game.
     2
     3== Features ==
     4
     5* Supported 9 metro lines with different colors
     6* Supported 12 metro stations shapes
     7* Each week a player gets new train
     8* Passengers with specific shape travel to the station with same shape
     9* Tracks can be re-positioned and extended on both ends
     10* New random stations appear continuously
     11* Dark mode
     12* Full screen mode
     13* Multi-language support (English, Czech)
     14   
     15==Development==
     16
     17* Home page: https://app.zdechov.net/BigMetro/
     18* Source code: https://svn.zdechov.net/BigMetro/
     19* Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 2.0.10
     20* To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed).
  • tags/1.1.0/Release notes.txt

    r53 r71  
    1 Version 1.0.1 (2018-01-03)
     1Version 1.1.0 (2020-11-28)
    22==========================
    33
     4* Added: Show highest score on game over.
     5* Added: Support for dark mode.
     6* Added: Top left back button to exit from game to game menu. Allow to restart game and continue with playing.
     7* Added: Support for Escape key for exiting game and menu.
     8* Added: Support for full screen mode. Can be changed in options and by hitting F11 key.
     9* Added: Remember form dimensions between application restarts.
     10* Added: Multi-language support. Supported English and Czech languages.
     11* Added: Main game menu with options section.
     12* Modified: Use InnoSetup 6 with modern style.
     13* Modified: Update project web links.
    414* Modified: Use High DPI support under Windows.
     15* Fixed: Canvas width and height is not updated correctly on Windows. Use additional CanvasSize parameter in drawing methods.
     16* Fixed: Correct vertical position of game over text.
     17* Fixed: Show correct application icon and removed version from name in Windows installed application item.
    518* Fixed: Zooming by mouse wheel was inverted. Not worked correctly with touch screen.
    619* Fixed: Avoid division by zero in line intersection calculation.
  • trunk/Forms/UFormMain.lfm

    r63 r71  
    4545    Identification = 1
    4646    VersionMajor = 1
    47     VersionMinor = 1
     47    VersionMinor = 2
    4848    VersionBugFix = 0
    4949    HomePage = 'https://app.zdechov.net/BigMetro'
     
    5252    AppName = 'Big Metro'
    5353    Description = 'Enjoyable real-time metro building game.'
    54     ReleaseDate = 44160
     54    ReleaseDate = 44163
    5555    RegistryKey = '\Software\Chronosoft\BigMetro'
    5656    RegistryRoot = rrKeyCurrentUser
  • trunk/Install/deb/debian/control

    r54 r71  
    33Section: utils
    44Priority: optional
    5 Standards-Version: 1.0.1
     5Standards-Version: 1.2.0
    66Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8)
    77
  • trunk/Install/win/BigMetro.iss

    r56 r71  
    44#define MyAppName "BigMetro"
    55#define MyAppNameShort "BigMetro"
    6 #define MyAppVersion "1.0.1"
     6#define MyAppVersion "1.2.0"
    77#define MyAppPublisher "Chronosoft"
    88#define MyAppPublisherShort "Chronosoft"
     
    6060Source: "{#MyAppSubDir}\lib\x86_64-win64-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode
    6161Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode
    62 ;Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
     62Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion
    6363
    6464
  • trunk/Read me.txt

    r58 r71  
    1 Developed using Lazarus 2.0.10 (http://www.lazarus-ide.org/)
     1A real-time metro building game. Become a manager of your own metro and try to build a biggest yet the most efficient metro system to transport huge number of passengers. The game is inspired by Mini Metro game.
     2
     3== Features ==
     4
     5* Supported 9 metro lines with different colors
     6* Supported 12 metro stations shapes
     7* Each week a player gets new train
     8* Passengers with specific shape travel to the station with same shape
     9* Tracks can be re-positioned and extended on both ends
     10* New random stations appear continuously
     11* Dark mode
     12* Full screen mode
     13* Multi-language support (English, Czech)
     14   
     15==Development==
     16
     17* Home page: https://app.zdechov.net/BigMetro/
     18* Source code: https://svn.zdechov.net/BigMetro/
     19* Developed in [http://www.lazarus-ide.org/ Lazarus/FPC] 2.0.10
     20* To build new Windows installer run Install/build.bat. InnoSetup (http://www.jrsoftware.org/isdl.php) needs to be installed).
  • trunk/Release notes.txt

    r53 r71  
    1 Version 1.0.1 (2018-01-03)
     1Version 1.1.0 (2020-11-28)
    22==========================
    33
     4* Added: Show highest score on game over.
     5* Added: Support for dark mode.
     6* Added: Top left back button to exit from game to game menu. Allow to restart game and continue with playing.
     7* Added: Support for Escape key for exiting game and menu.
     8* Added: Support for full screen mode. Can be changed in options and by hitting F11 key.
     9* Added: Remember form dimensions between application restarts.
     10* Added: Multi-language support. Supported English and Czech languages.
     11* Added: Main game menu with options section.
     12* Modified: Use InnoSetup 6 with modern style.
     13* Modified: Update project web links.
    414* Modified: Use High DPI support under Windows.
     15* Fixed: Canvas width and height is not updated correctly on Windows. Use additional CanvasSize parameter in drawing methods.
     16* Fixed: Correct vertical position of game over text.
     17* Fixed: Show correct application icon and removed version from name in Windows installed application item.
    518* Fixed: Zooming by mouse wheel was inverted. Not worked correctly with touch screen.
    619* Fixed: Avoid division by zero in line intersection calculation.
Note: See TracChangeset for help on using the changeset viewer.