Enable the "RC" warning message for v2.2.0-rc1.

This commit is contained in:
Joe Taylor 2020-05-03 13:56:25 -04:00
parent 67e4c8855a
commit 0e29df1145

View File

@ -966,7 +966,7 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
if(QCoreApplication::applicationVersion().contains("-devel") or if(QCoreApplication::applicationVersion().contains("-devel") or
QCoreApplication::applicationVersion().contains("-rc")) { QCoreApplication::applicationVersion().contains("-rc")) {
// QTimer::singleShot (0, this, SLOT (not_GA_warning_message ())); QTimer::singleShot (0, this, SLOT (not_GA_warning_message ()));
} }
ui->pbBestSP->setVisible(m_mode=="FT4"); ui->pbBestSP->setVisible(m_mode=="FT4");
@ -980,20 +980,14 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
void MainWindow::not_GA_warning_message () void MainWindow::not_GA_warning_message ()
{ {
// MessageBox::critical_message (this, MessageBox::critical_message (this,
// "<b><p align=\"center\">" "This is a pre-release version of WSJT-X 2.1.0 made\n"
// "This is a pre-release version of WSJT-X 2.1.0 made " "available for testing purposes. By design it will\n"
// "available for testing purposes. By design it will " "be nonfunctional after 0000 UTC on June 10, 2020.");
// "be nonfunctional during the 2019 ARRL June VHF contest " auto now = QDateTime::currentDateTimeUtc ();
// "(June 8-10) and Field Day (June 22-23) weekends. It " if (now >= QDateTime {{2020, 6, 10}, {0, 0}, Qt::UTC}) {
// "will be permanently nonfunctional after July 21, 2019."); Q_EMIT finished ();
// auto now = QDateTime::currentDateTimeUtc (); }
// if ((QDateTime {{2019, 6, 8}, {18, 0}, Qt::UTC} <= now
// && now < QDateTime {{2019, 6, 10}, {3, 0}, Qt::UTC})
// || now >= QDateTime {{2019, 7, 21}, {0, 0}, Qt::UTC})
// {
// Q_EMIT finished ();
// }
} }
void MainWindow::initialize_fonts () void MainWindow::initialize_fonts ()