Skip to content

Commit

Permalink
fixes for config version and build
Browse files Browse the repository at this point in the history
  • Loading branch information
Sander Land committed Jun 24, 2022
1 parent 1f094e3 commit c098e37
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion katrain/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"anim_pv_time": 0.5,
"debug_level": 0,
"lang": "en",
"version": "1.11.0",
"version": "1.11.2",
"load_fast_analysis": false,
"load_sgf_rewind": true
},
Expand Down
4 changes: 2 additions & 2 deletions katrain/core/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PROGRAM_NAME = "KaTrain"
VERSION = "1.11.1"
VERSION = "1.11.2"
HOMEPAGE = "https://github.com/sanderland/katrain"
CONFIG_MIN_VERSION = "1.11.1" # keep config files from this version
CONFIG_MIN_VERSION = "1.11.0" # keep config files from this version
ANALYSIS_FORMAT_VERSION = "1.0"
DATA_FOLDER = "~/.katrain"

Expand Down
8 changes: 4 additions & 4 deletions spec/KaTrain.spec
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ a = Analysis(
("..\\katrain\\fonts", "katrain\\fonts"),
("..\\katrain\\i18n", "katrain\\i18n"),
],
hiddenimports=["win32file", "win32timezone"], # FileChooser in kivy loads this conditionally
hiddenimports=["win32file", "win32timezone", "six"], # FileChooser in kivy loads win32file conditionally, mkl needs six
hookspath=[kivymd_hooks_path],
excludes=["scipy", "pandas", "numpy", "matplotlib", "docutils", "mkl"],
excludes=["matplotlib", "docutils", "scipy", "pandas"],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=None,
Expand Down Expand Up @@ -96,5 +96,5 @@ for console, name in console_names.items():
powershell.stdin.write(f"Set-AuthenticodeSignature dist/{name}/{name}.exe -Certificate (Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert)\n".encode('ascii'))
powershell.stdin.flush()

while True:
print(powershell.stdout.readline())
#while True:
# print(powershell.stdout.readline())

0 comments on commit c098e37

Please sign in to comment.