1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-22 20:00:29 +03:00

Release 5.0.1: appversion and changelog

This commit is contained in:
Athanasius 2021-05-17 15:14:56 +01:00
parent d850fa050e
commit f987208a39
2 changed files with 50 additions and 1 deletions

View File

@ -1,6 +1,55 @@
This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first).
---
Release 5.0.1
===
The main reason for this release is to add an 'odyssey' boolean flag to all
EDDN messages for the benefit of listeners, e.g. eddb.io, inara.cz,
edsm.net, spansh.co.uk, etc. **Please do update so as to make their lives
easier once Odyssey has launched!**
* Translations have been updated again. Thanks to all the contributors.
See [wiki:Translations](https://github.com/EDCD/EDMarketConnector/wiki/Translations)
and [Translations welcome](https://github.com/EDCD/EDMarketConnector/issues/24)
for links and discussion if you want to help.
* Changed the error message "`Error: Frontier server is down`" to
"`Error: Frontier CAPI didn't respond`" to make it clear this pertains to
the CAPI and not the game servers.
Plugin Developers
---
* Please make the effort to subscribe to GitHub notifications of new
EDMarketConnector releases:
1. Login to [GitHub](https://github.com).
2. Navigate to [EDMarketConnector](https://github.com/EDCD/EDMarketConnector).
3. Click the 'Watch' (or 'Unwatch' if you previously set up any watches on
us). It's currently (2021-05-13) the left-most button of 3 near the
top-right of the page.
4. Click 'Custom'.
5. Ensure 'Releases' is selected.
6. Click 'Apply'.
This way you'll be aware, as early as possible, of any -beta and -rc
changelogs and changes that might affect your work.
* `state` passed to `journal_entry()` has a new member `Odyssey` (note the
capital `O`) which is a boolean indicating if the `LoadGame` event both has
an `Odyssey` key, and if so, what the value was. Defaults to `False`.
* PLUGINS.md updated to document the `state['Horizons']` flag that has been
present in it since version 3.0 of the game.
* The `stations.p` and `systems.p` files that were deprecated in 5.0.0 have
now also been removed in git. As this release is made they will no
longer be in the `develop`, `main` or `stable` branches. If you truly
need to find a copy look at the `Release/4.2.7` tag, but do read the 5.0.0
changelog for why we stopped using them and what you can change to also
not need them.
Release 5.0.0
===

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.0.0'
_static_appversion = '5.0.1'
copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'
update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml'