diff --git a/cm_changelog.txt b/cm_changelog.txt index e229e863..e66cfe4e 100644 --- a/cm_changelog.txt +++ b/cm_changelog.txt @@ -74,6 +74,13 @@ This is usable for any OpenTTD servers == CHANGELOG == +*** 14.0-RC1 (22 Feb 2024) *** +- Added hotkeys to save and load blueprints into slots (no gui yet). +- Added build info overlay for the tools with build preview. +- Removed hotkeys that were added to vanilla, renamed the rest to have cm_ prefix. +- Fixed colours on 32bpp sprites with CC (#14). +- Fixed real town population and house stats in newly created games. + *** 13.4 (6 Aug 2023) *** - Fix broken building preview in some cases (#21). - Allow community passwords to have up to 128 letters (#19). diff --git a/src/network/core/config.cpp b/src/network/core/config.cpp index 8451ecac..d9fe2b04 100644 --- a/src/network/core/config.cpp +++ b/src/network/core/config.cpp @@ -74,5 +74,6 @@ const char *NetworkContentMirrorUriString() */ const char *NetworkSurveyUriString() { - return GetEnv("OTTD_SURVEY_URI", "https://survey-participate.openttd.org/"); + // return GetEnv("OTTD_SURVEY_URI", "https://survey-participate.openttd.org/"); + return GetEnv("OTTD_SURVEY_URI", "https://citymania.org/survey/participate"); } diff --git a/src/survey.cpp b/src/survey.cpp index 89a57fc7..fc2c52c5 100644 --- a/src/survey.cpp +++ b/src/survey.cpp @@ -127,6 +127,8 @@ static auto &GenericSettingTables() _pathfinding_settings, _script_settings, _world_settings, + citymania::_settings, + citymania::_cmclient_settings, }; return _generic_setting_tables; }