From 52022e507ed883d901b395b3fdbdc869e2ab9999 Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Wed, 17 Jul 2024 12:00:28 +0200 Subject: [PATCH] First steps towards RC6. --- CMakeLists.txt | 2 +- widgets/mainwindow.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5cbb0932a..d7dfbf434 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -71,7 +71,7 @@ message (STATUS "******************************************************") include (set_build_type) # RC 0 or omitted is a development build, GA is a General Availability release build -set_build_type (RC 5) +set_build_type (RC 6) set (wsjtx_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}${BUILD_TYPE_REVISION}") # diff --git a/widgets/mainwindow.cpp b/widgets/mainwindow.cpp index 6ec07e620..d844b5e81 100644 --- a/widgets/mainwindow.cpp +++ b/widgets/mainwindow.cpp @@ -1117,9 +1117,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 October 30, 2024."); + "be nonfunctional after December 31, 2024."); auto now = QDateTime::currentDateTimeUtc (); - if (now >= QDateTime {{2024, 10, 30}, {23, 59, 59, 999}, Qt::UTC}) { + if (now >= QDateTime {{2024, 12, 31}, {23, 59, 59, 999}, Qt::UTC}) { Q_EMIT finished (); } }