Skip to content

Commit

Permalink
[RELEASE] 5.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Rixxan committed Jun 9, 2024
1 parent 5531172 commit 5d43388
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 6 additions & 4 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ 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.
---
Pre-Release 5.11.1-beta0
Release 5.11.1
===

This is a release candidate for 5.11.1.

This release fixes a bug regarding FDevID files when running from Source in a non-writable location.
This release fixes a bug regarding FDevID files when running from Source in a non-writable location. Additionally,
Deprecation Warnings are now more visible to aid in plugin development.

**Changes and Enhancements**
* Added a check on Git Pushes to check for updated translation strings for developers
* Enabled deprecation warnings to pass to plugins and logs
* Updated Dependencies
* Replaced infi.systray with drop-in replacement simplesystray

**Bug Fixes**
* Fixed a bug that could result in the program not updating or writing FDevID files when running from source in a location where the running user can't write to
Expand Down
3 changes: 1 addition & 2 deletions config/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
'AbstractConfig',
'config',
'get_update_feed',
'update_feed'
]

import abc
Expand All @@ -53,7 +52,7 @@
# <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.11.1-beta0'
_static_appversion = '5.11.1'
_cached_version: semantic_version.Version | None = None
copyright = '© 2015-2019 Jonathan Harris, 2020-2024 EDCD'

Expand Down
2 changes: 1 addition & 1 deletion update.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def check_for_updates(self) -> None:

def check_appcast(self) -> EDMCVersion | None:
"""
Manually (no Sparkle or WinSparkle) check the update_feed appcast file.
Manually (no Sparkle or WinSparkle) check the get_update_feed() appcast file.
Checks if any listed version is semantically greater than the current
running version.
Expand Down

0 comments on commit 5d43388

Please sign in to comment.