From 64f203517defa5bef619957cda67da413fe099cd Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 15 Oct 2020 11:49:30 +0100 Subject: [PATCH] Release 4.1.4 --- ChangeLog.md | 11 +++++++++++ config.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index eedceac0..e6d07440 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,17 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release 4.1.4 +=== + +The only change from 4.1.3 is to insert some Windows version checks before +even attempting to set a UTF-8 encoding. We'll now only attempt this if the +user is *not* on Windows, or is on at least Windows 10 1903. + +For unknown reasons no exception was being thrown under some circumstances (in +this case running under an earlier Windows 10, but with EDMarketConnector.exe +set to run in Windows 7 compatibility mode for some unknown reason). + Release 4.1.3 === diff --git a/config.py b/config.py index 3dcdca95..880f559d 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ appcmdname = 'EDMC' # appversion **MUST** follow Semantic Versioning rules: # # Major.Minor.Patch(-prerelease)(+buildmetadata) -appversion = '4.1.3' #-rc1+a872b5f' +appversion = '4.1.4' #-rc1+a872b5f' # For some things we want appversion without (possible) +build metadata appversion_nobuild = str(semantic_version.Version(appversion).truncate('prerelease')) copyright = u'© 2015-2019 Jonathan Harris, 2020 EDCD'