diff --git a/Makefile b/Makefile index ea6c07b..bf05040 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -RELEASE = 230430a +RELEASE = 230629a 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 80da343..291f473 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.12.4/katago-v1.12.4-eigen-windows-x64.zip -KATA_URL2 = $(KATA_URL_BASE)/v1.12.4/katago-v1.12.4-eigenavx2-windows-x64.zip -KATA_URL3 = $(KATA_URL_BASE)/v1.12.4/katago-v1.12.4-opencl-windows-x64.zip +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_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 d61fcd4..429810d 100644 --- a/build_with/release.md +++ b/build_with/release.md @@ -2,9 +2,19 @@ # Release notes +## LizGoban 0.8.0-pre2 + +* Upgrade KataGo to [1.13.0](https://github.com/lightvector/KataGo/releases/tag/v1.13.0). +* Provide simpler methods to replace the built-in engine / network. Details are available in the notes below. +* Add leadings chart. +* Delete move numbers from tsumego frame to prevent potential confusion for KataGo. + +Incompatibilities: + +* Upgrade libraries (Electron 25, etc.). So you may need to do "npm install" again if you use LizGoban from the command line. + ## LizGoban 0.8.0-pre1 -* Upgrade KataGo to [1.12.4](https://github.com/lightvector/KataGo/releases/tag/v1.12.4). * Blur ownership display. (Borrow the idea from [katrain#555](https://github.com/sanderland/katrain/issues/555).) * Replace zone indicator with SOPPO indicator for successive misses of the best move. * Add ownership distribution chart at the bottom left. (Press "x" key to enlarge it.) @@ -14,15 +24,11 @@ * Make long press of cursor keys smoother. * Fix minor bugs. -Incompatibilities: - -* Upgrade libraries (Electron 24, etc.). So you may need to do "npm install" again if you use LizGoban from the command line. - ### To use it on 64bit Windows immediately Just download the all-in-one package (`LizGoban-*_win_*.zip`), unzip it, and double-click `LizGoban *.exe`. You do not need installation, configuration, additional downloads, and so on. Its file size is due to the built-in engine: -* [KataGo 1.12.4](https://github.com/lightvector/KataGo/releases/tag/v1.12.4) (eigen, eigenavx2, opencl) + [15 block network](https://katagotraining.org/networks/) (g170e-b15c192-s1672 from [KataGo 1.4.5](https://github.com/lightvector/KataGo/releases/tag/v1.4.5)) +* [KataGo 1.13.0](https://github.com/lightvector/KataGo/releases/tag/v1.13.0) (eigen, eigenavx2, opencl) + [15 block network](https://katagotraining.org/networks/) (g170e-b15c192-s1672 from [KataGo 1.4.5](https://github.com/lightvector/KataGo/releases/tag/v1.4.5)) You can switch KataGo versions (CPU, modern CPU, GPU) by [Preset] menu in LizGoban. The first run of the GPU version may take a long time (1 hour on a low-spec machine, for example) for its initial tuning. diff --git a/package.json b/package.json index d71b6fb..a72374c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LizGoban", - "version": "0.8.0-pre1", + "version": "0.8.0-pre2", "description": "An analysis tool of the game Go with Leela Zero and KataGo", "author": "kaorahi ", "license": "GPL-3.0",