Merge branch 'master' into ms-reporter-cpu-usage

ms-reporter-cpu-usage
Mooneer Salem 2025-06-07 00:48:26 -07:00
commit 5461d40de9
4 changed files with 3 additions and 1 deletions

View File

@ -1099,6 +1099,7 @@ mouseover highlights on Linux). (PR #911)</li>
<li>Fix compiler errors when using wxWidgets 3.0. (PR #914)</li> <li>Fix compiler errors when using wxWidgets 3.0. (PR #914)</li>
<li>Unit tests: Increase sleep time before killing recording to resolve <li>Unit tests: Increase sleep time before killing recording to resolve
macOS test failures. (PR #917)</li> macOS test failures. (PR #917)</li>
<li>Fix typo causing RX radio device to remain open. (PR #918)</li>
</ul></li> </ul></li>
</ol> </ol>
<h2 data-number="18.2" id="v2.0.0-june-2025"><span <h2 data-number="18.2" id="v2.0.0-june-2025"><span

View File

@ -798,6 +798,7 @@ LDPC | Low Density Parity Check Codes - a family of powerful FEC codes
* FreeDV Reporter: Force explicit background color (avoids unwanted mouseover highlights on Linux). (PR #911) * FreeDV Reporter: Force explicit background color (avoids unwanted mouseover highlights on Linux). (PR #911)
* Fix compiler errors when using wxWidgets 3.0. (PR #914) * Fix compiler errors when using wxWidgets 3.0. (PR #914)
* Unit tests: Increase sleep time before killing recording to resolve macOS test failures. (PR #917) * Unit tests: Increase sleep time before killing recording to resolve macOS test failures. (PR #917)
* Fix typo causing RX radio device to remain open. (PR #918)
## V2.0.0 June 2025 ## V2.0.0 June 2025

Binary file not shown.

View File

@ -2500,7 +2500,7 @@ void MainFrame::stopRxStream()
rxOutSoundDevice.reset(); rxOutSoundDevice.reset();
} }
delete m_txThread; delete m_rxThread;
m_rxThread = nullptr; m_rxThread = nullptr;
} }