diff --git a/Versions.cmake b/Versions.cmake index e4dcd3c..a01dad5 100644 --- a/Versions.cmake +++ b/Versions.cmake @@ -1,6 +1,6 @@ # Version number components set (WSJTX_VERSION_MAJOR 0) -set (WSJTX_VERSION_MINOR 13) -set (WSJTX_VERSION_PATCH 1) +set (WSJTX_VERSION_MINOR 14) +set (WSJTX_VERSION_PATCH 0) set (WSJTX_RC 0) # release candidate number, comment out or zero for development versions set (WSJTX_VERSION_IS_RELEASE 0) # set to 1 for final release build diff --git a/mainwindow.cpp b/mainwindow.cpp index 727d61f..4234746 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1520,12 +1520,12 @@ MainWindow::MainWindow(QDir const& temp_directory, bool multiple, if (!m_valid) throw std::runtime_error {"Fatal initialization exception"}; } -QDate eol(2019, 2, 7); +QDate eol(2019, 2, 21); void MainWindow::checkExpiryWarningMessage() { if(QDateTime::currentDateTimeUtc().date() > eol){ - MessageBox::critical_message (this, QString("This pre-release development build of JS8Call has reached its end-of-live. Please check for an upgrade to the latest version. In the meantime, the software will continue to operate as usual.")); + MessageBox::critical_message (this, QString("This pre-release development build of JS8Call has reached its end-of-life. Please check for an upgrade to the latest version. In the meantime, the software will continue to operate as usual.")); return; } }