File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
129133xcopy /y /c /h /r /s "{1}\*.*" "{2}"
130134rmdir /s /q "{1}"
131135"{3}"
132- exit
133136del %0
134- )else(
135- taskkill /f /im "{0}"
136137)
137138goto :loop</value >
138139 <comment >升级程序CMD命令行</comment >
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments