From 96cc571223c60116ccf781f1eaa5c970d7772585 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Wed, 9 Jan 2019 07:43:32 +1100 Subject: [PATCH 1/2] [Windows] Fixes #187. kmshell now only checks for damaged profiles when starting Configuration or Keyman itself --- windows/src/desktop/kmshell/main/initprog.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/src/desktop/kmshell/main/initprog.pas b/windows/src/desktop/kmshell/main/initprog.pas index 593af4d9a5..d239f50601 100644 --- a/windows/src/desktop/kmshell/main/initprog.pas +++ b/windows/src/desktop/kmshell/main/initprog.pas @@ -356,7 +356,7 @@ begin Exit; end; - if not FSilent and (FMode <> fmRepair) then // I4773 + if not FSilent and (FMode in [fmStart, fmSplash, fmMain, fmAbout]) then // I4773 begin if not TKeyboardTIPCheck.CheckKeyboardTIPInstallStatus then begin From f859c7cfdea2116ff3ad131b9a5ba7bbfb467279 Mon Sep 17 00:00:00 2001 From: Marc Durdin Date: Wed, 9 Jan 2019 07:43:46 +1100 Subject: [PATCH 2/2] [Windows] history.md --- windows/src/desktop/history.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/windows/src/desktop/history.md b/windows/src/desktop/history.md index f085d18ea1..a5a83026e4 100644 --- a/windows/src/desktop/history.md +++ b/windows/src/desktop/history.md @@ -1,5 +1,8 @@ # Keyman Desktop Version History +## 2019-01-09 11.0.1302.0 beta +* Bug Fix: Keyman can no longer show a "Damaged Profile" dialog box during silent installs (#1508) + ## 2019-01-07 11.0.1301.0 beta * Bug Fix: Hotkeys are now correctly assigned to keyboards when installed (#1485) * Change: Removed legacy API: Keyman_BuildKeyboardList, Keyman_GetAPIVersion, GetKeymanKeyboardInfo, GetKeymanInfo, GetSystemStore (#1503)