Skip to content

Commit

Permalink
bump version to 0.8.0-pre2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiraoka committed Jun 29, 2023
1 parent d64c40d commit 2cb8746
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
RELEASE = 230430a
RELEASE = 230629a

VERSION = $(shell grep '"version"' package.json | cut -d '"' -f 4)
EXE = dist/LizGoban\ $(VERSION).exe
Expand Down
6 changes: 3 additions & 3 deletions build_with/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
18 changes: 12 additions & 6 deletions build_with/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.)
Expand All @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <khi@users.osdn.me>",
"license": "GPL-3.0",
Expand Down

0 comments on commit 2cb8746

Please sign in to comment.