From 6f32e5106a10b97e0a40c3edff8224eb9984536e Mon Sep 17 00:00:00 2001 From: Collecting Date: Thu, 11 Dec 2025 05:06:36 +0000 Subject: [PATCH] feat: Information of Update Channel A lot of users have been confused when being notified of releases. Some users have their defaulted Update Channel to Stable. This is meant to showcase and inform that there's an option for releases. Signed-off-by: Collecting --- src/citron/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citron/main.cpp b/src/citron/main.cpp index 63ec8d818..b0692c9b7 100644 --- a/src/citron/main.cpp +++ b/src/citron/main.cpp @@ -6253,7 +6253,7 @@ void GMainWindow::CheckForUpdatesAutomatically() { msg_box.setWindowTitle(tr("Update Available")); msg_box.setText(tr("A new version of Citron is available: %1") .arg(QString::fromStdString(update_info.version))); - msg_box.setInformativeText(tr("Click Help → Check for Updates to download it.")); + msg_box.setInformativeText(tr("Click Help → Check for Updates to download it. You can also choose whether you get notified of Stable or Nightly releases. Head over to Emulation -> Configure & go to the UI Tab and choose your selection within the Update Channel.")); msg_box.setIcon(QMessageBox::Information); msg_box.setStandardButtons(QMessageBox::Ok);