From 5646d2df11c8487f159aadc2f48d00ab653ab22f Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 13 Jul 2026 17:32:26 +0200 Subject: [PATCH] Release 0.7.1 Fix a crash when navigating the Messages menu with voice prompts enabled: menu strings added after the voice-prompt pack was built read past the end of the table of contents and now play silence instead. Bump version to 0.7.1. Co-Authored-By: Claude Fable 5 --- CHANGELOG.md | 4 ++++ MDUV380_firmware/application/include/freetrxVersion.h | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00513db..5e57540 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ single running list until the first versioned release. ## Unreleased +_Nothing yet._ + +## 0.7.1 + - **Fix:** the radio **crashed** when navigating the Messages menu with voice prompts enabled. Menu strings added after the voice-prompt pack was built map to a table-of-contents slot that doesn't exist; the player read past the end diff --git a/MDUV380_firmware/application/include/freetrxVersion.h b/MDUV380_firmware/application/include/freetrxVersion.h index 4f2de34..c866b86 100644 --- a/MDUV380_firmware/application/include/freetrxVersion.h +++ b/MDUV380_firmware/application/include/freetrxVersion.h @@ -6,8 +6,8 @@ #define FREETRX_VERSION_MAJOR 0 #define FREETRX_VERSION_MINOR 7 -#define FREETRX_VERSION_PATCH 0 +#define FREETRX_VERSION_PATCH 1 -#define FREETRX_VERSION "0.7.0" +#define FREETRX_VERSION "0.7.1" #endif // _FREETRX_VERSION_H_