2019-01-24 16:43:03 +08: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 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2020-06-08 06:39:33 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2019-02-28 12:09:38 +08:00
|
|
|
|
using osu.Framework;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2022-01-03 16:31:12 +08:00
|
|
|
|
using osu.Framework.Extensions;
|
2020-10-06 12:00:02 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2021-07-15 11:50:34 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2016-11-03 10:22:34 +08:00
|
|
|
|
using osu.Framework.Platform;
|
2020-05-14 16:40:43 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2016-12-02 06:28:20 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-08-11 15:25:08 +08:00
|
|
|
|
using osu.Game.Localisation;
|
2020-10-06 12:00:02 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2020-05-14 16:40:43 +08:00
|
|
|
|
using osu.Game.Overlays.Settings.Sections.Maintenance;
|
2020-05-07 14:07:22 +08:00
|
|
|
|
using osu.Game.Updater;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-05-15 09:55:29 +08:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.General
|
2016-11-12 18:44:16 +08:00
|
|
|
|
{
|
2017-05-15 09:55:29 +08:00
|
|
|
|
public partial class UpdateSettings : SettingsSubsection
|
2016-11-12 18:44:16 +08:00
|
|
|
|
{
|
2020-05-08 06:35:27 +08: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 17:19:50 +08:00
|
|
|
|
|
2020-06-12 17:36:36 +08:00
|
|
|
|
private SettingsButton checkForUpdatesButton;
|
|
|
|
|
|
2020-10-06 20:28:59 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2022-04-18 18:59:57 +08:00
|
|
|
|
private INotificationOverlay notifications { get; set; }
|
2020-10-06 12:00:02 +08:00
|
|
|
|
|
2020-05-14 20:10:04 +08:00
|
|
|
|
[BackgroundDependencyLoader(true)]
|
2020-05-14 16:40:43 +08:00
|
|
|
|
private void load(Storage storage, OsuConfigManager config, OsuGame game)
|
2016-11-04 10:43:00 +08:00
|
|
|
|
{
|
2019-02-28 12:09:38 +08:00
|
|
|
|
Add(new SettingsEnumDropdown<ReleaseStream>
|
2016-11-09 07:13:20 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
LabelText = GeneralSettingsStrings.ReleaseStream,
|
2020-10-06 16:18:41 +08:00
|
|
|
|
Current = config.GetBindable<ReleaseStream>(OsuSetting.ReleaseStream),
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
|
|
|
|
|
2020-10-06 19:57:39 +08:00
|
|
|
|
if (updateManager?.CanCheckForUpdate == true)
|
2020-05-07 14:07:22 +08:00
|
|
|
|
{
|
2020-06-15 21:19:11 +08:00
|
|
|
|
Add(checkForUpdatesButton = new SettingsButton
|
2020-06-12 17:36:36 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.CheckUpdate,
|
2020-06-15 21:19:11 +08:00
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = false;
|
2022-01-03 16:31:12 +08:00
|
|
|
|
Task.Run(updateManager.CheckForUpdateAsync).ContinueWith(task => Schedule(() =>
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2022-01-06 21:54:43 +08:00
|
|
|
|
if (!task.GetResultSafely())
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2020-10-06 20:28:59 +08:00
|
|
|
|
notifications?.Post(new SimpleNotification
|
2020-10-06 12:00:02 +08:00
|
|
|
|
{
|
2022-09-16 17:31:02 +08:00
|
|
|
|
Text = GeneralSettingsStrings.RunningLatestRelease(game.Version),
|
2020-10-06 12:00:02 +08:00
|
|
|
|
Icon = FontAwesome.Solid.CheckCircle,
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
checkForUpdatesButton.Enabled.Value = true;
|
|
|
|
|
}));
|
2020-06-15 21:19:11 +08:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-05-07 14:07:22 +08:00
|
|
|
|
|
2019-02-28 12:09:38 +08:00
|
|
|
|
if (RuntimeInfo.IsDesktop)
|
|
|
|
|
{
|
|
|
|
|
Add(new SettingsButton
|
2016-11-09 07:13:20 +08:00
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.OpenOsuFolder,
|
2022-03-24 22:40:46 +08:00
|
|
|
|
Action = () => storage.PresentExternally(),
|
2019-02-28 12:09:38 +08:00
|
|
|
|
});
|
2020-05-14 16:40:43 +08:00
|
|
|
|
|
|
|
|
|
Add(new SettingsButton
|
|
|
|
|
{
|
2021-08-11 15:25:08 +08:00
|
|
|
|
Text = GeneralSettingsStrings.ChangeFolderLocation,
|
2020-05-14 20:10:04 +08:00
|
|
|
|
Action = () => game?.PerformFromScreen(menu => menu.Push(new MigrationSelectScreen()))
|
2020-05-14 16:40:43 +08:00
|
|
|
|
});
|
2019-02-28 12:09:38 +08:00
|
|
|
|
}
|
2016-11-12 18:44:16 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|