mirror of
https://github.com/ppy/osu.git
synced 2024-12-13 08:32:57 +08:00
Uninstall associations when uninstalling from squirrel
This commit is contained in:
parent
2bac09ee00
commit
cdcf5bddda
@ -12,6 +12,7 @@ using osu.Framework.Platform;
|
||||
using osu.Game;
|
||||
using osu.Game.IPC;
|
||||
using osu.Game.Tournament;
|
||||
using osu.Game.Updater;
|
||||
using SDL2;
|
||||
using Squirrel;
|
||||
|
||||
@ -180,6 +181,7 @@ namespace osu.Desktop
|
||||
{
|
||||
tools.RemoveShortcutForThisExe();
|
||||
tools.RemoveUninstallerRegistryEntry();
|
||||
WindowsAssociationManager.UninstallAssociations(@"osu");
|
||||
}, onEveryRun: (_, _, _) =>
|
||||
{
|
||||
// While setting the `ProcessAppUserModelId` fixes duplicate icons/shortcuts on the taskbar, it currently
|
||||
|
@ -100,7 +100,7 @@ namespace osu.Game.Tests.Visual.Updater
|
||||
[Test]
|
||||
public void TestNotifyShell()
|
||||
{
|
||||
AddStep("notify shell of changes", () => associationManager.NotifyShellUpdate());
|
||||
AddStep("notify shell of changes", WindowsAssociationManager.NotifyShellUpdate);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -78,7 +78,7 @@ namespace osu.Game.Updater
|
||||
localisationParameters.ValueChanged += _ => updateDescriptions();
|
||||
}
|
||||
|
||||
internal void InstallAssociations()
|
||||
public void InstallAssociations()
|
||||
{
|
||||
try
|
||||
{
|
||||
@ -132,7 +132,9 @@ namespace osu.Game.Updater
|
||||
}
|
||||
}
|
||||
|
||||
internal void UninstallAssociations()
|
||||
public void UninstallAssociations() => UninstallAssociations(programIdPrefix);
|
||||
|
||||
public static void UninstallAssociations(string programIdPrefix)
|
||||
{
|
||||
try
|
||||
{
|
||||
@ -154,7 +156,7 @@ namespace osu.Game.Updater
|
||||
}
|
||||
}
|
||||
|
||||
internal void NotifyShellUpdate() => SHChangeNotify(EventId.SHCNE_ASSOCCHANGED, Flags.SHCNF_IDLIST, IntPtr.Zero, IntPtr.Zero);
|
||||
internal static void NotifyShellUpdate() => SHChangeNotify(EventId.SHCNE_ASSOCCHANGED, Flags.SHCNF_IDLIST, IntPtr.Zero, IntPtr.Zero);
|
||||
|
||||
#region Native interop
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user