mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Better Update message
This commit is contained in:
parent
7d6947e93b
commit
12e9b810f1
@ -530,7 +530,12 @@ void MainWindow::replyFinished(QNetworkReply * reply)
|
|||||||
if (prefdialog) prefdialog->RefreshLastChecked();
|
if (prefdialog) prefdialog->RefreshLastChecked();
|
||||||
if (a>PREF["VersionString"].toString()) {
|
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) {
|
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="<html><p>Sorry, I haven't implemented the auto-update yet</p>";
|
||||||
|
msg+="<a href='"+fileurl+"'>Click Here</a> for a link to the latest version";
|
||||||
|
msg+="</html>";
|
||||||
|
|
||||||
|
QMessageBox::information(this,"Laziness Warning",msg,QMessageBox::Ok);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
mainwin->Notify("Checked for Updates: SleepyHead is already up to date!");
|
mainwin->Notify("Checked for Updates: SleepyHead is already up to date!");
|
||||||
|
Loading…
Reference in New Issue
Block a user