Changeset 71
- Timestamp:
- Nov 28, 2020, 1:02:34 PM (4 years ago)
- Files:
-
- 1 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/1.1.0/Forms/UFormMain.lfm
r63 r71 52 52 AppName = 'Big Metro' 53 53 Description = 'Enjoyable real-time metro building game.' 54 ReleaseDate = 4416 054 ReleaseDate = 44163 55 55 RegistryKey = '\Software\Chronosoft\BigMetro' 56 56 RegistryRoot = rrKeyCurrentUser -
tags/1.1.0/Install/deb/debian/control
r54 r71 3 3 Section: utils 4 4 Priority: optional 5 Standards-Version: 1. 0.15 Standards-Version: 1.1.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
tags/1.1.0/Install/win/BigMetro.iss
r56 r71 4 4 #define MyAppName "BigMetro" 5 5 #define MyAppNameShort "BigMetro" 6 #define MyAppVersion "1. 0.1"6 #define MyAppVersion "1.1.0" 7 7 #define MyAppPublisher "Chronosoft" 8 8 #define MyAppPublisherShort "Chronosoft" … … 60 60 Source: "{#MyAppSubDir}\lib\x86_64-win64-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode 61 61 Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 62 ;Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion62 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 63 63 64 64 -
tags/1.1.0/Read me.txt
r58 r71 1 Developed using Lazarus 2.0.10 (http://www.lazarus-ide.org/) 1 A 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)1 Version 1.1.0 (2020-11-28) 2 2 ========================== 3 3 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. 4 14 * 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. 5 18 * Fixed: Zooming by mouse wheel was inverted. Not worked correctly with touch screen. 6 19 * Fixed: Avoid division by zero in line intersection calculation. -
trunk/Forms/UFormMain.lfm
r63 r71 45 45 Identification = 1 46 46 VersionMajor = 1 47 VersionMinor = 147 VersionMinor = 2 48 48 VersionBugFix = 0 49 49 HomePage = 'https://app.zdechov.net/BigMetro' … … 52 52 AppName = 'Big Metro' 53 53 Description = 'Enjoyable real-time metro building game.' 54 ReleaseDate = 4416 054 ReleaseDate = 44163 55 55 RegistryKey = '\Software\Chronosoft\BigMetro' 56 56 RegistryRoot = rrKeyCurrentUser -
trunk/Install/deb/debian/control
r54 r71 3 3 Section: utils 4 4 Priority: optional 5 Standards-Version: 1. 0.15 Standards-Version: 1.2.0 6 6 Build-Depends: fpc, lazarus, lcl, lcl-utils, debhelper (>= 8) 7 7 -
trunk/Install/win/BigMetro.iss
r56 r71 4 4 #define MyAppName "BigMetro" 5 5 #define MyAppNameShort "BigMetro" 6 #define MyAppVersion "1. 0.1"6 #define MyAppVersion "1.2.0" 7 7 #define MyAppPublisher "Chronosoft" 8 8 #define MyAppPublisherShort "Chronosoft" … … 60 60 Source: "{#MyAppSubDir}\lib\x86_64-win64-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: Is64BitInstallMode 61 61 Source: "{#MyAppSubDir}\lib\i386-win32-Release\{#MyAppExeName}"; DestDir: "{app}"; Flags: ignoreversion; Check: not Is64BitInstallMode 62 ;Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion62 Source: "{#MyAppSubDir}\Languages\*.po"; DestDir: "{app}\Languages"; Flags: ignoreversion 63 63 64 64 -
trunk/Read me.txt
r58 r71 1 Developed using Lazarus 2.0.10 (http://www.lazarus-ide.org/) 1 A 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)1 Version 1.1.0 (2020-11-28) 2 2 ========================== 3 3 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. 4 14 * 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. 5 18 * Fixed: Zooming by mouse wheel was inverted. Not worked correctly with touch screen. 6 19 * Fixed: Avoid division by zero in line intersection calculation.
Note:
See TracChangeset
for help on using the changeset viewer.