Bump to v0.14.0. Bump eol.

This commit is contained in:
Jordan Sherer 2019-02-01 12:09:11 -05:00
parent 3ce2ceba34
commit 1a4a06cb23
2 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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;
}
}