From fc3d2f9581a4e73ef182d9984aaabcc69435a36a Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Thu, 13 Sep 2018 09:51:04 -0400 Subject: [PATCH] Fix the -rc1 expiration date. --- mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index d6577032f..d95d4fe1f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -951,14 +951,14 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, void MainWindow::not_GA_warning_message () { QDateTime now=QDateTime::currentDateTime(); - QDateTime timeout=QDateTime(QDate(2018,11,1)); + QDateTime timeout=QDateTime(QDate(2018,10,31)); MessageBox::critical_message (this, "This version of WSJT-X is a beta-level Release Candidate.\n\n" "On-the-air use carries an obligation to report problems\n" "to the WSJT Development group and to upgrade to a GA\n" "(General Availability) release when it becomes available.\n\n" - "This version cannot be used after November 1, 2018\n\n"); + "This version cannot be used after October 31, 2018\n\n"); if(now.daysTo(timeout) < 0) Q_EMIT finished(); }