Updater: fix self-update URL

This commit is contained in:
Dale Whinham
2023-03-18 20:20:30 +00:00
parent e47d202c70
commit 271c41d16b
2 changed files with 6 additions and 2 deletions

View File

@@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Memory corruption/crashing caused by faulty ring buffer dequeue implementation.
- Updater: self-update URL was incorrect after the main git branch was renamed. Please manually re-download `mt32pi_updater.py`.
## [0.13.0] - 2023-02-23

View File

@@ -23,6 +23,9 @@
# -----------------------------------------------------------------------------
# Changelog
# -----------------------------------------------------------------------------
# 0.2.5 - 2023-03-18
# - Fixed self-update URL after renaming main git branch.
#
# 0.2.4 - 2022-06-15
# - Backup and update config.txt, merge avoid_warnings setting.
# - Improved error handling.
@@ -85,8 +88,8 @@ except ImportError:
GITHUB_REPO = "dwhinham/mt32-pi"
GITHUB_API_URL = f"https://api.github.com/repos/{GITHUB_REPO}/releases"
SCRIPT_URL = f"https://github.com/{GITHUB_REPO}/raw/master/scripts/mt32pi_updater.py"
SCRIPT_VERSION = "0.2.4"
SCRIPT_URL = f"https://github.com/{GITHUB_REPO}/raw/main/scripts/mt32pi_updater.py"
SCRIPT_VERSION = "0.2.5"
# Config keys
K_SECTION = "updater"