1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-16 09:10:35 +03:00

Release 5.1.3: changelog & appversion

This commit is contained in:
Athanasius 2021-08-08 14:45:28 +01:00
parent 98d812fa79
commit e3d55420d4
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
2 changed files with 18 additions and 2 deletions

View File

@ -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
===

View File

@ -33,7 +33,7 @@ appcmdname = 'EDMC'
# <https://semver.org/#semantic-versioning-specification-semver>
# 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'