diff options
author | Patric Stout <truebrain@openttd.org> | 2021-06-28 16:39:48 +0200 |
---|---|---|
committer | Patric Stout <github@truebrain.nl> | 2021-07-02 14:30:14 +0200 |
commit | 75b6051b7ae3aade1f06c8eb2bb915add4f317d1 (patch) | |
tree | f1fc0f61e208c58001c19da5bd9c4005c100e9b5 /src/table/settings/CMakeLists.txt | |
parent | 4f3bf84af4eb03936c0242871d7fb5b3b3214e2d (diff) | |
download | openttd-75b6051b7ae3aade1f06c8eb2bb915add4f317d1.tar.xz |
Change: move sensitive information to secrets.cfg and private information to private.cfg
We often ask people for their openttd.cfg, which now includes their
passwords, usernames, etc. It is easy for people to overlook this,
unwillingly sharing information they shouldn't.
By splitting this information over either private.cfg or secrets.cfg,
we make it more obvious they shouldn't be sharing those files, and
hint to what is inside them.
Diffstat (limited to 'src/table/settings/CMakeLists.txt')
-rw-r--r-- | src/table/settings/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/table/settings/CMakeLists.txt b/src/table/settings/CMakeLists.txt index 802b6b42d..f4d3c209e 100644 --- a/src/table/settings/CMakeLists.txt +++ b/src/table/settings/CMakeLists.txt @@ -7,6 +7,8 @@ set(TABLE_INI_SOURCE_FILES ${CMAKE_CURRENT_SOURCE_DIR}/gameopt_settings.ini ${CMAKE_CURRENT_SOURCE_DIR}/misc_settings.ini ${CMAKE_CURRENT_SOURCE_DIR}/network_settings.ini + ${CMAKE_CURRENT_SOURCE_DIR}/network_private_settings.ini + ${CMAKE_CURRENT_SOURCE_DIR}/network_secrets_settings.ini ${CMAKE_CURRENT_SOURCE_DIR}/settings.ini ${CMAKE_CURRENT_SOURCE_DIR}/win32_settings.ini ${CMAKE_CURRENT_SOURCE_DIR}/window_settings.ini |