From ca04a2f3bbdb9d886234b85d2708ca8afd7de6eb Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 1 Sep 2022 09:54:01 +0200 Subject: [PATCH 1/2] A bit more time to test RC4. --- widgets/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index fa1874dbe..56f46ecc2 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1061,9 +1061,9 @@ void MainWindow::not_GA_warning_message () MessageBox::critical_message (this, "This is a pre-release version of WSJT-X 2.6.0 made\n" "available for testing purposes. By design it will\n" - "be nonfunctional after Nov 30, 2022."); + "be nonfunctional after Dec 31, 2022."); auto now = QDateTime::currentDateTimeUtc (); - if (now >= QDateTime {{2022, 11, 30}, {23, 59, 59, 999}, Qt::UTC}) { + if (now >= QDateTime {{2022, 12, 31}, {23, 59, 59, 999}, Qt::UTC}) { Q_EMIT finished (); } } From 50e3960ee4f62652b8e04a40b485189df5ba188d Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Thu, 1 Sep 2022 12:00:30 +0200 Subject: [PATCH 2/2] Ensure that Monitor is OFF at startup when in Echo mode. --- widgets/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 56f46ecc2..0bc08dad5 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -7690,7 +7690,7 @@ void MainWindow::handle_transceiver_update (Transceiver::TransceiverState const& if (old_state.online () == false && s.online () == true) { // initializing - on_monitorButton_clicked (!m_config.monitor_off_at_startup ()); + on_monitorButton_clicked (!(m_config.monitor_off_at_startup() or m_mode=="Echo")); } if (s.frequency () != old_state.frequency () || s.split () != m_splitMode) {