diff --git a/ChangeLog.md b/ChangeLog.md index d39d0af9..4b8a0e31 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,22 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first). --- +Release 4.1.1 +=== + +This release should get the program running again for everyone who had issues +with 4.1.0. + +* Catch any exception when we try to set UTF-8 encoding. We'll log where this + fails but the program should continue running. + +* The use of the tkinter.filedialog code is now contingent on a UTF-8 + encoding being set. If it isn't then we'll revert to the previous + non-tkinter file dialog code. The older OSes that can't handle a UTF-8 + encoding will get that slightly worse file dialog (that was previously + always the case before 4.1.0). Everyone else gets to enjoy the more up to + date file dialog with all the shortcuts etc. + Release 4.1.0 === diff --git a/config.py b/config.py index 97584a2e..0d859c4c 100644 --- a/config.py +++ b/config.py @@ -13,7 +13,7 @@ appcmdname = 'EDMC' # appversion **MUST** follow Semantic Versioning rules: # # Major.Minor.Patch(-prerelease)(+buildmetadata) -appversion = '4.1.0' #-rc1+a872b5f' +appversion = '4.1.1' #-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'