1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-21 11:27:38 +03:00

Merge branch 'release-5.1.3-beta1' into release-5.1.3

This commit is contained in:
Athanasius 2021-08-08 14:31:17 +01:00
commit 98d812fa79
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
2 changed files with 32 additions and 1 deletions

@ -17,6 +17,37 @@ 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
===
* Attempt to flush any pending EDSM API data when a Journal `Shutdown` or
`Fileheader` event is seen. After this the data is dropped. This ensures
that, if the user next logs in to a different commander, the data isn't then
sent to the wrong EDSM account.
* Ensure a previous Journal file is fully read/drained before starting
processing of a new one. In particular this ensures properly seeing the end
of a continued Journal file when opening the continuation file.
* 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
*to the plain log file* will once more respect the user-set Log Level, as in
the Configuration tab of Settings.
As its name implies, the [debug log file](https://github.com/EDCD/EDMarketConnector/wiki/Troubleshooting#debug-log-files)
will always contain at least DEBUG level logging, or TRACE if forced.
(Plugin) Developers
---
* New EDMarketConnector option `--trace-on ...` to control if certain TRACE
level logging is used or not. This helps keep the noise down whilst being
able to have users activate choice bits of logging to help track down bugs.
See [Contributing.md](Contributing.md#use-the-appropriate-logging-level) for
details.
Release 5.1.2
===

@ -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-beta0'
_static_appversion = '5.1.3-beta1'
_cached_version: Optional[semantic_version.Version] = None
copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'