Skip to content

Commit 809b3b0

Browse files
committed
Added winget to unsuported manager
1 parent 63acc00 commit 809b3b0

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

src/UniGetUI/Pages/SettingsPages/GeneralPages/Updates.xaml.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ namespace UniGetUI.Pages.SettingsPages.GeneralPages
1919
public sealed partial class Updates : Page, ISettingsPage
2020
{
2121
private static readonly HashSet<string> _managersWithoutUpdateDate =
22-
new(StringComparer.OrdinalIgnoreCase) { "Homebrew", "Scoop", "vcpkg" };
22+
new(StringComparer.OrdinalIgnoreCase) { "Homebrew", "Scoop", "vcpkg", "WinGet" };
2323

2424
public Updates()
2525
{
@@ -144,6 +144,7 @@ private UIElement BuildReleaseDateCompatTable()
144144
{
145145
Orientation = Orientation.Horizontal,
146146
HorizontalAlignment = HorizontalAlignment.Center,
147+
Margin = new Thickness(0, 16, 0, 0),
147148
};
148149
centerPanel.Children.Add(table);
149150

src/UniGetUI/Pages/SettingsPages/ManagersPages/PackageManager.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace UniGetUI.Pages.SettingsPages.GeneralPages
3535
public sealed partial class PackageManagerPage : Page, ISettingsPage
3636
{
3737
private static readonly HashSet<string> _managersWithoutUpdateDate =
38-
new(StringComparer.OrdinalIgnoreCase) { "Homebrew", "Scoop", "vcpkg" };
38+
new(StringComparer.OrdinalIgnoreCase) { "Homebrew", "Scoop", "vcpkg", "WinGet" };
3939

4040
IPackageManager? Manager;
4141
public event EventHandler? RestartRequired;

0 commit comments

Comments
 (0)