From 087f88146d9d0ace7a51136d16ffd1553e871cdc Mon Sep 17 00:00:00 2001 From: RickyRister <42636155+RickyRister@users.noreply.github.com> Date: Fri, 14 Mar 2025 22:19:07 -0700 Subject: [PATCH] Make internal updater failure message more user-friendly (#5718) --- cockatrice/src/dialogs/dlg_update.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cockatrice/src/dialogs/dlg_update.cpp b/cockatrice/src/dialogs/dlg_update.cpp index 3e3ec2039..ae60fc0b7 100644 --- a/cockatrice/src/dialogs/dlg_update.cpp +++ b/cockatrice/src/dialogs/dlg_update.cpp @@ -165,10 +165,12 @@ void DlgUpdate::finishedUpdateCheck(bool needToUpdate, bool isCompatible, Releas QString(": %1
").arg(release->getName()) + "" + tr("Released") + QString(": %1 (").arg(publishDate, release->getDescriptionUrl()) + tr("Changelog") + ")

" + - tr("Unfortunately there are no download packages available for your operating system. \nYou may have " - "to build from source yourself.") + + tr("Unfortunately, the automatic updater failed to find a compatible download. \nYou may have to " + "manually download the new version.") + "

" + - tr("Please check the download page manually and visit the wiki for instructions on compiling.")); + tr("Please check the releases page on our Github and download the build for your " + "system.") + .arg(release->getDescriptionUrl())); } }