Skip to content

Commit c0071bb

Browse files
committed
[RELEASE] 5.12.0-beta1
1 parent 6bc29f0 commit c0071bb

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed

ChangeLog.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,39 @@ This is the master changelog for Elite Dangerous Market Connector. Entries are
66
in the source (not distributed with the Windows installer) for the
77
currently used version.
88
---
9+
Release 5.12.0-beta1
10+
===
11+
12+
This public beta is designed to allow for volunteer testing of coming updates and allow plugin
13+
developers to prepare for upcoming code changes. **BUGS ARE EXPECTED** in this build, as under-the-hood
14+
inline code changes have been made in this update which may have unintended consequences.
15+
16+
**Changes and Enhancements**
17+
* Added the ability to export a ship's loadout to Inara SLEF notation
18+
* Added the ability for EDMC to restart itself if required after settings changes
19+
* Added the ability to change the custom plugins directory to allow for multiple plugin profiles
20+
* Added Basic Type 8 Support
21+
* Updated the default logging directory from $TEMPDIR or %TEMP% and to the current app data directory
22+
* Updated a number of direct win32API calls to use proper prototyped library calls
23+
* Updated a number of translations
24+
* Updated a number of dependencies
25+
* Updated included and bundled licenses to comply with dependency requirements
26+
* Updated the game_running check to be more efficient on Windows to reduce program hangs
27+
* Minor logic enhancements
28+
* Retired most usages of os.path in favor of the preferred PathLib
29+
30+
**Bug Fixes**
31+
* Fixed a bug that would result in Horizons and Odyssey flags not being passed to EDDN
32+
33+
**Plugin Developers**
34+
* nb.Entry is deprecated, and is slated for removal in 6.0 or later. Please migrate to nb.EntryMenu
35+
* nb.ColoredButton is deprecated, and is slated for removal in 6.0 or later. Please migrate to tk.Button
36+
* 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
37+
* `Translations` as the translate system singleton is deprecated, and is slated for removal in 6.0 or later. Please migrate to the `translations` singleton
38+
* `help_open_log_folder()` is deprecated, and is slated for removal in 6.0 or later. Please migrate to open_folder()
39+
* `update_feed` is deprecated, and is slated for removal in 6.0 or later. Please migrate to `get_update_feed()`.
40+
41+
942
Release 5.11.3
1043
===
1144

config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# <https://semver.org/#semantic-versioning-specification-semver>
5353
# Major.Minor.Patch(-prerelease)(+buildmetadata)
5454
# NB: Do *not* import this, use the functions appversion() and appversion_nobuild()
55-
_static_appversion = '5.11.3'
55+
_static_appversion = '5.12.0-beta1'
5656
_cached_version: semantic_version.Version | None = None
5757
copyright = '© 2015-2019 Jonathan Harris, 2020-2024 EDCD'
5858

0 commit comments

Comments
 (0)