From de2ab54732c6b8a4811da7192db46d4927cf949f Mon Sep 17 00:00:00 2001 From: lincube Date: Thu, 25 Jun 2026 15:25:52 +0800 Subject: [PATCH] =?UTF-8?q?fix.PLONDS=E7=B3=BB=E7=BB=9F=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LanMountainDesktop.Tests/PlondsClientServiceTests.cs | 1 + LanMountainDesktop/Services/Plonds/PlondsClientDownloads.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/LanMountainDesktop.Tests/PlondsClientServiceTests.cs b/LanMountainDesktop.Tests/PlondsClientServiceTests.cs index 55d9fea..166ecb9 100644 --- a/LanMountainDesktop.Tests/PlondsClientServiceTests.cs +++ b/LanMountainDesktop.Tests/PlondsClientServiceTests.cs @@ -507,6 +507,7 @@ public sealed class PlondsClientServiceTests : IDisposable private static PlondsClientDownloads CreateDownloads(string? changedUrl, string? filesUrl) { return new PlondsClientDownloads( + ReleaseTag: "v1.4.0", GitHub: null, S3: new PlondsS3Downloads( Bucket: "bucket", diff --git a/LanMountainDesktop/Services/Plonds/PlondsClientDownloads.cs b/LanMountainDesktop/Services/Plonds/PlondsClientDownloads.cs index 10107cb..d75a52c 100644 --- a/LanMountainDesktop/Services/Plonds/PlondsClientDownloads.cs +++ b/LanMountainDesktop/Services/Plonds/PlondsClientDownloads.cs @@ -1,6 +1,7 @@ namespace LanMountainDesktop.Services.Plonds; internal sealed record PlondsClientDownloads( + string? ReleaseTag, PlondsGitHubDownloads? GitHub, PlondsS3Downloads? S3);