Fix updater message: Download link instead of "use the system's update tool"

Provide a download link to the new version instead of the confusing message that
users should use their "system's update tool to install it".

Signed-off-by: Michael Schuster <michael@schuster.ms>
This commit is contained in:
Michael Schuster 2019-11-04 19:19:59 +01:00
parent 73af9b1cac
commit 6421397083
No known key found for this signature in database
GPG Key ID: 00819E3BF4177B28

View File

@ -148,7 +148,7 @@ QString OCUpdater::statusString() const
case DownloadTimedOut:
return tr("Could not check for new updates.");
case UpdateOnlyAvailableThroughSystem:
return tr("New %1 version %2 available. Please use the system's update tool to install it.").arg(Theme::instance()->appNameGUI(), updateVersion);
return tr("New %1 version %2 is available. Please click <a href='%3'>here</a> to download the update.").arg(Theme::instance()->appNameGUI(), updateVersion, _updateInfo.web());
case CheckingServer:
return tr("Checking update server...");
case Unknown: