Skip to content

Commit

Permalink
Update .NET 6.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
AigioL committed Dec 13, 2022
1 parent b68e4e0 commit f2a3d9c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 15 deletions.
Binary file modified references/Steam++.Launcher.exe.bin
Binary file not shown.
6 changes: 3 additions & 3 deletions release-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@

<!--
### 版本亮点
1. .NET 运行时升级至 6.0.11,使用 fde 版本需要升级运行时
1. .NET 运行时升级至 6.0.12,使用 fde 版本需要升级运行时
2. ASF 升级至 V5.3.2.4
-->

### 修复问题
1. 改进 Mac 安装证书的提示,显示执行命令
2. 修复 Steam 启动参数在一些场景下无效
3. 修复 网络加速 关闭 http 重定向到 https 依然监听80端口错误
3. 修复 网络加速 关闭 http 重定向到 https 依然监听 80 端口错误
4. 修复 网络加速 仅启用脚本功能 导致代理网站无法访问的错误
5. 修复 网络加速 开启系统代理和 PAC 代理后,非代理网站无法正常访问的错误
6. 修改 证书安装路径 为本地计算机 而不在是 当前用户 以支持跨用户访问,这项改动可能导致大家需要重新安装一次证书
Expand All @@ -23,7 +23,7 @@
10. 修复 discord.gg 无法访问导致无法加入频道分享链接问题
11. 修复 Steam 没有正确识别 Steam 国服提示问题
12. ASF 升级至 V5.3.2.4
12. .NET 运行时升级至 6.0.11,使用 fde 版本需要升级运行时
12. .NET 运行时升级至 6.0.12,使用 fde 版本需要升级运行时
13. 新增 Steam 设置可设置 模拟蒸汽平台启动参数
<!--
Expand Down
8 changes: 4 additions & 4 deletions src/FDELauncher/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ internal static class Program
{
const string ExecutiveName = "Steam++";
static BundleArch matchArch;
static readonly SemanticVersion runtimeVersion = new(6, 0, 11);
static readonly SemanticVersion sdkVersion1 = new(6, 0, 111);
static readonly SemanticVersion sdkVersion3 = new(6, 0, 306);
static readonly SemanticVersion sdkVersion4 = new(6, 0, 403);
static readonly SemanticVersion runtimeVersion = new(6, 0, 12);
static readonly SemanticVersion sdkVersion1 = new(6, 0, 112);
static readonly SemanticVersion sdkVersion3 = new(6, 0, 307);
static readonly SemanticVersion sdkVersion4 = new(6, 0, 404);

/// <summary>
/// 应用程序的主入口点。
Expand Down
24 changes: 16 additions & 8 deletions src/ST.Tools.Publish/Program.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
using System.Application;
using System.Application.Models;

return _(args, "客户端发布命令行工具(Command Line Tools/CLT)", init: () =>
try
{
if (args.FirstOrDefault() == "apphostpatcher")
return _(args, "客户端发布命令行工具(Command Line Tools/CLT)", init: () =>
{
var args_ = args.Skip(1).ToArray();
return AppHostPatcher.Program.M(args_);
}
if (args.FirstOrDefault() == "apphostpatcher")
{
var args_ = args.Skip(1).ToArray();
return AppHostPatcher.Program.M(args_);
}
FileSystem2.InitFileSystem();
return null;
}, action: ToolConfig.AddInitCommand);
FileSystem2.InitFileSystem();
return null;
}, action: ToolConfig.AddInitCommand);
}
catch (Exception ex)
{
Console.WriteLine(ex);
return 500;
}

0 comments on commit f2a3d9c

Please sign in to comment.