From 4cec46b0282ee768c3ee3dae227be98bdbc29471 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Tue, 22 Sep 2020 16:30:49 +0100 Subject: [PATCH] Pre-Release 4.1.0-beta6 --- ChangeLog.md | 16 ++++++++++++++++ config.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 4245028f..dbeaeb09 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,22 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Pre-Release 4.1.0-beta6 +=== + +* Include a manifest in both EDMarketConnector.exe and EDMC.exe to specify + they're Unicode applications so that they default to using the UTF-8 + codepage. Fixes [#711](https://github.com/EDCD/EDMarketConnector/issues/711). + +* Add extra debug logging to EDSM plugin for `CarrierJump`, `FSDJump`, + `Location` and `Docked` events. Hopefully this will help track down the + cause of [#713](https://github.com/EDCD/EDMarketConnector/issues/713). + +* Various code cleanups which shouldn't impact user experience. + +* EDMC.exe will now log useful startup state information if run with the + `--loglevel DEBUG` arguments. + Pre-Release 4.1.0-beta5 === diff --git a/config.py b/config.py index 10d4b471..2fb400e3 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.0-beta5' #-rc1+a872b5f' +appversion = '4.1.0-beta6' #-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'