From 6421397083ea0ec947dcc59cd1b8e9f4547cf9ce Mon Sep 17 00:00:00 2001 From: Michael Schuster Date: Mon, 4 Nov 2019 19:19:59 +0100 Subject: [PATCH] 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 --- src/gui/updater/ocupdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp index c9df44a7c0..7db3e6ed0b 100644 --- a/src/gui/updater/ocupdater.cpp +++ b/src/gui/updater/ocupdater.cpp @@ -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 here to download the update.").arg(Theme::instance()->appNameGUI(), updateVersion, _updateInfo.web()); case CheckingServer: return tr("Checking update server..."); case Unknown: