Skip to content

Commit 9cd1bd8

Browse files
committed
Windows v2.8.3 Desktop v0.7.4
1 parent f3c6909 commit 9cd1bd8

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

Changes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v2.8.2.2
1+
v2.8.3
22
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
33
- 修复:远程文件不存在时,只报错一次,不再无限弹窗、图标错乱(#87)
44
- 修复:短时间内多次复制,新复制的内容被之前复制的内容覆盖(#91)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ docker compose up -d
171171

172172
#### 使用[Autox.js](https://github.com/kkevsekk1/AutoX)
173173

174-
- 自动同步,使用这个[js文件](/script/SyncAutoxJs.js)。由于安卓系统限制,在安卓10及以上的系统应用无法在后台读取剪贴板,但可以使用基于Root权限的工具(Magisk/Xposed)解除应用后台读取剪贴版的权限,如[Riru-ClipboardWhitelist](https://github.com/Kr328/Riru-ClipboardWhitelist)[Clipboard Whitelist](https://modules.lsposed.org/module/io.github.tehcneko.clipboardwhitelist/)。由于在安卓13及以上的系统应用必须由用户手动授权才被允许访问系统日志(剪贴板),但可以使用基于Root权限的工具(Xposed)自动为应用授权访问系统日志的权限,如[DisableLogRequest/禁用日志访问请求](https://github.com/QueallyTech/DisableLogRequest)
174+
- 自动同步,使用这个[js文件](/script/SyncAutoxJs.js)。由于安卓系统限制,在安卓10及以上的系统应用无法在后台读取剪贴板,但可以使用基于Root权限的工具(Magisk/Xposed)解除应用后台读取剪贴版的权限,如[Riru-ClipboardWhitelist](https://github.com/Kr328/Riru-ClipboardWhitelist)[Clipboard Whitelist](https://modules.lsposed.org/module/io.github.tehcneko.clipboardwhitelist)。由于在安卓13及以上的系统应用必须由用户手动授权才被允许访问系统日志(剪贴板),也可以使用Xposed自动为应用授权访问系统日志的权限,如[DisableLogRequest/禁用日志访问请求](https://github.com/QueallyTech/DisableLogRequest)
175175
- 自动上传验证码,使用这个[js文件](/script/UploadVerificationCode.js),这个脚本运行在后台时将读取所有通知消息,在识别到验证码类信息时将证码上传到服务器
176176

177177
导入js文件、修改每个文件头部的用户配置后,手动点击运行,或者为每个js文件设置触发方式,例如:开机时触发

build/macos/Info.plist

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<key>NSHighResolutionCapable</key>
2020
<true/>
2121
<key>CFBundleVersion</key>
22-
<string>0.7.3.3</string>
22+
<string>0.7.4</string>
2323
<key>CFBundleShortVersionString</key>
24-
<string>0.7.3.3</string>
24+
<string>0.7.4</string>
2525
</dict>
2626
</plist>

docs/README_EN.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,8 @@ If satisfy any of the following conditions, upload is automatic.
181181
- Use root-based tools like Magisk/Xposed to unlock the limition of clipboard operation in background. There are some references:
182182
- https://github.com/Kr328/Riru-ClipboardWhitelist
183183
- https://github.com/GamerGirlandCo/xposed-clipboard-whitelist
184-
184+
- https://modules.lsposed.org/module/io.github.tehcneko.clipboardwhitelist
185+
- https://github.com/QueallyTech/DisableLogRequest
185186

186187
### Notes for Clients
187188

src/SyncClipboard.Desktop/AppConfig.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ internal class AppConfig : IAppConfig
66
{
77
public string AppId => Env.AppId;
88
public string AppStringId => "SyncClipboard.Desktop";
9-
public string AppVersion => "0.7.3.3";
9+
public string AppVersion => "0.7.4";
1010
public string UpdateApiUrl => "https://api.github.com/repos/Jeric-X/SyncClipboard.Desktop/releases";
1111
public string UpdateUrl => "https://github.com/Jeric-X/SyncClipboard.Desktop/releases/latest";
1212
}

src/SyncClipboard.Desktop/Changes.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
0.7.3.3
1+
0.7.4
22
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
3-
- 修复:使用某些截图工具截图复制后,无法触发上传(https://github.com/Jeric-X/SyncClipboard/issues/88)
3+
- 修复:在一些场景复制图片时,无法触发上传(https://github.com/Jeric-X/SyncClipboard/issues/88)
44
- 修复:远程文件不存在时,只报错一次,不再图标错乱(https://github.com/Jeric-X/SyncClipboard/issues/87)
55
- 为修复 https://github.com/Jeric-X/SyncClipboard/issues/86,Linux无法自动识别语言,默认语言为英语
66
- 修复:短时间内多次复制,新复制的内容被之前复制的内容覆盖(https://github.com/Jeric-X/SyncClipboard/issues/91)

src/SyncClipboard.WinUI3/AppConfig.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ internal class AppConfig : IAppConfig
66
{
77
public string AppId => Env.AppId;
88
public string AppStringId => "SyncClipboard.WinUI";
9-
public string AppVersion => "2.8.2.2";
9+
public string AppVersion => "2.8.3";
1010
public string UpdateApiUrl => "https://api.github.com/repos/Jeric-X/SyncClipboard/releases";
1111
public string UpdateUrl => "https://github.com/Jeric-X/SyncClipboard/releases/latest";
1212
}

0 commit comments

Comments
 (0)