This commit is contained in:
Pascal
2025-10-14 07:01:43 +02:00
parent 2d02a075cd
commit 7242177466
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
</PropertyGroup>
<PropertyGroup>
<Version>4.3.0</Version>
<Version>4.3.1</Version>
</PropertyGroup>
<ItemGroup>

View File

@@ -17,7 +17,7 @@ public class UpdateClient(string updateUrl, AppVersion currentVersion, AppChanne
public HttpClient WebClient { get; private set; } = new();
public string UpdateUrl { get; private set; } = updateUrl;
public AppVersion CurrentVersion { get; private set; } = currentVersion;
public AppChannel MinimumChannel { get; private set; } = (AppChannel)Math.Max((int)minimumChannel, (int)currentVersion.Channel);
public AppChannel MinimumChannel { get; set; } = minimumChannel;
public UpdateInfo? UpdateInfo { get; private set; }
public UpdatePackageInfo? UpdatePackageInfo { get; private set; }
public string? HostApplicationPath { get; set; }