Skip to content

Commit 32e7ed2

Browse files
committed
🆕 Add focus helper, html2md, launcher, custom synedit search box
1 parent 82ce211 commit 32e7ed2

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

AIChatbar.dpr

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,11 @@ uses
2525
settingsHelper in 'settingsHelper.pas',
2626
frameEditSite in 'frameEditSite.pas' {Frame1: TFrame},
2727
frmTaskGPT in 'frmTaskGPT.pas' {taskForm},
28-
functions.rawinput in 'functions.rawinput.pas';
28+
functions.rawinput in 'functions.rawinput.pas',
29+
frmLauncher in 'frmLauncher.pas' {formLauncher},
30+
HTML2MarkDown in 'HTML2MarkDown.pas',
31+
SynSearchEdit in 'SynSearchEdit.pas',
32+
functions.windowfocus in 'functions.windowfocus.pas';
2933

3034
{$R *.res}
3135

@@ -41,6 +45,7 @@ begin
4145
Application.CreateForm(TfrmSetting, frmSetting);
4246
Application.CreateForm(TmainBrowser, mainBrowser);
4347
Application.CreateForm(TtaskForm, taskForm);
48+
Application.CreateForm(TformLauncher, formLauncher);
4449
Application.Run;
4550

4651
end.

AIChatbar.dproj

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;System.Win;HGM.Common;FMXTee.Chart;Winapi;$(DCC_Namespace)</DCC_Namespace>
7070
<VerInfo_Locale>2058</VerInfo_Locale>
7171
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
72-
<Custom_Styles>&quot;Windows11 Modern Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11.Dark.vsf&quot;;&quot;Windows11 Polar Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Polar_Dark.vsf&quot;</Custom_Styles>
72+
<Custom_Styles>&quot;Windows11 Impressive Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Impressive_Dark.vsf&quot;;&quot;Windows11 Modern Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11.Dark.vsf&quot;;&quot;Windows11 Polar Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows11_Polar_Dark.vsf&quot;</Custom_Styles>
7373
<DCC_Define>SKIA;$(DCC_Define)</DCC_Define>
7474
<AUP_ACCESS_COARSE_LOCATION>true</AUP_ACCESS_COARSE_LOCATION>
7575
<AUP_ACCESS_FINE_LOCATION>true</AUP_ACCESS_FINE_LOCATION>
@@ -156,6 +156,7 @@
156156
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
157157
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
158158
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
159+
<Icon_MainIcon>ICON.ico</Icon_MainIcon>
159160
</PropertyGroup>
160161
<ItemGroup>
161162
<DelphiCompile Include="$(MainSource)">
@@ -188,6 +189,13 @@
188189
<Form>taskForm</Form>
189190
</DCCReference>
190191
<DCCReference Include="functions.rawinput.pas"/>
192+
<DCCReference Include="frmLauncher.pas">
193+
<Form>formLauncher</Form>
194+
<FormType>dfm</FormType>
195+
</DCCReference>
196+
<DCCReference Include="HTML2MarkDown.pas"/>
197+
<DCCReference Include="SynSearchEdit.pas"/>
198+
<DCCReference Include="functions.windowfocus.pas"/>
191199
<RcItem Include="assets\splash.png">
192200
<ResourceType>RCDATA</ResourceType>
193201
<ResourceId>SPLASH</ResourceId>
@@ -225,8 +233,23 @@
225233
</Platforms>
226234
<Deployment Version="5">
227235
<DeployFile LocalName="$(BDS)\Redist\iossimulator\libcgunwind.1.0.dylib" Class="DependencyModule"/>
236+
<DeployFile LocalName="$(BDS)\Redist\iossimulator\libcgunwind.1.0.dylib" Class="DependencyModule">
237+
<Platform Name="iOSSimulator">
238+
<Overwrite>true</Overwrite>
239+
</Platform>
240+
</DeployFile>
228241
<DeployFile LocalName="$(BDS)\Redist\iossimulator\libpcre.dylib" Class="DependencyModule"/>
242+
<DeployFile LocalName="$(BDS)\Redist\iossimulator\libpcre.dylib" Class="DependencyModule">
243+
<Platform Name="iOSSimulator">
244+
<Overwrite>true</Overwrite>
245+
</Platform>
246+
</DeployFile>
229247
<DeployFile LocalName="$(BDS)\Redist\osx32\libcgunwind.1.0.dylib" Class="DependencyModule"/>
248+
<DeployFile LocalName="$(BDS)\Redist\osx32\libcgunwind.1.0.dylib" Class="DependencyModule">
249+
<Platform Name="OSX32">
250+
<Overwrite>true</Overwrite>
251+
</Platform>
252+
</DeployFile>
230253
<DeployFile Condition="'$(SKIADIR)'==''" Required="true" LocalName="$(BDS)\bin64\sk4d.dll" Configuration="Debug" Class="Skia">
231254
<Platform Name="Win64">
232255
<RemoteDir>.\</RemoteDir>

0 commit comments

Comments
 (0)