From d4a5ea60e6355325e520d590e99d8754bf30b9a8 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 4 Mar 2024 10:00:03 +0100 Subject: [PATCH] Preparations for RC4. --- widgets/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 22ac1e8f9..d0c4f4dfe 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1110,9 +1110,9 @@ void MainWindow::not_GA_warning_message () MessageBox::critical_message (this, "This is a pre-release version of WSJT-X " + version (false) + " made\n" "available for testing purposes. By design it will\n" - "be nonfunctional after September 30, 2024."); + "be nonfunctional after October 30, 2024."); auto now = QDateTime::currentDateTimeUtc (); - if (now >= QDateTime {{2024, 9, 30}, {23, 59, 59, 999}, Qt::UTC}) { + if (now >= QDateTime {{2024, 10, 30}, {23, 59, 59, 999}, Qt::UTC}) { Q_EMIT finished (); } }