2019-01-24 17:43:03 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2022-06-17 16:37:17 +09:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-06-08 00:39:33 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2019-02-28 13:09:38 +09:00
|
|
|
|
using osu.Framework;
|
2016-11-08 18:13:20 -05:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-01-03 17:31:12 +09:00
|
|
|
|
using osu.Framework.Extensions;
|
2020-10-06 13:00:02 +09:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-07-15 12:50:34 +09:00
|
|
|
|
using osu.Framework.Localisation;
|
2016-11-02 22:22:34 -04:00
|
|
|
|
using osu.Framework.Platform;
|
2020-05-14 17:40:43 +09:00
|
|
|
|
using osu.Framework.Screens;
|
2016-12-01 17:28:20 -05:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 15:25:08 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2020-10-06 13:00:02 +09:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2020-05-14 17:40:43 +09:00
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Maintenance;
|
2020-05-07 08:07:22 +02:00
|
|
|
|
using osu.Game.Updater;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2017-05-15 10:55:29 +09:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.General
|
2016-11-12 19:44:16 +09:00
|
|
|
|
{
|
2017-05-15 10:55:29 +09:00
|
|
|
|
public class UpdateSettings : SettingsSubsection
|
2016-11-12 19:44:16 +09:00
|
|
|
|
{
|
2020-05-08 00:35:27 +02:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
|
|
|
private UpdateManager updateManager { get; set; }
|
|
|
|
|
|
2021-08-11 15:25:08 +08:00
|
|
|
|
protected override LocalisableString Header => GeneralSettingsStrings.UpdateHeader;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2020-06-12 18:36:36 +09:00
|
|
|
|
private SettingsButton checkForUpdatesButton;
|
|
|
|
|
|
2020-10-06 21:28:59 +09:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2022-04-18 19:59:57 +09:00
|
|
|
|
private INotificationOverlay notifications { get; set; }
|
2020-10-06 13:00:02 +09:00
|
|
|
|
|
2020-05-14 21:10:04 +09:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2020-05-14 17:40:43 +09:00
|
|
|
|
private void load(Storage storage, OsuConfigManager config, OsuGame game)
|
2016-11-03 22:43:00 -04:00
|
|
|
|
{
|
2019-02-28 13:09:38 +09:00
|
|
|
|
Add(new SettingsEnumDropdown<ReleaseStream>
|
2016-11-08 18:13:20 -05:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
LabelText = GeneralSettingsStrings.ReleaseStream,
|
2020-10-06 17:18:41 +09:00
|
|
|
|
Current = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
|
2019-02-28 13:09:38 +09:00
|
|
|
|
});
|
|
|
|
|
|
2020-10-06 20:57:39 +09:00
|
|
|
|
if (updateManager?.CanCheckForUpdate == true)
|
2020-05-07 08:07:22 +02:00
|
|
|
|
{
|
2020-06-15 22:19:11 +09:00
|
|
|
|
Add(checkForUpdatesButton = new SettingsButton
|
2020-06-12 18:36:36 +09:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.CheckUpdate,
|
2020-06-15 22:19:11 +09:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = false;
|
2022-01-03 17:31:12 +09:00
|
|
|
|
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(task => Schedule(() =>
|
2020-10-06 13:00:02 +09:00
|
|
|
|
{
|
2022-01-06 22:54:43 +09:00
|
|
|
|
if (!task.GetResultSafely())
|
2020-10-06 13:00:02 +09:00
|
|
|
|
{
|
2020-10-06 21:28:59 +09:00
|
|
|
|
notifications?.Post(new SimpleNotification
|
2020-10-06 13:00:02 +09:00
|
|
|
|
{
|
|
|
|
|
Text = $"You are running the latest release ({game.Version})",
|
|
|
|
|
Icon = FontAwesome.Solid.CheckCircle,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = true;
|
|
|
|
|
}));
|
2020-06-15 22:19:11 +09:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-05-07 08:07:22 +02:00
|
|
|
|
|
2019-02-28 13:09:38 +09:00
|
|
|
|
if (RuntimeInfo.IsDesktop)
|
|
|
|
|
{
|
|
|
|
|
Add(new SettingsButton
|
2016-11-08 18:13:20 -05:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.OpenOsuFolder,
|
2022-03-24 23:40:46 +09:00
|
|
|
|
Action = () => storage.PresentExternally(),
|
2019-02-28 13:09:38 +09:00
|
|
|
|
});
|
2020-05-14 17:40:43 +09:00
|
|
|
|
|
|
|
|
|
Add(new SettingsButton
|
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.ChangeFolderLocation,
|
2020-05-14 21:10:04 +09:00
|
|
|
|
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
|
2020-05-14 17:40:43 +09:00
|
|
|
|
});
|
2019-02-28 13:09:38 +09:00
|
|
|
|
}
|
2016-11-12 19:44:16 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|