From db18917a631d8a4bbfce6f2f08e0a9397b27fdff Mon Sep 17 00:00:00 2001
From: rc-swag <58423624+rc-swag@users.noreply.github.com>
Date: Wed, 24 Jan 2024 08:00:10 +1000
Subject: [PATCH] feat(windows): project file listing updated
---
windows/src/desktop/kmshell/kmshell.dpr | 5 ++++-
windows/src/desktop/kmshell/kmshell.dproj | 16 ++++++++++------
2 files changed, 14 insertions(+), 7 deletions(-)
diff --git a/windows/src/desktop/kmshell/kmshell.dpr b/windows/src/desktop/kmshell/kmshell.dpr
index 5eb0ee9013..eb4cbaa4c2 100644
--- a/windows/src/desktop/kmshell/kmshell.dpr
+++ b/windows/src/desktop/kmshell/kmshell.dpr
@@ -182,7 +182,8 @@ uses
Keyman.System.RemoteUpdateCheck in 'main\Keyman.System.RemoteUpdateCheck.pas',
BackgroundUpdate in 'main\BackgroundUpdate.pas',
Keyman.System.DownloadUpdate in 'main\Keyman.System.DownloadUpdate.pas',
- Keyman.System.ExecuteHistory in '..\..\..\..\common\windows\delphi\general\Keyman.System.ExecuteHistory.pas';
+ Keyman.System.ExecuteHistory in '..\..\..\..\common\windows\delphi\general\Keyman.System.ExecuteHistory.pas',
+ UfrmStartInstall in 'main\UfrmStartInstall.pas' {Form1};
{$R VERSION.RES}
{$R manifest.res}
@@ -204,6 +205,8 @@ begin
Application.Initialize;
Application.Title := 'Keyman Configuration';
Application.CreateForm(TmodWebHttpServer, modWebHttpServer);
+ Application.CreateForm(TForm1, Form1);
+ Application.CreateForm(TForm1, Form1);
try
Run;
finally
diff --git a/windows/src/desktop/kmshell/kmshell.dproj b/windows/src/desktop/kmshell/kmshell.dproj
index 159a3fe88d..64a6b83be1 100644
--- a/windows/src/desktop/kmshell/kmshell.dproj
+++ b/windows/src/desktop/kmshell/kmshell.dproj
@@ -359,6 +359,10 @@
+
+
+ dfm
+
Cfg_2
@@ -420,12 +424,6 @@
False
-
-
- kmshell.rsm
- true
-
-
kmshell.exe
@@ -438,6 +436,12 @@
true
+
+
+ kmshell.rsm
+ true
+
+
1