Sanmill v1.1.22 (2079)
Official release version of Sanmill v1.1.22 Signed-off-by: Calcitem <calcitem@outlook.com>
This commit is contained in:
parent
0fdee4049e
commit
1a9c078be0
|
@ -0,0 +1,3 @@
|
|||
v1.1.22
|
||||
|
||||
Beim Spiel Mensch gegen KI haben beide Seiten viele Züge gemacht, aber viele aufeinanderfolgende Züge lang keine Figuren des Gegners genommen, und die KI wird eingefroren. Dieses Problem wurde behoben.
|
|
@ -0,0 +1,3 @@
|
|||
v1.1.22
|
||||
|
||||
When humans vs. AI, the two sides have made many moves but have not taken the opponent's pieces for many consecutive moves, and the AI will get frozen. This issue has been resolved.
|
|
@ -0,0 +1,3 @@
|
|||
v1.1.22
|
||||
|
||||
Cuando los humanos contra la IA, los dos bandos han hecho muchos movimientos pero no han tomado las piezas del oponente durante muchos movimientos consecutivos, y la IA se congelará. Este problema se ha resuelto.
|
|
@ -0,0 +1,3 @@
|
|||
v1.1.22
|
||||
|
||||
解决人机对战时,双方连续多步未吃子时,AI 会卡住不走棋的问题。
|
|
@ -21,8 +21,8 @@ IDI_ICON1 ICON DISCARDABLE "MillGame.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,1,21,0
|
||||
PRODUCTVERSION 1,1,21,0
|
||||
FILEVERSION 1,1,22,0
|
||||
PRODUCTVERSION 1,1,22,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -39,12 +39,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Calcitem"
|
||||
VALUE "FileDescription", "Mill Game"
|
||||
VALUE "FileVersion", "1.1.21.0"
|
||||
VALUE "FileVersion", "1.1.22.0"
|
||||
VALUE "InternalName", "Sanmill"
|
||||
VALUE "LegalCopyright", "(C) 2019-2021 Calcitem, All Rights Reserved."
|
||||
VALUE "OriginalFilename", "MillGame.exe"
|
||||
VALUE "ProductName", "MillGame"
|
||||
VALUE "ProductVersion", "1.1.21.0"
|
||||
VALUE "ProductVersion", "1.1.22.0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: sanmill
|
||||
description: Sanmill is a open-source, powerful UCI-like Nine Men's Morris (and its variants) program.
|
||||
|
||||
version: 1.1.21+2077
|
||||
version: 1.1.22+2079
|
||||
|
||||
environment:
|
||||
sdk: '>=2.12.0 <3.0.0'
|
||||
|
|
|
@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
|
|||
#ifdef FLUTTER_BUILD_NUMBER
|
||||
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
|
||||
#else
|
||||
#define VERSION_AS_NUMBER 1,1,21
|
||||
#define VERSION_AS_NUMBER 1,1,22
|
||||
#endif
|
||||
|
||||
#ifdef FLUTTER_BUILD_NAME
|
||||
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
|
||||
#else
|
||||
#define VERSION_AS_STRING "1.1.21"
|
||||
#define VERSION_AS_STRING "1.1.22"
|
||||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
|
|
Loading…
Reference in New Issue