From 0ec869325e543e5edc2768d7f83888bb3ac7ff9a Mon Sep 17 00:00:00 2001 From: Hiraoka Date: Thu, 28 Dec 2023 19:42:24 +0900 Subject: [PATCH] bump version to 0.8.0-pre4 --- Makefile | 2 +- build_with/Makefile | 6 +++--- build_with/release.md | 29 +++++++++++++++++++++++++++++ package.json | 2 +- 4 files changed, 34 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 6a26c90..bf39050 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -RELEASE = 230714a +RELEASE = 231228a VERSION = $(shell grep '"version"' package.json | cut -d '"' -f 4) EXE = dist/LizGoban\ $(VERSION).exe diff --git a/build_with/Makefile b/build_with/Makefile index ba0b631..5c67eea 100644 --- a/build_with/Makefile +++ b/build_with/Makefile @@ -80,9 +80,9 @@ $(KATA_DOC): $(KATA_DIR)/README.txt $(DOC) # katago KATA_URL_BASE = https://github.com/lightvector/KataGo/releases/download -KATA_URL1 = $(KATA_URL_BASE)/v1.13.0/katago-v1.13.0-eigen-windows-x64.zip -KATA_URL2 = $(KATA_URL_BASE)/v1.13.0/katago-v1.13.0-eigenavx2-windows-x64.zip -KATA_URL3 = $(KATA_URL_BASE)/v1.13.0/katago-v1.13.0-opencl-windows-x64.zip +KATA_URL1 = $(KATA_URL_BASE)/v1.14.0/katago-v1.14.0-eigen-windows-x64.zip +KATA_URL2 = $(KATA_URL_BASE)/v1.14.0/katago-v1.14.0-eigenavx2-windows-x64.zip +KATA_URL3 = $(KATA_URL_BASE)/v1.14.0/katago-v1.14.0-opencl-windows-x64.zip KATA_MODEL_URL = https://katagoarchive.org/g170/neuralnets/g170e-b15c192-s1672170752-d466197061.bin.gz KATA_MODEL_D_URL = https://katagoarchive.org/g170/LICENSE.txt diff --git a/build_with/release.md b/build_with/release.md index 3ba48f8..142dc64 100644 --- a/build_with/release.md +++ b/build_with/release.md @@ -2,6 +2,35 @@ # Release notes +## LizGoban 0.8.0-pre4 + +* Upgrade KataGo to [1.14.0](https://github.com/lightvector/KataGo/releases/tag/v1.14.0). +* Add sound feature. (You need to prepare and set sound files by yourself.) +* Replace SOPPO indicator with playing styles indicator. +* Add playing styles indicator to ownership distribution chart. +* Change playing style of persona strategy. This is still being tested and might change in the future. +* Avoid unnatural tenuki in match vs. weakened AI. +* Add "Open recent" to File menu. +* Detect encoding of SGF files etc. +* Support [TamaGo](https://github.com/kobanium/TamaGo). (You need [a patch](https://github.com/kobanium/TamaGo/pull/80) currently on 2023-12-28.) + +Minor changes: + +* Add "board_size" and "wait_for_startup" to preset in config.json. +* Make `Ctrl-,` key toggle preferences window. +* Enable app.quit() in REPL for external control. +* Add "default preset" to "Engine is down" dialog for SSH disconnection. +* Use entropy as the ambiguity measure. +* Fix bugs. + +Incompatibilities: + +* Upgrade libraries (Electron 28, etc.). So you may need to do "npm install" again if you use LizGoban from the command line. + +Acknowledgement: + +* Thanks to [qcgm1978](https://github.com/qcgm1978) for the contributions and suggestions. + ## LizGoban 0.8.0-pre3 * Fix bugs. (wrong ruleset, reset of visit count) diff --git a/package.json b/package.json index b409ef9..2a83315 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LizGoban", - "version": "0.8.0-pre3", + "version": "0.8.0-pre4", "description": "An analysis tool of the game Go with Leela Zero and KataGo", "author": "kaorahi ", "license": "GPL-3.0",