Skip to content

Commit 44a2af8

Browse files
committed
Undo changes that could potentially be behind the crashes on 3.3.4
1 parent a9ae616 commit 44a2af8

File tree

6 files changed

+1
-9
lines changed

6 files changed

+1
-9
lines changed

src/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
66
<!-- IF BUILD FAILS DUE TO MISSING Microsoft.Management.Deployment NAMESPACE,
77
TOGGLE THE LAST NUMBER OF THE LINE BELOW 1 UNIT UP OR DOWN, AND REBUILD-->
8-
<WindowsSdkPackageVersion>10.0.26100.57</WindowsSdkPackageVersion>
8+
<WindowsSdkPackageVersion>10.0.26100.56</WindowsSdkPackageVersion>
99

1010
<SdkVersion>8.0.407</SdkVersion>
1111
<Authors>Martí Climent and the contributors</Authors>

src/UniGetUI.Core.Data/Licenses.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ public static class LicenseData
1212
{"Windows App Sdk", "MIT"},
1313
{"PhotoSauce.MagicScaler", "MIT"},
1414
{"YamlDotNet", "MIT"},
15-
{"WinUIEx", "MIT"},
1615
{"InnoDependencyInstaller", "CPOL 1.02" },
1716

1817
// Package managers and related
@@ -46,7 +45,6 @@ public static class LicenseData
4645
{"Windows App Sdk", new Uri("https://github.com/microsoft/WindowsAppSDK/blob/main/LICENSE")},
4746
{"PhotoSauce.MagicScaler", new Uri("https://github.com/saucecontrol/PhotoSauce/blob/master/license")},
4847
{"YamlDotNet", new Uri("https://github.com/aaubry/YamlDotNet/blob/master/LICENSE.txt") },
49-
{"WinUIEx", new Uri("https://github.com/dotMorten/WinUIEx/blob/main/LICENSE") },
5048
{"InnoDependencyInstaller", new Uri("https://github.com/DomGries/InnoDependencyInstaller/blob/master/LICENSE.md") },
5149

5250
// Package managers and related
@@ -80,7 +78,6 @@ public static class LicenseData
8078
{"Windows App Sdk", new Uri("https://github.com/microsoft/WindowsAppSDK/")},
8179
{"PhotoSauce.MagicScaler", new Uri("https://github.com/saucecontrol/PhotoSauce/")},
8280
{"YamlDotNet", new Uri("https://github.com/aaubry/YamlDotNet/") },
83-
{"WinUIEx", new Uri("https://github.com/dotMorten/WinUIEx/") },
8481
{"InnoDependencyInstaller", new Uri("https://github.com/DomGries/InnoDependencyInstaller")},
8582

8683
// Package managers and related

src/UniGetUI.PackageEngine.PackageLoader/AbstractPackageLoader.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ public virtual async Task ReloadPackages()
201201
{
202202
Logger.Error(ex);
203203
IsLoading = false;
204-
throw;
205204
}
206205
}
207206

src/UniGetUI.PackageEngine.PackageLoader/InstalledPackagesLoader.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ public async Task ReloadPackagesSilently()
109109
{
110110
Logger.Error(ex);
111111
IsLoading = false;
112-
throw;
113112
}
114113
}
115114
}

src/UniGetUI/MainWindow.xaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
66
xmlns:animations="using:CommunityToolkit.WinUI.Animations"
77
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
8-
xmlns:local="using:UniGetUI"
98
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
109
xmlns:services="using:UniGetUI.Services"
1110
xmlns:widgets="using:UniGetUI.Interface.Widgets"
12-
xmlns:winex="using:WinUIEx"
1311
Title="UniGetUI"
1412
mc:Ignorable="d">
1513

src/UniGetUI/MainWindow.xaml.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
using UniGetUI.Interface.Enums;
2424
using UniGetUI.PackageEngine.PackageClasses;
2525
using UniGetUI.Pages.DialogPages;
26-
// using TitleBar = WinUIEx.TitleBar;
2726
using WindowExtensions = H.NotifyIcon.WindowExtensions;
2827
using System.Diagnostics;
2928
using Windows.UI.Text.Core;

0 commit comments

Comments
 (0)