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 4e6db180e..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) @@ -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) 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);