Change beta-test expiration date to July 1, 2024.

This commit is contained in:
Joe Taylor 2023-12-11 11:20:44 -05:00
parent c413ea2f14
commit e2ef2c7dbb

View File

@ -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 Jan 15, 2024.");
"be nonfunctional after July 1, 2024.");
auto now = QDateTime::currentDateTimeUtc ();
if (now >= QDateTime {{2024, 01, 15}, {23, 59, 59, 999}, Qt::UTC}) {
if (now >= QDateTime {{2024, 07, 1}, {23, 59, 59, 999}, Qt::UTC}) {
Q_EMIT finished ();
}
}