Sanmill v1.1.38 (2196)

Official release version of Sanmill v1.1.38

Signed-off-by: Calcitem <calcitem@outlook.com>
This commit is contained in:
Calcitem 2021-10-05 00:33:27 +08:00
parent 351b79b7bf
commit a5dfe514f2
No known key found for this signature in database
GPG Key ID: F2F7C29E054CFB80
8 changed files with 47 additions and 7 deletions

View File

@ -0,0 +1,8 @@
v1.1.38
* Unterstützung des Entfernens von nicht gesetzten Steinen - Wenn ein Spieler in der Setzphase die Mühle bildet, kann er den nicht gesetzten Stein des Gegners entfernen und einen weiteren Zug machen.
* Unterstützung der Endspiel-N-Zug-Regel.
* Änderung der Urteilsbedingung der N-Zug-Regel von > auf =.
* Unterstützt dreifache Wiederholungseinstellung.
* Erlaubt die Konfiguration von Punktstil und Punktbreite.
* Unterstützt den Import von GoldToken-Zuglisten.

View File

@ -0,0 +1,8 @@
v1.1.38
* Support removing unplaced piece setting - If a player forms the mill in the placing phase, he can remove the opponent's unplaced piece and continue to make a move.
* Support Endgame N-Move rule.
* Change the judgment condition of the N-move rule from > to =.
* Support threefold repetition setting.
* Allow configuring point style and point width.
* Support import GoldToken move list.

View File

@ -0,0 +1,8 @@
v1.1.38
* Apoyar la eliminación de la colocación de piezas no colocadas - Si un jugador forma el molino en la fase de colocación, puede eliminar la pieza no colocada del oponente y continuar haciendo un movimiento.
* Apoyar la regla del movimiento N del final.
* Cambia la condición de juicio de la regla del movimiento N de > a =.
* Soporta la configuración de la repetición triple.
* Permitir configurar el estilo y el ancho de los puntos.
* Soporta importar la lista de movimientos de GoldToken.

View File

@ -0,0 +1,8 @@
v1.1.38
* پشتیبانی از حذف تنظیم مهره بدون محل - اگر بازیکنی در مرحله قرار دادن دوز را تشکیل دهد ، می تواند مهره بدون محل حریف را برداشته و به حرکت خود ادامه دهد.
* پشتیبانی از پایان بازی N حرکت قانون.
* شرایط قضاوت قانون حرکت N را از> به = تغییر دهید.
* پشتیبانی از تنظیمات تکراری سه برابر.
* امکان پیکربندی سبک نقطه و عرض نقطه.
* پشتیبانی از وارد کردن لیست حرکت GoldToken.

View File

@ -0,0 +1,8 @@
v1.1.38
* 新增“只能吃掉未摆的子”选项 - 如果棋手在摆棋阶段形成三连,则可以吃掉对方未摆的棋子,然后继续下棋。
* 支持终盘N步规则。
* 将N步规则的判断条件从 > 改为 = 。
* 新增三次重复局面和的配置项。
* 允许配置棋盘交叉点的样式和大小。
* 支持导入 GoldToken 格式的棋谱。

View File

@ -21,8 +21,8 @@ IDI_ICON1 ICON DISCARDABLE "MillGame.ico"
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,37,0 FILEVERSION 1,1,38,0
PRODUCTVERSION 1,1,37,0 PRODUCTVERSION 1,1,38,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -39,12 +39,12 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Calcitem" VALUE "CompanyName", "Calcitem"
VALUE "FileDescription", "Mill Game" VALUE "FileDescription", "Mill Game"
VALUE "FileVersion", "1.1.37.0" VALUE "FileVersion", "1.1.38.0"
VALUE "InternalName", "Sanmill" VALUE "InternalName", "Sanmill"
VALUE "LegalCopyright", "(C) 2019-2021 Calcitem, All Rights Reserved." VALUE "LegalCopyright", "(C) 2019-2021 Calcitem, All Rights Reserved."
VALUE "OriginalFilename", "MillGame.exe" VALUE "OriginalFilename", "MillGame.exe"
VALUE "ProductName", "MillGame" VALUE "ProductName", "MillGame"
VALUE "ProductVersion", "1.1.37.0" VALUE "ProductVersion", "1.1.38.0"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"

View File

@ -1,7 +1,7 @@
name: sanmill name: sanmill
description: Sanmill is a open-source, powerful UCI-like Nine Men's Morris (and its variants) program. description: Sanmill is a open-source, powerful UCI-like Nine Men's Morris (and its variants) program.
version: 1.1.37+2184 version: 1.1.38+2196
environment: environment:
sdk: '>=2.12.0 <3.0.0' sdk: '>=2.12.0 <3.0.0'

View File

@ -63,13 +63,13 @@ IDI_APP_ICON ICON "resources\\app_icon.ico"
#ifdef FLUTTER_BUILD_NUMBER #ifdef FLUTTER_BUILD_NUMBER
#define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER #define VERSION_AS_NUMBER FLUTTER_BUILD_NUMBER
#else #else
#define VERSION_AS_NUMBER 1,1,37 #define VERSION_AS_NUMBER 1,1,38
#endif #endif
#ifdef FLUTTER_BUILD_NAME #ifdef FLUTTER_BUILD_NAME
#define VERSION_AS_STRING #FLUTTER_BUILD_NAME #define VERSION_AS_STRING #FLUTTER_BUILD_NAME
#else #else
#define VERSION_AS_STRING "1.1.37" #define VERSION_AS_STRING "1.1.38"
#endif #endif
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO