mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-24 10:22:26 -04:00
Correct the -rc1 timeout date.
This commit is contained in:
parent
a8d708af67
commit
1b678506f4
@ -919,7 +919,6 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
ui->cbMenus->setChecked(false);
|
ui->cbMenus->setChecked(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
// QFile f("c:/tmp/lotw-user-activity.csv");
|
|
||||||
QFile f{m_config.data_dir().absoluteFilePath ("lotw-user-activity.csv")};
|
QFile f{m_config.data_dir().absoluteFilePath ("lotw-user-activity.csv")};
|
||||||
if(f.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
if(f.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
||||||
QTextStream s(&f);
|
QTextStream s(&f);
|
||||||
@ -952,14 +951,14 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple,
|
|||||||
void MainWindow::not_GA_warning_message ()
|
void MainWindow::not_GA_warning_message ()
|
||||||
{
|
{
|
||||||
QDateTime now=QDateTime::currentDateTime();
|
QDateTime now=QDateTime::currentDateTime();
|
||||||
QDateTime timeout=QDateTime(QDate(2018,10,1));
|
QDateTime timeout=QDateTime(QDate(2018,11,1));
|
||||||
|
|
||||||
MessageBox::critical_message (this,
|
MessageBox::critical_message (this,
|
||||||
"This version of WSJT-X is a beta-level Release Candidate.\n\n"
|
"This version of WSJT-X is a beta-level Release Candidate.\n\n"
|
||||||
"On-the-air use carries an obligation to report problems\n"
|
"On-the-air use carries an obligation to report problems\n"
|
||||||
"to the WSJT Development group and to upgrade to a GA\n"
|
"to the WSJT Development group and to upgrade to a GA\n"
|
||||||
"(General Availability) release when it becomes available.\n\n"
|
"(General Availability) release when it becomes available.\n\n"
|
||||||
"This version cannot be used after October 1, 2018\n\n");
|
"This version cannot be used after November 1, 2018\n\n");
|
||||||
|
|
||||||
if(now.daysTo(timeout) < 0) Q_EMIT finished();
|
if(now.daysTo(timeout) < 0) Q_EMIT finished();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user