From 6cf1a30482c8cab9ff4754f528e6a0725afcb18c Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 6 May 2021 08:51:59 +0100 Subject: [PATCH] Pre-Release 5.0.0-beta8: appversion and changelog --- ChangeLog.md | 25 +++++++++++++++++++++++++ config.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 5e6b5be0..edf1cd82 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,31 @@ This is due to moving to Python 3.9.x, which itself does not now support Windows 7. The application (both EDMarketConnector.exe and EDMC.exe) will crash on startup due to a missing DLL.** +Pre-Release 5.0.0-beta8 +=== + +* If the application detects it's running against a non-live (alpha or beta) + version of the game it will append " (beta)" to the Commander name on the + main UI. + +* Don't assume some Journal events always have a 'Cost' value. + +* Removed a stray piece of code relating to the aborted systray + implementation. This would have caused minimising of the application to + hide the window. Only triggered if you'd tried our `develop` branch + whilst the systray code was active, and left the option "Minimize to systray" + active. + +Plugin Developers +--- + +* `monitor.state['OnFoot']` is now set True for a `DropshipDeploy` event. + +* Better detect that we're back on-foot from `Disembark` on a station. + +* Better `Docked` event processing to cater for the more limited form of this + event in an Apex taxi. + Pre-Release 5.0.0-beta7 === diff --git a/config.py b/config.py index 7ea609a8..8eafbe5d 100644 --- a/config.py +++ b/config.py @@ -33,7 +33,7 @@ appcmdname = 'EDMC' # # Major.Minor.Patch(-prerelease)(+buildmetadata) # NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.0.0-beta7' +_static_appversion = '5.0.0-beta8' copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD' update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml'