Skip to content

Commit

Permalink
🔖 3.0.0-rc.12
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Oct 11, 2024
1 parent 7156d90 commit 8f29d7b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/AssemblyInfo.Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static partial class AssemblyInfo
/// <summary>
/// RC 版本号,范围 0~9,只增不减
/// </summary>
const string ver_for_rc = "11";
const string ver_for_rc = "12";

public const string FileVersion = $"{Version2}.{ver_for_rc}1{ver_for_preview}.0";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ var protocol when protocol.StartsWith("HTTP/3") => System.Net.HttpVersion.Versio
!reverseProxyConfig.Service.OnlyEnableProxyScript)
{
// 部分运营商将奇怪的域名解析到 127.0.0.1 再此排除这些不支持的代理域名
var ip = await reverseProxyConfig.DnsAnalysis.AnalysisDomainIpAsync(context.Request.Host.Value, IDnsAnalysisService.DNS_Dnspods).FirstOrDefaultAsync();
var ip = await reverseProxyConfig.DnsAnalysis.AnalysisDomainIpAsync(context.Request.Host.Value!, IDnsAnalysisService.DNS_Dnspods).FirstOrDefaultAsync();
if (ip == null || IPAddress.IsLoopback(ip))
{
context.Response.StatusCode = StatusCodes.Status500InternalServerError;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ static IEnumerable<string> GetPluginNames(Platform platform)
yield return AssemblyInfo.Accelerator;
yield return AssemblyInfo.GameAccount;
yield return AssemblyInfo.GameList;
//yield return AssemblyInfo.ArchiSteamFarmPlus;
yield return AssemblyInfo.ArchiSteamFarmPlus;
yield return AssemblyInfo.Authenticator;
if (platform == Platform.Windows)
yield return AssemblyInfo.GameTools;
Expand Down
3 changes: 3 additions & 0 deletions src/BD.WTTS.Client.Tools.Publish/Helpers/MSIXHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ public static void Start(
string? pfxFilePath = null,
string? workingDirectory = null)
{
if (pfxFilePath != pfxFilePath_MSStore_CodeSigning)
return;

ProcessStartInfo psi;
switch (pfxFilePath)
{
Expand Down

0 comments on commit 8f29d7b

Please sign in to comment.