1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-04 16:12:58 +08:00

Show an ongoing operation when checking for updates

Addresses https://github.com/ppy/osu/discussions/30950.
This commit is contained in:
Dean Herbert 2024-12-03 13:43:20 +09:00
parent ce4aac4184
commit 2ceb3f6f85
No known key found for this signature in database
2 changed files with 13 additions and 0 deletions

View File

@ -44,6 +44,11 @@ namespace osu.Game.Localisation
/// </summary>
public static LocalisableString CheckUpdate => new TranslatableString(getKey(@"check_update"), @"Check for updates");
/// <summary>
/// "Checking for updates"
/// </summary>
public static LocalisableString CheckingForUpdates => new TranslatableString(getKey(@"checking_for_updates"), @"Checking for updates");
/// <summary>
/// "Open osu! folder"
/// </summary>

View File

@ -53,8 +53,16 @@ namespace osu.Game.Overlays.Settings.Sections.General
Action = () =>
{
checkForUpdatesButton.Enabled.Value = false;
var checkingNotification = new ProgressNotification { Text = GeneralSettingsStrings.CheckingForUpdates, };
notifications?.Post(checkingNotification);
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(task => Schedule(() =>
{
// This sequence allows the notification to be immediately dismissed.
checkingNotification.State = ProgressNotificationState.Cancelled;
checkingNotification.Close(false);
if (!task.GetResultSafely())
{
notifications?.Post(new SimpleNotification