Skip to content

Commit

Permalink
Updater: fix self-update URL
Browse files Browse the repository at this point in the history
  • Loading branch information
dwhinham committed Mar 18, 2023
1 parent e47d202 commit 271c41d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 5 additions & 2 deletions scripts/mt32pi_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -85,8 +88,8 @@

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"
Expand Down

0 comments on commit 271c41d

Please sign in to comment.