diff --git a/katrain/config.json b/katrain/config.json index b0e9315bc..cd3b7a113 100644 --- a/katrain/config.json +++ b/katrain/config.json @@ -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 }, diff --git a/katrain/core/constants.py b/katrain/core/constants.py index 24bcc1787..3f685de55 100644 --- a/katrain/core/constants.py +++ b/katrain/core/constants.py @@ -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" diff --git a/spec/KaTrain.spec b/spec/KaTrain.spec index 96b22db8f..2730d6643 100644 --- a/spec/KaTrain.spec +++ b/spec/KaTrain.spec @@ -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, @@ -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()) \ No newline at end of file +#while True: +# print(powershell.stdout.readline()) \ No newline at end of file