From d06104ec6e969bda6afdd08068cfbb0f89140ae9 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Thu, 23 Jul 2020 15:02:56 +0100 Subject: [PATCH] Release 4.0.3-rc3: ChangeLog and version string --- ChangeLog.md | 33 +++++++++++++++++++++++++++++++++ config.py | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 269a69cb..3de0ba4c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,39 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release Candidate 4.0.3-rc3 +=== + + In addition to changes in [4.0.3-rc1](https://github.com/EDCD/EDMarketConnector/releases/tag/Release%2F4.0.3-rc1) +and [4.0.3-rc2](https://github.com/EDCD/EDMarketConnector/releases/tag/Release%2F4.0.3-rc2): + + * A fix for ships without a player-set name using a single ` ` (space + character) as their name in the UI, instead of the ship model name. + + See [#614 - Ship is not displaying but IS hotlinked](https://github.com/EDCD/EDMarketConnector/issues/614). + + * A fix for some file paths on Linux not understanding `~` as "my home + directory". This should help anyone using Manjaro Linux. + + See [#486 - Some info about running on Manjaro](https://github.com/EDCD/EDMarketConnector/issues/486). + + * A new option to use an alternate method of opening a URL for shipyard links. + It's called 'Use alternate URL method' and is located in the 'File' > + 'Settings' dialogue on the 'Configuration' tab, next to the dropdown used to + choose shipyard provider. If your setup results in coriolis.io or edsy.org + saying they can't load your build then try toggling this on. + + This method writes a small .html file in `%LOCALAPPDATA\EDMarketConnector\ ` + (or other-OS equivalent) and directs your browser to open that. The file + contains a meta refresh redirect to the URL for your build on your chosen + shipyard provider. + + **Please let us know if this doesn't work for you!** + Anti-Virus or Software Firewalls might object to the "open .html file, and + then it redirects" workaround. + + See [#617 - Ship load out link error](https://github.com/EDCD/EDMarketConnector/issues/617). + Release Candidate 4.0.3-rc2 === diff --git a/config.py b/config.py index b2c1c2dc..cd13224b 100644 --- a/config.py +++ b/config.py @@ -12,7 +12,7 @@ appcmdname = 'EDMC' # appversion **MUST** follow Semantic Versioning rules: # # Major.Minor.Patch(-prerelease)(+buildmetadata) -appversion = '4.0.3-rc2' #-rc1+a872b5f' +appversion = '4.0.3-rc3' #-rc1+a872b5f' # For some things we want appversion without (possible) +build metadata appversion_nobuild = str(semantic_version.Version(appversion).truncate('prerelease')) copyright = u'© 2015-2019 Jonathan Harris, 2020 EDCD'