From faac1291fb601ed9a215628e5672f1b8eb1a20aa Mon Sep 17 00:00:00 2001 From: David Sangrey Date: Mon, 12 May 2025 19:07:02 -0400 Subject: [PATCH] [RELEASE] 5.13.1 --- ChangeLog.md | 23 +++++++++++++++++++++++ config/__init__.py | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index b690aead..03d5a062 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,29 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are in the source (not distributed with the Windows installer) for the currently used version. --- +Release 5.13.1 +=== +This release fixes a bug with 5.13.0 that could cause the program to fail to launch if a non-English locale +and English language pack were selected on Windows. + +This release also includes information for Cobra Mk V armor and modules, as well as the Human Extraction module. + +**Changes and Enhancements** +* Adds Cobra Mk V information +* Updates Translations + +**Bug Fixes** +Fixes a widely reported bug with 5.13.0 that could cause English-Language non-English locales to crash on start. + +**Plugin Developers** +* nb.Entry is deprecated, and is slated for removal in 6.0 or later. Please migrate to nb.EntryMenu +* nb.ColoredButton is deprecated, and is slated for removal in 6.0 or later. Please migrate to tk.Button +* Calling internal translations with `_()` is deprecated, and is slated for removal in 6.0 or later. Please migrate to importing `translations` and calling `translations.translate` or `translations.tl` directly +* `Translations` as the translate system singleton is deprecated, and is slated for removal in 6.0 or later. Please migrate to the `translations` singleton +* `help_open_log_folder()` is deprecated, and is slated for removal in 6.0 or later. Please migrate to open_folder() +* `update_feed` is deprecated, and is slated for removal in 6.0 or later. Please migrate to `get_update_feed()` + + Release 5.13.0 === This release contains a significant refactoring away from ctypes code for interacting with the Windows API, diff --git a/config/__init__.py b/config/__init__.py index 580e68ec..68153322 100644 --- a/config/__init__.py +++ b/config/__init__.py @@ -52,7 +52,7 @@ appcmdname = 'EDMC' # # Major.Minor.Patch(-prerelease)(+buildmetadata) # NB: Do *not* import this, use the functions appversion() and appversion_nobuild() -_static_appversion = '5.13.0' +_static_appversion = '5.13.1' _cached_version: semantic_version.Version | None = None copyright = '© 2015-2019 Jonathan Harris, 2020-2024 EDCD'