From f987208a3907e48894de4c9097cd39237777f834 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Mon, 17 May 2021 15:14:56 +0100 Subject: [PATCH] Release 5.0.1: appversion and changelog --- ChangeLog.md | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ config.py | 2 +- 2 files changed, 50 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index daef2530..ba27910d 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -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 === diff --git a/config.py b/config.py index f92eea4c..3476095d 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.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'