1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-07 19:03:23 +03:00

Pre-Release 5.0.0-beta8: appversion and changelog

This commit is contained in:
Athanasius 2021-05-06 08:51:59 +01:00
parent 55fa06dd73
commit 6cf1a30482
2 changed files with 26 additions and 1 deletions

View File

@ -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 Windows 7. The application (both EDMarketConnector.exe and EDMC.exe) will
crash on startup due to a missing DLL.** 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 Pre-Release 5.0.0-beta7
=== ===

View File

@ -33,7 +33,7 @@ appcmdname = 'EDMC'
# <https://semver.org/#semantic-versioning-specification-semver> # <https://semver.org/#semantic-versioning-specification-semver>
# Major.Minor.Patch(-prerelease)(+buildmetadata) # Major.Minor.Patch(-prerelease)(+buildmetadata)
# NB: Do *not* import this, use the functions appversion() and appversion_nobuild() # 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' copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'
update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml' update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml'