From 13f7ccc87a5a5c598b3dd78a0c0e0f439371c2b7 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 11 Sep 2020 14:28:25 +0100 Subject: [PATCH] Pre-Release 4.1.0-beta4 --- ChangeLog.md | 23 +++++++++++++++++++++++ config.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 78a38816..fe54941b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,29 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Pre-Release 4.1.0-beta4 +=== + +**Users of prior 4.1.0 betas who have set a non-default UI Scale probably want +to set it to default (0 or 0.0 in the older versions) before installing this +version.** + +This is mostly another iteration on the UI Scaling functionality, but also +fixes EDMC.exe to actually work again. + +* Fix import order in EDMC.py so the CL utility actually runs. +* This also involved updating the *development* modules we use, you only need + to worry if you're using flake8 or the like in helping develop this + application. +* UI Scaling is now versus what it would otherwise have been at startup. + 1. 100 is now the default. + 1. If you select 0 it will become 100 on the next startup. + 1. The UI Scale bar will now size correctly per current scaling rather + than getting ahead of itself and sizing as per the next-start scaling + you now have set. + 1. We now strictly have a range of 10% to 400% of your default scaling + rather than a somewhat arbitrary range that hopefully includes it. + Pre-Release 4.1.0-beta3 === diff --git a/config.py b/config.py index cbd7f099..61ec5a1a 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-beta3' #-rc1+a872b5f' +appversion = '4.1.0-beta4' #-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'