mirror of
https://github.com/sqlitebrowser/sqlitebrowser.git
synced 2026-01-19 18:40:13 -06:00
updater: show the url we got from the release file
This commit is contained in:
@@ -1334,7 +1334,8 @@ void MainWindow::httpresponse(QNetworkReply *reply)
|
||||
msgBox.setTextFormat(Qt::RichText);
|
||||
msgBox.setWindowTitle(tr("New version available."));
|
||||
msgBox.setText(tr("A new sqlitebrowser version is available (%1.%2.%3).<br/><br/>"
|
||||
"Please download at <a href='https://github.com/sqlitebrowser/sqlitebrowser/releases'>https://github.com/sqlitebrowser/sqlitebrowser/releases</a>.").arg(major).arg(minor).arg(patch));
|
||||
"Please download at <a href='%4'>%4</a>.").arg(major).arg(minor).arg(patch).
|
||||
arg(QString(reply->readLine()).trimmed()));
|
||||
msgBox.exec();
|
||||
|
||||
if(msgBox.clickedButton() == idontcarebutton)
|
||||
|
||||
Reference in New Issue
Block a user