Sanmill v1.1.18 (2067)
Official release version of Sanmill v1.1.18 Signed-off-by: Calcitem <calcitem@outlook.com>
This commit is contained in:
parent
3729162862
commit
d0815c2ea2
|
@ -0,0 +1,5 @@
|
|||
v1.1.18
|
||||
|
||||
* Wenn die Fähigkeitsstufe 1 ist, bewegt sich die KI zufälliger, um den Schwierigkeitsgrad zu verringern.
|
||||
* Die Einstellung der Navigationssymbolleiste verschwindet auf einigen Geräten.
|
||||
* Korrigieren Sie die Textfarbe des Schubladenhervorhebungselements
|
|
@ -0,0 +1,5 @@
|
|||
v1.1.18
|
||||
|
||||
* When the skill level is 1, AI moves more randomly to reduce the difficulty.
|
||||
* Fix navigation toolbar setting disappears on some devices.
|
||||
* Fix drawer highlight item text color.
|
|
@ -0,0 +1,5 @@
|
|||
v1.1.18
|
||||
|
||||
* Cuando el nivel de habilidad es 1, la IA se mueve de forma más aleatoria para reducir la dificultad.
|
||||
* Arreglar la configuración de la barra de herramientas de navegación desaparece en algunos dispositivos.
|
||||
* Se corrigió el color del texto del elemento resaltado del cajón.
|
|
@ -0,0 +1,5 @@
|
|||
v1.1.18
|
||||
|
||||
* 当难度等级设置为1时,AI 行棋更随机,以降低难度。
|
||||
* 修复在某些设备上导航工具栏设置消失的问题。
|
||||
* 修复抽屉高亮条目文本的颜色异常问题。
|
|
@ -21,8 +21,8 @@ IDI_ICON1 ICON DISCARDABLE "MillGame.ico"
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,1,17,0
|
||||
PRODUCTVERSION 1,1,17,0
|
||||
FILEVERSION 1,1,18,0
|
||||
PRODUCTVERSION 1,1,18,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -39,12 +39,12 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Calcitem"
|
||||
VALUE "FileDescription", "Mill Game"
|
||||
VALUE "FileVersion", "1.1.17.0"
|
||||
VALUE "FileVersion", "1.1.18.0"
|
||||
VALUE "InternalName", "Sanmill"
|
||||
VALUE "LegalCopyright", "(C) 2019-2021 Calcitem, All Rights Reserved."
|
||||
VALUE "OriginalFilename", "MillGame.exe"
|
||||
VALUE "ProductName", "MillGame"
|
||||
VALUE "ProductVersion", "1.1.17.0"
|
||||
VALUE "ProductVersion", "1.1.18.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.17+2060
|
||||
version: 1.1.18+2067
|
||||
|
||||
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,17
|
||||
#define VERSION_AS_NUMBER 1,1,18
|
||||
#endif
|
||||
|
||||
#ifdef FLUTTER_BUILD_NAME
|
||||
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME
|
||||
#else
|
||||
#define VERSION_AS_STRING "1.1.17"
|
||||
#define VERSION_AS_STRING "1.1.18"
|
||||
#endif
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
|
|
Loading…
Reference in New Issue