From 25796d213cfc4cf1a6fee2f90bf26704b26f4b30 Mon Sep 17 00:00:00 2001 From: Humdinger Date: Mon, 10 Feb 2020 17:25:10 +0100 Subject: [PATCH] Minor release v1.0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fixes to localization of the clipboard monitor. * Added localizations. Thanks to dhijazo (Spanish), Karvjorm (Finnish), Briseur (French), KapiX (Polish), Gabriele Baldassarre (Italian), mazbrili (Indonesian), dhryko (Brazilian), Victor Domingos (Portuguese), tmtfx (Friaulian), Adam Fowler (British), Emir Sarı (Turkish). * Add clip text to tool tip, truncated after 300 characters. * Change input device type to B_UNDEFINED_DEVICE, otherwise it'll appear in Haiku's Input preferences. * Bug fix: Don't add duplicate clips to Favorites. Show a BAlert instead. (Thanks GCI student Emily!) * Bug fix: Select first favorite item, on arrow key switch. (Thanks GCI student Raheem!) --- Clipdinger.rdef | 2 +- Constants.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Clipdinger.rdef b/Clipdinger.rdef index 7f33749..f10f6af 100644 --- a/Clipdinger.rdef +++ b/Clipdinger.rdef @@ -5,7 +5,7 @@ resource app_flags B_SINGLE_LAUNCH; resource app_version { major = 1, middle = 0, - minor = 1, + minor = 2, /* 0 = development 1 = alpha 2 = beta 3 = gamma 4 = golden master 5 = final */ diff --git a/Constants.h b/Constants.h index 698cc87..2eea493 100644 --- a/Constants.h +++ b/Constants.h @@ -13,8 +13,8 @@ extern const char* kApplicationSignature; -static const char kVersion[] = "v1.0.1"; -static const char kCopyright[] = "2015-2018"; +static const char kVersion[] = "v1.0.2"; +static const char kCopyright[] = "2015-2020"; static const char kSettingsFolder[] = "Clipdinger"; static const char kSettingsFile[] = "Clipdinger_settings"; static const char kHistoryFile[] = "Clipdinger_history";