diff --git a/mainwindow.cpp b/mainwindow.cpp index 6c0045e8..df4aa118 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -530,7 +530,12 @@ void MainWindow::replyFinished(QNetworkReply * reply) if (prefdialog) prefdialog->RefreshLastChecked(); if (a>PREF["VersionString"].toString()) { if (QMessageBox::question(this,"New Version","A newer version of SleepyHead is available, v"+a+".\nWould you like to update?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes) { - QMessageBox::information(this,"Laziness Warning","I'd love to do it for you automatically, but it's not implemented yet.. :)",QMessageBox::Ok); + QString fileurl="http://sourceforge.net/projects/sleepyhead/files/"; + QString msg="

Sorry, I haven't implemented the auto-update yet

"; + msg+="Click Here for a link to the latest version"; + msg+=""; + + QMessageBox::information(this,"Laziness Warning",msg,QMessageBox::Ok); } } else { mainwin->Notify("Checked for Updates: SleepyHead is already up to date!");