1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-04 19:40:02 +03:00

[RELEASE] 5.11.1

This commit is contained in:
David Sangrey 2024-06-09 17:26:19 -04:00
parent 55311725bc
commit 5d43388439
No known key found for this signature in database
GPG Key ID: 3AEADBB0186884BC
3 changed files with 8 additions and 7 deletions

View File

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

View File

@ -30,7 +30,6 @@ __all__ = [
'AbstractConfig',
'config',
'get_update_feed',
'update_feed'
]
import abc
@ -53,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.11.1-beta0'
_static_appversion = '5.11.1'
_cached_version: semantic_version.Version | None = None
copyright = '© 2015-2019 Jonathan Harris, 2020-2024 EDCD'

View File

@ -197,7 +197,7 @@ class Updater:
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.