Skip to content

Commit

Permalink
Windows v2.8.4 Desktop v0.7.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeric-X committed Jul 27, 2024
1 parent 4f7f562 commit dda9cce
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 10 deletions.
5 changes: 3 additions & 2 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
v2.8.3.1
- 功能:可以设置重试次数,失败超过重试次数下载/上传会暂停(#100)
v2.8.4
- 功能:可以设置重试次数,下载失败超过重试次数自动下载会暂停,触发一次上传后会恢复自动下载(#100)
- 功能:可以设置剪切文件时不上传(#107)
- 修复:快捷键不允许设置为ctrl + c或command + c (#103)

v2.8.3
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
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.4.1</string>
<string>0.7.5</string>
<key>CFBundleShortVersionString</key>
<string>0.7.4.1</string>
<string>0.7.5</string>
</dict>
</plist>
2 changes: 1 addition & 1 deletion src/SyncClipboard.Core/I18n/Strings.resx
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@
<value>Send notification after manually upload</value>
</data>
<data name="DoNotUploadWhenCut" xml:space="preserve">
<value>Don't Upload When Cutting Files</value>
<value>Don't upload files when cutting</value>
</data>
<data name="RetryTimes" xml:space="preserve">
<value>Retry Times</value>
Expand Down
7 changes: 7 additions & 0 deletions src/SyncClipboard.Core/ViewModels/HotkeyViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ public partial class HotkeyViewModel : ObservableObject
private Hotkey editingHotkey = Hotkey.Nothing;
partial void OnEditingHotkeyChanged(Hotkey value)
{
var copyHotkey = new Hotkey(OperatingSystem.IsMacOS() ? Key.Meta : Key.Ctrl, Key.C);
if (value == copyHotkey)
{
IsEditingHasError = true;
return;
}

IsEditingHasError = !_hotkeyManager.IsValidHotkeyForm(value);
}

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.4.1";
public string AppVersion => "0.7.5";
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";
}
7 changes: 4 additions & 3 deletions src/SyncClipboard.Desktop/Changes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.7.4.1
- 功能:可以设置重试次数,失败超过重试次数下载/上传会暂停(https://github.com/Jeric-X/SyncClipboard/issues/100)
- 功能:可以设置剪切文件时不上传(https://github.com/Jeric-X/SyncClipboard/issues/107)
0.7.5
- 功能:可以设置重试次数,下载失败超过重试次数自动下载会暂停,触发一次上传后会恢复自动下载(https://github.com/Jeric-X/SyncClipboard/issues/100)
- 功能:可以设置剪切文件时不上传(Linux)(https://github.com/Jeric-X/SyncClipboard/issues/107)
- 修复:快捷键不允许设置为ctrl + c或command + c (https://github.com/Jeric-X/SyncClipboard/issues/103)

0.7.4
- 修复:不设置hash上传图片/文件到服务器后,桌面客户端会无限重复设置剪贴板
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.3.1";
public string AppVersion => "2.8.4";
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 dda9cce

Please sign in to comment.