1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-05-20 17:11:32 +03:00

[RELEASE] 5.13.1

This commit is contained in:
David Sangrey 2025-05-12 19:07:02 -04:00
parent 473cdd9425
commit faac1291fb
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
2 changed files with 24 additions and 1 deletions

View File

@ -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,

View File

@ -52,7 +52,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.13.0'
_static_appversion = '5.13.1'
_cached_version: semantic_version.Version | None = None
copyright = '© 2015-2019 Jonathan Harris, 2020-2024 EDCD'