diff --git a/README.md b/README.md index 4966f9c..e49c361 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,9 @@ These are the major user-visible changes in 2.1: directory of SGF files. * Engine games now allow board sizes up to 52. -Version 2.1.1 is a minor update to also fix two engine play to accept -board sizes up to 52. +Version 2.1.1 and 2.1.2 are minor updates to also fix two engine play to accept +board sizes up to 52, and to fix a problem with SGF saving in locales that use +commas instead of decimal points. See VERSION_HISTORY for a history of changes. diff --git a/VERSION_HISTORY b/VERSION_HISTORY index 5401255..5ce99c9 100644 --- a/VERSION_HISTORY +++ b/VERSION_HISTORY @@ -8,8 +8,9 @@ These are the major user-visible changes in 2.1: directory of SGF files. * Engine games now allow board sizes up to 52. -Version 2.1.1 is a minor update to also fix two engine play to accept -board sizes up to 52. +Version 2.1.1 and 2.1.2 are minor updates to also fix two engine play to accept +board sizes up to 52, and to fix a problem with SGF saving in locales that use +commas instead of decimal points. q5Go 2.0 diff --git a/src/config.h b/src/config.h index b22f4b9..191bc8b 100644 --- a/src/config.h +++ b/src/config.h @@ -4,7 +4,7 @@ #define PACKAGE1 "q5goClient" /* Version number of package */ -#define VERSION_1 "2.1.1" +#define VERSION_1 "2.1.2" #ifdef GITHUB_CI_BUILD #define VERSION VERSION_1 " (GitHub action CI build on " __DATE__ ")" @@ -17,8 +17,7 @@ #define NEWVERSIONWARNING "
Welcome to version " VERSION " of q5go.
\n" \ CIBUILD \ "This version is primarily a minor bugfix release.
" \ - "It also has small enhancements, like copy/paste position in edit mode, and a new button to add an entire directory to the batch analysis.
" \ - "For a full list of changes, please refer to the README.
" \ + "It fixes a problem with saving SGF files when the locale is set to one that uses commas instead of decimal points.
" \ "This message will not be shown anymore on startup.
" #if __cplusplus >= 201703L