Skip to content

Commit 28a76d6

Browse files
committed
Update
1 parent 0a047fe commit 28a76d6

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

XboxDownload/Services/UpdateService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ public static async Task DownloadIpAsync(FileInfo fi, string keyword = "")
257257

258258
if (!cts.IsCancellationRequested)
259259
{
260-
var responseString = await HttpClientHelper.GetStringContentAsync($"{Project.Replace("https://github.com", "https://testingcf.jsdelivr.net/gh")}/IP/{fi.Name}", token: cts.Token);
260+
var responseString = await HttpClientHelper.GetStringContentAsync($"{Project.Replace("https://github.com", "https://testingcf.jsdelivr.net/gh")}/IP/{fi.Name}", token: CancellationToken.None);
261261
if (responseString.StartsWith(keyword))
262262
{
263263
await SaveToFileAsync(fi, responseString);

XboxDownload/ViewModels/Dialog/LocalProxyDialogViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ private async Task UpdateThirdPartyRulesAsync()
445445

446446
if (!cts.IsCancellationRequested)
447447
{
448-
var responseString = await HttpClientHelper.GetStringContentAsync($"https://testingcf.jsdelivr.net/gh/SpaceTimee/Cealing-Host/Cealing-Host.json", token: cts.Token);
448+
var responseString = await HttpClientHelper.GetStringContentAsync($"https://testingcf.jsdelivr.net/gh/SpaceTimee/Cealing-Host/Cealing-Host.json", token: CancellationToken.None);
449449
if (responseString.StartsWith('['))
450450
{
451451
Rules2Text = responseString;

XboxDownload/XboxDownload.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
</ItemGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="Avalonia" Version="11.3.4" />
27-
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.4" />
28-
<PackageReference Include="Avalonia.Desktop" Version="11.3.4" />
29-
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.4" />
30-
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.4" />
26+
<PackageReference Include="Avalonia" Version="11.3.6" />
27+
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.3.6" />
28+
<PackageReference Include="Avalonia.Desktop" Version="11.3.6" />
29+
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.3.6" />
30+
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.3.6" />
3131
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
32-
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.4">
32+
<PackageReference Include="Avalonia.Diagnostics" Version="11.3.6">
3333
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
3434
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
3535
</PackageReference>
3636
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
3737
<PackageReference Include="DnsClient" Version="1.8.0" />
3838
<PackageReference Include="DynamicData" Version="9.4.1" />
3939
<PackageReference Include="MessageBox.Avalonia" Version="3.2.0" />
40-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.8" />
41-
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.8" />
40+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
41+
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.9" />
4242
<PackageReference Include="System.Management" Version="10.0.0-preview.5.25277.114" />
4343
<PackageReference Include="WindowsFirewallHelper" Version="2.2.0.86" />
4444
</ItemGroup>

0 commit comments

Comments
 (0)