From f26c009bc7109c04dcd668f83d42fc7cbccdfe62 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sun, 14 Jan 2024 23:31:01 -0800 Subject: [PATCH 1/3] Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode. --- src/ongui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ongui.cpp b/src/ongui.cpp index 0271ca407..feff0df75 100644 --- a/src/ongui.cpp +++ b/src/ongui.cpp @@ -876,6 +876,7 @@ void MainFrame::togglePTT(void) { } } g_tx = false; + endingTx = false; // tx-> rx transition, swap to the page we were on for last rx m_auiNbookCtrl->ChangeSelection(wxGetApp().appConfiguration.currentNotebookTab); From ae2e1da2f595d2878a37293ccb1218d2eef45b53 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sun, 14 Jan 2024 23:33:08 -0800 Subject: [PATCH 2/3] Add PR #655 to changelog. --- USER_MANUAL.md | 1 + 1 file changed, 1 insertion(+) diff --git a/USER_MANUAL.md b/USER_MANUAL.md index 4e6db180e..798ef7a45 100644 --- a/USER_MANUAL.md +++ b/USER_MANUAL.md @@ -909,6 +909,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes * Fix issue preventing FreeDV startup on macOS <= 10.13. (PR #652) * On startup, only jiggle height and not width. (PR #653) * Fix issue preventing FreeDV from being linked with older versions of Xcode. (PR #654) + * Fix issue preventing TX audio from resuming after going from TX->RX in full duplex mode. (PR #655) 2. Enhancements: * Allow user to refresh status message even if it hasn't been changed. (PR #632) * Increase priority of status message highlight. (PR #632) From eeb6f03a33b49b1e6da7c88fe1803c9c89fa8e13 Mon Sep 17 00:00:00 2001 From: Mooneer Salem Date: Sun, 14 Jan 2024 23:34:00 -0800 Subject: [PATCH 3/3] Prepare for v1.9.7 release. --- CMakeLists.txt | 2 +- USER_MANUAL.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index cf8ee20d3..3b4933d25 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -48,7 +48,7 @@ endif(APPLE) # Adds a tag to the end of the version string. Leave empty # for official release builds. -set(FREEDV_VERSION_TAG "devel") +set(FREEDV_VERSION_TAG "") # Prevent in-source builds to protect automake/autoconf config. # If an in-source build is attempted, you will still need to clean up a few diff --git a/USER_MANUAL.md b/USER_MANUAL.md index 798ef7a45..d22e31abe 100644 --- a/USER_MANUAL.md +++ b/USER_MANUAL.md @@ -889,7 +889,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes # Release Notes -## V1.9.7 TBD 2024 +## V1.9.7 January 2024 1. Bugfixes: * Use double precision instead of float for loading frequency list. (PR #627)