Skip to content

Commit

Permalink
Windows v2.8.3 Desktop v0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeric-X committed Jun 20, 2024
1 parent f3c6909 commit 9cd1bd8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Changes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v2.8.2.2
v2.8.3
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
- 修复:远程文件不存在时,只报错一次,不再无限弹窗、图标错乱(#87)
- 修复:短时间内多次复制,新复制的内容被之前复制的内容覆盖(#91)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ docker compose up -d

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

- 自动同步,使用这个[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)
- 自动同步,使用这个[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)
- 自动上传验证码,使用这个[js文件](/script/UploadVerificationCode.js),这个脚本运行在后台时将读取所有通知消息,在识别到验证码类信息时将证码上传到服务器

导入js文件、修改每个文件头部的用户配置后,手动点击运行,或者为每个js文件设置触发方式,例如:开机时触发
Expand Down
4 changes: 2 additions & 2 deletions build/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<key>NSHighResolutionCapable</key>
<true/>
<key>CFBundleVersion</key>
<string>0.7.3.3</string>
<string>0.7.4</string>
<key>CFBundleShortVersionString</key>
<string>0.7.3.3</string>
<string>0.7.4</string>
</dict>
</plist>
3 changes: 2 additions & 1 deletion docs/README_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,8 @@ If satisfy any of the following conditions, upload is automatic.
- Use root-based tools like Magisk/Xposed to unlock the limition of clipboard operation in background. There are some references:
- https://github.com/Kr328/Riru-ClipboardWhitelist
- https://github.com/GamerGirlandCo/xposed-clipboard-whitelist

- https://modules.lsposed.org/module/io.github.tehcneko.clipboardwhitelist
- https://github.com/QueallyTech/DisableLogRequest

### Notes for Clients

Expand Down
2 changes: 1 addition & 1 deletion src/SyncClipboard.Desktop/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ internal class AppConfig : IAppConfig
{
public string AppId => Env.AppId;
public string AppStringId => "SyncClipboard.Desktop";
public string AppVersion => "0.7.3.3";
public string AppVersion => "0.7.4";
public string UpdateApiUrl => "https://api.github.com/repos/Jeric-X/SyncClipboard.Desktop/releases";
public string UpdateUrl => "https://github.com/Jeric-X/SyncClipboard.Desktop/releases/latest";
}
4 changes: 2 additions & 2 deletions src/SyncClipboard.Desktop/Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
0.7.3.3
0.7.4
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
- 修复:使用某些截图工具截图复制后,无法触发上传(https://github.com/Jeric-X/SyncClipboard/issues/88)
- 修复:在一些场景复制图片时,无法触发上传(https://github.com/Jeric-X/SyncClipboard/issues/88)
- 修复:远程文件不存在时,只报错一次,不再图标错乱(https://github.com/Jeric-X/SyncClipboard/issues/87)
- 为修复 https://github.com/Jeric-X/SyncClipboard/issues/86,Linux无法自动识别语言,默认语言为英语
- 修复:短时间内多次复制,新复制的内容被之前复制的内容覆盖(https://github.com/Jeric-X/SyncClipboard/issues/91)
Expand Down
2 changes: 1 addition & 1 deletion src/SyncClipboard.WinUI3/AppConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ internal class AppConfig : IAppConfig
{
public string AppId => Env.AppId;
public string AppStringId => "SyncClipboard.WinUI";
public string AppVersion => "2.8.2.2";
public string AppVersion => "2.8.3";
public string UpdateApiUrl => "https://api.github.com/repos/Jeric-X/SyncClipboard/releases";
public string UpdateUrl => "https://github.com/Jeric-X/SyncClipboard/releases/latest";
}

0 comments on commit 9cd1bd8

Please sign in to comment.