diff --git a/src/updatecheckdialog.cpp b/src/updatecheckdialog.cpp --- a/src/updatecheckdialog.cpp +++ b/src/updatecheckdialog.cpp @@ -48,8 +48,15 @@ UpdateCheckDialog::UpdateCheckDialog(QWi else { show(); +#ifdef UPDATE_TYPE_PKGMAN + text = QString("There is a new version: %1. " + "Use your package manager to update" + " or click to download.")\ + .arg(newVersion).arg(downloadUrl); +#else text = QString("Found update to version %1. Click to download.")\ .arg(newVersion).arg(downloadUrl); +#endif } lastCheck = QDate::currentDate();