From bf4e087dafadc42b243eb24b1baa421183fbe5aa Mon Sep 17 00:00:00 2001 From: Jeirc-X Date: Sat, 17 Apr 2021 21:16:36 +0800 Subject: [PATCH] fix bugs when clicking COPY button multi times in a short period of time. --- Changes.md | 3 +++ SyncClipboard/UpdateChecker.cs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changes.md b/Changes.md index 5a7f8fcc..3594cf5c 100644 --- a/Changes.md +++ b/Changes.md @@ -1,3 +1,6 @@ +v1.3.2 +- fix bugs when clicking COPY button multi times in a short period of time. + v1.3.1 - fix bug: `config won't effect until next startup` diff --git a/SyncClipboard/UpdateChecker.cs b/SyncClipboard/UpdateChecker.cs index 20ac3a4e..4d442815 100644 --- a/SyncClipboard/UpdateChecker.cs +++ b/SyncClipboard/UpdateChecker.cs @@ -6,7 +6,7 @@ namespace SyncClipboard { class UpdateChecker { - public const string Version = "1.3.1"; + public const string Version = "1.3.2"; public const int VersionPartNumber = 3; public const string UpdateUrl = "https://api.github.com/repos/Jeric-X/SyncClipboard/releases/latest"; public const string ReleaseUrl = "https://github.com/Jeric-X/SyncClipboard/releases/latest";