From 2267c844f0f013bc40df3b87c33fa55b70b1975c Mon Sep 17 00:00:00 2001 From: MetatransApps Date: Sat, 30 Jul 2022 20:12:05 +0300 Subject: [PATCH] Release Version 3.4g --- .../Resources/doc/engine/txt/release_notes_BagaturEngine.txt | 4 ++++ Sources/UCI/src/bagaturchess/uci/impl/Protocol.java | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Sources/Resources/doc/engine/txt/release_notes_BagaturEngine.txt b/Sources/Resources/doc/engine/txt/release_notes_BagaturEngine.txt index 25852156..120e4218 100644 --- a/Sources/Resources/doc/engine/txt/release_notes_BagaturEngine.txt +++ b/Sources/Resources/doc/engine/txt/release_notes_BagaturEngine.txt @@ -1,3 +1,7 @@ +Version 3.4g (29 July 2022) + * Bugfixing (not related with FRC), of an issue introduced with version 3.4f. It is related with the extraction of moves from Transposition Table and building the PV to show as output. + * Bugfixing (not related with FRC), sometimes in mate positions, after repetition of move 2 times, Bagatur evaluation jumps between 0 and +-Mate score. + Version 3.4f (24 July 2022) * Fix for FRC: send castling moves to GUI always as "king capture own rook" diff --git a/Sources/UCI/src/bagaturchess/uci/impl/Protocol.java b/Sources/UCI/src/bagaturchess/uci/impl/Protocol.java index 2143dad4..21f346a6 100644 --- a/Sources/UCI/src/bagaturchess/uci/impl/Protocol.java +++ b/Sources/UCI/src/bagaturchess/uci/impl/Protocol.java @@ -30,7 +30,7 @@ public class Protocol { - public static final String COMMAND_TO_GUI_ID_VERSION_STR = "3.4f"; + public static final String COMMAND_TO_GUI_ID_VERSION_STR = "3.4g"; public static final String COMMAND_TO_ENGINE_UCI_STR = "uci"; public static final String COMMAND_TO_ENGINE_ISREADY_STR = "isready";