From e3d55420d4133ecb63d6a6ae675a082daba31b29 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Sun, 8 Aug 2021 14:45:28 +0100 Subject: [PATCH] Release 5.1.3: changelog & appversion --- ChangeLog.md | 18 +++++++++++++++++- config.py | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 98ed6322..7a86bcc9 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -17,7 +17,7 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in the source (it's not distributed with the Windows installer) for the currently used version in a given branch. -Pre-Release 5.1.3-beta1 +Release 5.1.3 === * Attempt to flush any pending EDSM API data when a Journal `Shutdown` or @@ -29,6 +29,14 @@ Pre-Release 5.1.3-beta1 processing of a new one. In particular this ensures properly seeing the end of a continued Journal file when opening the continuation file. +* New config options, in a new `Privacy` tab, to hide the current Private + Group, or captain of a ship you're multi-crewing on. These usually appear + on the `Commander` line of the main UI, appended after your commander name, + with a `/` between. + +* EDO dockable settlement names with `+` characters appended will no longer + cause 'server lagging' reports. + * Don't force DEBUG level logging to the [plain log file](https://github.com/EDCD/EDMarketConnector/wiki/Troubleshooting#plain-log-file) if `--trace` isn't used to force TRACE level logging. This means logging @@ -48,6 +56,14 @@ Pre-Release 5.1.3-beta1 See [Contributing.md](Contributing.md#use-the-appropriate-logging-level) for details. +* Loading of `ShipLocker.json` content is now tried up to 5 times, 10ms apart, + if there is a file loading, or JSON decoding, failure. This should + hopefully result in the data being loaded correctly if a race condition with + the game client actually writing to and closing the file is encountered. + +* `config.get_bool('some_str', default=SomeDefault)` will now actually honour + that specified default. + Release 5.1.2 === diff --git a/config.py b/config.py index 34afef86..e88f3275 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.1.3-beta1' +_static_appversion = '5.1.3' _cached_version: Optional[semantic_version.Version] = None copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'