diff --git a/CHANGELOG.md b/CHANGELOG.md index 17cfb53..6f7b126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,13 @@ # Changelog (This document uses YYYY-MM-DD) -## [v2.1.3.1] - 2021-9-18 +## [v2.1.3.2] - 2021-12-1 ### Fixed - Crash for certain invalid values of PESTERCHUM:TIME> - + - Fixed invalid group name causing a crash + - "Fixed" toast related mac crash? + - Re-enabled include_msvcr for setup.py (Should hopefully actually work now) ## [v2.1.3.1] - 2021-8-24 diff --git a/setup.py b/setup.py index 8bc8ea8..1463d17 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,14 @@ base = None if sys.platform == "win32": base = "Win32GUI" + path = sys.path + if is_64bit() == True: + path.append(r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x64") + elif is_64bit() == False: + path.append(r"C:\Program Files (x86)\Windows Kits\10\Redist\10.0.22000.0\ucrt\DLLs\x86") + + print("Path = " + str(path)) + includefiles = ["quirks", "smilies", "themes", @@ -61,7 +69,9 @@ build_exe_options = { 'PyQt5.QtDesigner', 'PyQt5.QAxContainer',], "include_files": includefiles, - "include_msvcr": False# cx_freeze copies 64-bit binaries always? + "include_msvcr": True, # cx_freeze copies 64-bit binaries always? + "path": path # Improved in 6.6, path to be safe + # VCRUNTIME140.dll <3 } bdist_mac_options = { diff --git a/version.py b/version.py index d65837d..4494174 100644 --- a/version.py +++ b/version.py @@ -1,2 +1,2 @@ -_pcVersion = "Alt. v2.1.3.1" -buildVersion = "v2.1.3.1" +_pcVersion = "Alt. v2.1.3.2" +buildVersion = "v2.1.3.2"