Re-enabled include_msvcr for setup.py (& updated changelog/version)

This commit is contained in:
unknown 2021-12-01 16:03:45 +01:00
parent ad2c79d0c6
commit 23e652f17a
3 changed files with 17 additions and 5 deletions

View file

@ -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

View file

@ -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 = {

View file

@ -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"