From b7fbd0af0f506fe07ab98704e23929294eb2b1e9 Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Wed, 24 Aug 2022 16:46:17 +0300 Subject: [PATCH 40/40] Bump version number to 3.1.92 See osdn #45450 Signed-off-by: Marko Lindqvist --- fc_version | 4 ++-- server/savegame/savecompat.c | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/fc_version b/fc_version index d2c124bccb..9873d3d88b 100755 --- a/fc_version +++ b/fc_version @@ -7,8 +7,8 @@ MAJOR_VERSION="3" MINOR_VERSION="1" -PATCH_VERSION="91" -EMERGENCY_VERSION="9" +PATCH_VERSION="92" +EMERGENCY_VERSION="" VERSION_LABEL="-dev" # diff --git a/server/savegame/savecompat.c b/server/savegame/savecompat.c index 308d8f80c6..4e5806ecbe 100644 --- a/server/savegame/savecompat.c +++ b/server/savegame/savecompat.c @@ -2442,7 +2442,7 @@ static void compat_load_dev(struct loaddata *loading) } /* Version < 3.1.91 */ if (game_version < 3019200) { - /* Before version number bump to 3.1.92 */ + /* Before version number bump to 3.1.92, August 2022 */ int set_count; bool gamestart_valid = FALSE; bool al_set_already = FALSE; @@ -2713,6 +2713,11 @@ static void compat_load_dev(struct loaddata *loading) } player_slots_iterate_end; } /* Version < 3.1.92 */ + if (game_version < 3019300) { + /* Before version number bump to 3.1.93 */ + + } /* Version < 3.1.93 */ + #endif /* FREECIV_DEV_SAVE_COMPAT_3_2 */ } -- 2.35.1