Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cc5b161

Browse files
committed
v2.1.0
1 parent c1f9d31 commit cc5b161

4 files changed

Lines changed: 37 additions & 31 deletions

File tree

release-template.md

Lines changed: 21 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,27 @@
1-
1. 新增 CSGO 市场查看磨损与印花脚本适配
2-
2. 新增 窗口位置保存功能
3-
3. 修复 加速证书安装失败的问题
4-
4. 修复 账号切换离线登录失效的问题
5-
5. 修复 Windows 代理加速导致断网的问题
6-
6. 修复 Discord 客户端代理失效的问题
7-
7. 修复 多个 UI 错误
8-
8. 修复 脚本以及备注无法保存的问题
9-
9. 修复 多个可能导致闪退的问题
10-
10. 修复 更新进度条显示不正确的问题
11-
11. 改进 当 hosts 文件不存在时自动创建空文件而不是返回错误
1+
1. 修复 多个 GM.js 同时存在
2+
2. 修复 GM.js 打包错误
3+
3. 修复 手动添加 GM.js 重名替换导致出错
4+
4. 修复 成就解锁窗口不显示
5+
5. 新增 背景透明度 UI 设置
6+
6. 调整 脚本列表 UI
7+
7. 修复 代理过程中的闪退错误
8+
8. 修复 库存游戏闪退错误
9+
9. 修复 Discord 更新代理失效
10+
10. 修复 hosts 闪退错误
11+
11. 新增 Steam 快速登录
1212

1313
| File | Checksum (SHA256) |
1414
| ---- | ---- |
15-
| FileName | SHA256 |
16-
| FileName | SHA256 |
15+
| Steam++_win_x86_v2.1.0.7z | SHA256 |
16+
| Steam++_win_x86_v2.1.0.exe | SHA256 |
17+
| Steam++_linux_x64_v2.1.0.7z | SHA256 |
18+
| Steam++_linux_x64_v2.1.0.deb | SHA256 |
19+
| Steam++_macos_x64_v2.1.0.dmg | SHA256 |
20+
| Steam++_macos_arm64_v2.1.0.dmg | SHA256 |
21+
| Steam++_android_arm_v2.1.0.apk | SHA256 |
22+
| Steam++_android_arm64_v2.1.0.apk | SHA256 |
23+
| Steam++_win_arm64_v2.1.0.7z | SHA256 |
24+
| Steam++_win_arm64_v2.1.0.exe | SHA256 |
1725

1826
***
1927

src/ST.Client.Desktop/Properties/SR.Designer.cs

Lines changed: 7 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/ST.Client.Desktop/Properties/SR.resx

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,16 +123,17 @@
123123
<data name="ProgramUpdateCmd_" xml:space="preserve">
124124
<value>@echo off
125125
:loop
126-
ping -n 5 127.0.0.1>nul
127-
tasklist|find /i "{0}">nul
128-
if %errorlevel%==1 (
126+
ping -n 1 127.0.0.1
127+
tasklist|find /i "{0}"
128+
if %errorlevel%==0 (
129+
taskkill /im "{0}" /f
130+
)
131+
else(
132+
taskkill /im "{0}" /f
129133
xcopy /y /c /h /r /s "{1}\*.*" "{2}"
130134
rmdir /s /q "{1}"
131135
"{3}"
132-
exit
133136
del %0
134-
)else(
135-
taskkill /f /im "{0}"
136137
)
137138
goto :loop</value>
138139
<comment>升级程序CMD命令行</comment>

src/ST.Client.Desktop/Services/Implementation/DesktopAppUpdateServiceImpl.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,12 @@ void OverwriteUpgradePrivate(string dirPath)
5858
var updateCommandPath = Path.Combine(IOPath.CacheDirectory, "update.cmd");
5959
IOPath.FileIfExistsItDelete(updateCommandPath);
6060

61-
var echo = SR.ProgramUpdateEcho;
62-
if (echo.Contains('"')) echo = "Steam++ is upgrading...";
63-
6461
var updateCommand = string.Format(
6562
SR.ProgramUpdateCmd_,
6663
AppHelper.ProgramName,
67-
dirPath,
64+
dirPath.TrimEnd(Path.DirectorySeparatorChar),
6865
AppContext.BaseDirectory,
69-
AppHelper.ProgramPath,
70-
echo);
66+
AppHelper.ProgramPath);
7167

7268
updateCommand = "chcp" + Environment.NewLine + "chcp 65001" + Environment.NewLine + updateCommand;
7369

0 commit comments

Comments
 (0)