mirror of
https://github.com/glest/glest-source.git
synced 2025-09-01 20:12:40 +02:00
Updated changelog
This commit is contained in:
@@ -12,7 +12,8 @@ v1.0
|
|||||||
- Maximum unit selection cap has been removed
|
- Maximum unit selection cap has been removed
|
||||||
- Size of attack and move icons increased
|
- Size of attack and move icons increased
|
||||||
- Forest tilesets are more animated
|
- Forest tilesets are more animated
|
||||||
- You can leave and re-join network games, even if you experience lag
|
- You can leave and re-join network games, even if you experience lag (buggy)
|
||||||
|
- Console now hidden by default on Windows
|
||||||
- [Default command is changed to "attack" instead of "move", which is much more intuitive](https://github.com/ZetaGlest/zetaglest-source/commit/2c4fc340de958f6b94b40ee62eabff015625e62b)
|
- [Default command is changed to "attack" instead of "move", which is much more intuitive](https://github.com/ZetaGlest/zetaglest-source/commit/2c4fc340de958f6b94b40ee62eabff015625e62b)
|
||||||
(pressing "a" not needed anymore); ["m" key can be used for "move"](https://github.com/ZetaGlest/zetaglest-source/commit/bf5a04be18f2b16b8a565acff4baabc5fbfed293).
|
(pressing "a" not needed anymore); ["m" key can be used for "move"](https://github.com/ZetaGlest/zetaglest-source/commit/bf5a04be18f2b16b8a565acff4baabc5fbfed293).
|
||||||
- Updated UI to look more modern
|
- Updated UI to look more modern
|
||||||
|
@@ -6267,7 +6267,7 @@ namespace Game {
|
|||||||
LuaScript::setDisableSandbox(true);
|
LuaScript::setDisableSandbox(true);
|
||||||
}
|
}
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (config.getBool("ShowConsoleWindows", "false") == false)
|
if (config.getBool("ShowConsoleWindows", "false") == false && GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false)
|
||||||
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@@ -1302,7 +1302,7 @@ namespace Game {
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (checkBoxShowDeveloperConsoleOnWindows.getValue())
|
if (checkBoxShowDeveloperConsoleOnWindows.getValue())
|
||||||
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
||||||
else
|
else if (GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false)
|
||||||
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
||||||
#endif
|
#endif
|
||||||
Renderer::getInstance().loadConfig();
|
Renderer::getInstance().loadConfig();
|
||||||
|
@@ -1091,7 +1091,7 @@ namespace Game {
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (config.getBool("ShowConsoleWindows", "false") == true)
|
if (config.getBool("ShowConsoleWindows", "false") == true)
|
||||||
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
||||||
else
|
else if (GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false)
|
||||||
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@@ -480,7 +480,7 @@ namespace Game {
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
if (config.getBool("ShowConsoleWindows", "false") == true)
|
if (config.getBool("ShowConsoleWindows", "false") == true)
|
||||||
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
ShowWindow(GetConsoleWindow(), SW_SHOW);
|
||||||
else
|
else if (GlobalStaticFlags::getIsNonGraphicalModeEnabled() == false)
|
||||||
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
ShowWindow(GetConsoleWindow(), SW_HIDE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user