Skip to content

Commit 456b17f

Browse files
version 1.3.0
Updated some icons Update icon when SVGFactory changes
1 parent 8b36dcf commit 456b17f

19 files changed

+94
-60
lines changed

Icons/logo_512.png

38.2 KB
Loading
-1.6 KB
Binary file not shown.

Setup/SVGShellExtensions.iss

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
; Script generated by the Inno Setup Script Wizard.
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33
#define MyAppName 'SVG Shell Extensions and SVG Text Editor'
4-
#define MyAppVersion '1.2.3'
4+
#define MyAppVersion '1.3.0'
55

66
[Setup]
7-
UsePreviousLanguage=no
87
AppName={#MyAppName}
98
AppPublisher=Ethea S.r.l.
109
AppVerName={#MyAppName} {#MyAppVersion}
@@ -13,7 +12,7 @@ AppPublisherURL=https://www.ethea.it/
1312
AppSupportURL=https://github.com/EtheaDev/SVGShellExtensions/issues
1413
DefaultDirName={pf}\Ethea\SVGShellExtensions
1514
OutputBaseFileName=SVGShellExtensionsSetup
16-
DisableDirPage=true
15+
DisableDirPage=false
1716
DefaultGroupName=SVG Shell Extensions
1817
Compression=lzma
1918
SolidCompression=true
@@ -36,6 +35,7 @@ AppCopyright=Copyright
3635
ArchitecturesInstallIn64BitMode=x64
3736
MinVersion=0,6.0
3837
CloseApplications=force
38+
UninstallDisplayIcon={app}\SVGTextEditor.exe
3939

4040
[Languages]
4141
Name: eng; MessagesFile: compiler:Default.isl; LicenseFile: .\License_ENG.rtf
@@ -62,10 +62,10 @@ Name: Editor; Description: SVG Text Editor; Flags: fixed; Types: custom full
6262
Name: ShellExtensions; Description: Shell Extensions (Preview and Thumbnails); Types: custom compact full
6363

6464
[Registry]
65-
Root: HKCR; SubKey: .svg; ValueType: string; ValueData: Open; Flags: uninsdeletekey;
66-
Root: HKCR; SubKey: Open; ValueType: string; ValueData: SVG Text file; Flags: uninsdeletekey;
67-
Root: HKCR; SubKey: Open\Shell\Open\Command; ValueType: string; ValueData: """{app}\SVGTextEditor.exe"" ""%1"""; Flags: uninsdeletevalue
68-
Root: HKCR; Subkey: Open\DefaultIcon; ValueType: string; ValueData: {app}\SVGTextEditor.exe,0; Flags: uninsdeletevalue
65+
Root: "HKCR"; Subkey: ".svg"; ValueType: string; ValueData: "Open"; Flags: uninsdeletekey
66+
Root: "HKCR"; Subkey: "OpenSVGEditor"; ValueType: string; ValueData: "SVG Text file"; Flags: uninsdeletekey
67+
Root: "HKCR"; Subkey: "OpenSVGEditor\Shell\Open\Command"; ValueType: string; ValueData: """{app}\SVGTextEditor.exe"" ""%1"""; Flags: uninsdeletevalue
68+
Root: "HKCR"; Subkey: "OpenSVGEditor\DefaultIcon"; ValueType: string; ValueData: "{app}\SVGTextEditor.exe,0"; Flags: uninsdeletevalue
6969

7070
[Code]
7171
function InitializeSetup(): Boolean;
@@ -125,7 +125,7 @@ begin
125125
begin
126126
if (IsUpgrade()) then
127127
begin
128-
MsgBox(ExpandConstant('An old version of SVG Shell Extensions was detected. The uninstaller will be executed'), mbInformation, MB_OK);
128+
MsgBox(ExpandConstant('An old version of SVG Shell Extensions was detected. The uninstaller will be executed...'), mbInformation, MB_OK);
129129
UnInstallOldVersion();
130130
end;
131131
end;

Source/EditorMainForm.dfm

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ object frmMain: TfrmMain
55
ClientHeight = 590
66
ClientWidth = 907
77
Color = clWindow
8-
Constraints.MinHeight = 400
9-
Constraints.MinWidth = 600
108
Ctl3D = False
119
Font.Charset = DEFAULT_CHARSET
1210
Font.Color = clWindowText
@@ -679,8 +677,8 @@ object frmMain: TfrmMain
679677
Category = 'Settings'
680678
Caption = 'Editor Options ...'
681679
Hint = 'Editor Options'
682-
ImageIndex = 28
683-
ImageName = 'preferences-desktop'
680+
ImageIndex = 41
681+
ImageName = 'Support'
684682
OnExecute = actnEditOptionsExecute
685683
end
686684
object actnEnlargeFont: TAction
@@ -702,7 +700,7 @@ object frmMain: TfrmMain
702700
object actnSaveAs: TAction
703701
Category = 'File'
704702
Caption = 'Save As ...'
705-
Hint = 'Save As ...'
703+
Hint = 'Save File As ...'
706704
ImageIndex = 14
707705
ImageName = 'Save-as'
708706
OnExecute = actnSaveAsExecute
@@ -711,9 +709,9 @@ object frmMain: TfrmMain
711709
object actnColorSettings: TAction
712710
Category = 'Settings'
713711
Caption = 'Theme settings'
714-
Hint = 'Theme settings (colors, font)'
715-
ImageIndex = 0
716-
ImageName = 'Style'
712+
Hint = 'Theme settings (colors, font, themes)'
713+
ImageIndex = 28
714+
ImageName = 'preferences-desktop'
717715
OnExecute = actnColorSettingsExecute
718716
OnUpdate = actnColorSettingsUpdate
719717
end
@@ -754,6 +752,7 @@ object frmMain: TfrmMain
754752
end
755753
object SaveDialog: TSaveDialog
756754
Filter = 'SVG Image files (.svg)|*.svg'
755+
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
757756
Left = 300
758757
Top = 264
759758
end
@@ -1102,6 +1101,12 @@ object frmMain: TfrmMain
11021101
CollectionName = 'info'
11031102
Disabled = False
11041103
Name = 'info'
1104+
end
1105+
item
1106+
CollectionIndex = 41
1107+
CollectionName = 'Support'
1108+
Disabled = False
1109+
Name = 'Support'
11051110
end>
11061111
ImageCollection = dmResources.SVGIconImageCollection
11071112
Width = 24

Source/EditorMainForm.pas

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -461,6 +461,7 @@ function TfrmMain.OpenFile(const FileName : string;
461461
I := AddEditingFile(EditingFile);
462462
end;
463463

464+
//Open the file
464465
EditingFile.ReadFromFile;
465466

466467
Result := True;
@@ -781,6 +782,7 @@ procedure TfrmMain.FormCreate(Sender: TObject);
781782
//Load previous opened-files
782783
LoadOpenedFiles;
783784

785+
//Initialize Open and Save Dialog with application path
784786
if ParamStr(1) <> '' then
785787
begin
786788
//Load file passed at command line
@@ -922,16 +924,17 @@ function TfrmMain.AddEditingFile(EditingFile: TEditingFile): Integer;
922924

923925
//Show the tabsheet
924926
ts.Visible := True;
925-
926-
//Make the Tabsheet the current page
927-
//and call "change" of pagecontrol
928-
PageControl.ActivePage := ts;
929-
PageControl.OnChange(PageControl);
930927
Except
931928
ts.Free;
932929
Editor.Free;
933930
raise;
934931
End;
932+
933+
//Make the Tabsheet the current page
934+
PageControl.ActivePage := ts;
935+
936+
//and call "change" of pagecontrol
937+
PageControl.OnChange(PageControl);
935938
end;
936939

937940
procedure TfrmMain.AssignSVGToImage;
@@ -1048,10 +1051,11 @@ procedure TfrmMain.RemoveEditingFile(EditingFile: TEditingFile);
10481051
//Delete the TabSheet
10491052
PageControl.Pages[pos].Free;
10501053

1051-
//Activate the previous page and
1052-
//call "change" of pagecontrol
1054+
//Activate the previous page and call "change" of pagecontrol
10531055
if pos > 0 then
10541056
PageControl.ActivePageIndex := pos-1;
1057+
1058+
//Force "change" of Page
10551059
PageControl.OnChange(PageControl);
10561060
end;
10571061

@@ -1250,6 +1254,11 @@ procedure TfrmMain.UpdateFromSettings(AEditor: TSynEdit);
12501254
UpdateApplicationStyle(FEditorSettings.StyleName);
12511255
UpdateHighlighter(AEditor);
12521256
BackgroundTrackBar.Position := FEditorSettings.LightBackground;
1257+
SVGIconImage.UpdateSVGFactory;
1258+
SVGIconImage16.UpdateSVGFactory;
1259+
SVGIconImage32.UpdateSVGFactory;
1260+
SVGIconImage48.UpdateSVGFactory;
1261+
SVGIconImage96.UpdateSVGFactory;
12531262
end;
12541263

12551264
procedure TfrmMain.UpdateHighlighter(ASynEditor: TSynEdit);
@@ -1318,6 +1327,7 @@ procedure TfrmMain.actnSaveAsExecute(Sender: TObject);
13181327
CurrentEditFile.FileName := SaveDialog.FileName;
13191328
end;
13201329
CurrentEditFile.SaveToFile;
1330+
13211331
//call the "onchange" event of PageControl
13221332
PageControl.OnChange(PageControl);
13231333
end;

Source/SVGPreviewForm.dfm

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -65,31 +65,31 @@ object FrmPreview: TFrmPreview
6565
OnMouseEnter = ToolButtonMouseEnter
6666
OnMouseLeave = ToolButtonMouseLeave
6767
end
68-
object ToolButtonAbout: TToolButton
68+
object ToolButtonSettings: TToolButton
6969
Left = 85
7070
Top = 0
7171
Cursor = crHandPoint
72-
Hint = 'Show about...'
72+
Hint = 'Preview settings...'
7373
AutoSize = True
74-
Caption = 'About...'
75-
ImageIndex = 2
76-
ImageName = 'about'
74+
Caption = 'Settings...'
75+
ImageIndex = 11
76+
ImageName = 'preferences-desktop'
7777
Visible = False
78-
OnClick = ToolButtonAboutClick
78+
OnClick = ToolButtonSettingsClick
7979
OnMouseEnter = ToolButtonMouseEnter
8080
OnMouseLeave = ToolButtonMouseLeave
8181
end
82-
object ToolButtonSettings: TToolButton
83-
Left = 165
82+
object ToolButtonAbout: TToolButton
83+
Left = 175
8484
Top = 0
8585
Cursor = crHandPoint
86-
Hint = 'Preview settings...'
86+
Hint = 'Show about...'
8787
AutoSize = True
88-
Caption = 'Settings...'
89-
ImageIndex = 4
90-
ImageName = 'Style'
88+
Caption = 'About...'
89+
ImageIndex = 2
90+
ImageName = 'about'
9191
Visible = False
92-
OnClick = ToolButtonSettingsClick
92+
OnClick = ToolButtonAboutClick
9393
OnMouseEnter = ToolButtonMouseEnter
9494
OnMouseLeave = ToolButtonMouseLeave
9595
end
@@ -321,6 +321,12 @@ object FrmPreview: TFrmPreview
321321
CollectionName = 'Reformat'
322322
Disabled = False
323323
Name = 'Reformat'
324+
end
325+
item
326+
CollectionIndex = 28
327+
CollectionName = 'preferences-desktop'
328+
Disabled = False
329+
Name = 'preferences-desktop'
324330
end>
325331
ImageCollection = dmResources.SVGIconImageCollection
326332
Width = 24

Source/SVGPreviewForm.pas

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ procedure TFrmPreview.UpdateFromSettings;
377377
TStyleManager.TrySetStyle(FPreviewSettings.StyleName, False);
378378
{$ENDIF}
379379
BackgroundTrackBar.Position := FPreviewSettings.LightBackground;
380+
SVGIconImage.UpdateSVGFactory;
380381
UpdateHighlighter;
381382
UpdateGUI;
382383
end;

Source/SVGShellExtensions.dproj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
<Icon_MainIcon>..\Icons\logo.ico</Icon_MainIcon>
5959
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
6060
<VerInfo_Locale>1033</VerInfo_Locale>
61-
<VerInfo_Keys>CompanyName=Ethea S.r.l.;FileDescription=SVG Shell Extensions 64bit;FileVersion=1.2.3.0;InternalName=;LegalCopyright=Copyright © 2021 Ethea S.r.l.;LegalTrademarks=;OriginalFilename=;ProductName=SVG Shell Extensions 64bit;ProductVersion=1.2;Comments=</VerInfo_Keys>
61+
<VerInfo_Keys>CompanyName=Ethea S.r.l.;FileDescription=SVG Shell Extensions 64bit;FileVersion=1.3.0.0;InternalName=;LegalCopyright=Copyright © 2021 Ethea S.r.l.;LegalTrademarks=;OriginalFilename=;ProductName=SVG Shell Extensions 64bit;ProductVersion=1.3;Comments=</VerInfo_Keys>
6262
<Custom_Styles>Glow|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Glow.vsf;Sky|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Sky.vsf;Windows10|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10.vsf;&quot;Windows10 Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Dark.vsf&quot;;&quot;Windows10 SlateGray|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10SlateGray.vsf&quot;;&quot;Flat UI Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\FlatUILight.vsf&quot;;&quot;Windows10 BlackPearl|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlackPearl.vsf&quot;;&quot;Windows10 Blue Whale|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhale.vsf&quot;;&quot;Windows10 Blue Whale LE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhaleLE.vsf&quot;;&quot;Windows10 Clear Day|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10ClearDay.vsf&quot;;&quot;Windows10 Malibu|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Malibu.vsf&quot;</Custom_Styles>
6363
<DCC_UsePackage>rtl;vcl;vclx;vclactnband;xmlrtl;VclSmp;vclimg;svnui;svn;bdertl;TeeUI;TeeDB;Tee;vcldb;dbrtl;vcldbx;vcltouch;dsnap;dsnapcon;vclib;ibxpress;adortl;IndyCore;IndySystem;IndyProtocols;inet;intrawebdb_110_150;Intraweb_110_150;vclie;websnap;webdsnap;inetdb;inetdbbde;inetdbxpress;soaprtl;vclribbon;dbexpress;DbxCommonDriver;DataSnapIndy10ServerTransport;DataSnapProviderClient;DbxClientDriver;DataSnapClient;dbxcds;DataSnapServer;AzureCloud;DBXInterBaseDriver;DBXMySQLDriver;DBXFirebirdDriver;DBXSybaseASEDriver;DBXSybaseASADriver;DBXOracleDriver;DBXMSSQLDriver;DBXInformixDriver;DBXDb2Driver;Hydra_Core_D15;SynEdit_RXE;mbColorLibDXE;JclDeveloperTools;Jcl;JclVcl;JclContainers;JvCore;JvSystem;JvStdCtrls;JvAppFrm;JvBands;JvDB;JvDlgs;JvBDE;JvControls;JvCmp;JvCrypt;JvCustom;JvDocking;JvDotNetCtrls;JvGlobus;JvHMI;JvJans;JvManagedThreads;JvMM;JvNet;JvPageComps;JvPascalInterpreter;JvPluginSystem;JvPrintPreview;JvRuntimeDesign;JvTimeFramework;JvWizards;JvXPCtrls;WinSkinDXE;bsfd2011;IceTabSet;$(DCC_UsePackage)</DCC_UsePackage>
6464
<DCC_DcuOutput>.\$(Config)\$(Platform)</DCC_DcuOutput>
@@ -67,8 +67,7 @@
6767
<DCC_UnitSearchPath>..\Ext\SynEdit\Source;..\Ext\SVGIconImageList\Source;..\Ext\SVGIconImageList\SVG;..\Ext\VCLStyleUtils\Common;..\Ext\VCLStyleUtils\DDetours\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
6868
<DCC_ExeOutput>..\Bin64</DCC_ExeOutput>
6969
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
70-
<VerInfo_MinorVer>2</VerInfo_MinorVer>
71-
<VerInfo_Release>3</VerInfo_Release>
70+
<VerInfo_MinorVer>3</VerInfo_MinorVer>
7271
</PropertyGroup>
7372
<PropertyGroup Condition="'$(Base_Win32)'!=''">
7473
<Debugger_HostApplication>D:\ETHEA\SVGShellExtensions\Debug\Preview Handlers\OpenDialog\OpenDialogTest.exe</Debugger_HostApplication>
@@ -200,6 +199,11 @@
200199
</Parameters>
201200
<Excluded_Packages>
202201
<Excluded_Packages Name="$(BDSBIN)\dclofficexp270.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
202+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISReportBuilder6_D10_4.bpl">Ethea InstantSolutions 6 ReportBuilder Components</Excluded_Packages>
203+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISRtl6D10_4.bpl">Ethea InstantSolutions 6 Rtl Library</Excluded_Packages>
204+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISVcl6_D10_4.bpl">Ethea InstantSolutions 6 Vcl Library</Excluded_Packages>
205+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISOpenOffice6_D10_4.bpl">Ethea InstantSolutions 6 LibreOffice/OpenOffice Components</Excluded_Packages>
206+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISFLib6_D10_4.bpl">Ethea InstantSolutions 6 Framework Library</Excluded_Packages>
203207
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k270.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
204208
</Excluded_Packages>
205209
</Delphi.Personality>

Source/SVGShellExtensions.res

0 Bytes
Binary file not shown.

Source/SVGShellExtensions32.dproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
33
<ProjectGuid>{94AA5932-5147-49A9-8E4A-F04C36007B1C}</ProjectGuid>
4-
<Config Condition="'$(Config)'==''">Release</Config>
4+
<Config Condition="'$(Config)'==''">Debug</Config>
55
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
66
<ProjectVersion>19.2</ProjectVersion>
77
<FrameworkType>VCL</FrameworkType>
@@ -58,7 +58,7 @@
5858
<Icon_MainIcon>..\Icons\logo.ico</Icon_MainIcon>
5959
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
6060
<VerInfo_Locale>1033</VerInfo_Locale>
61-
<VerInfo_Keys>CompanyName=Ethea S.r.l.;FileDescription=SVG Shell Extensions 32bit;FileVersion=1.2.3.0;InternalName=;LegalCopyright=Copyright © 2021 Ethea S.r.l.;LegalTrademarks=;OriginalFilename=;ProductName=SVG Shell Extensions 32bit;ProductVersion=1.2;Comments=</VerInfo_Keys>
61+
<VerInfo_Keys>CompanyName=Ethea S.r.l.;FileDescription=SVG Shell Extensions 32bit;FileVersion=1.3.0.0;InternalName=;LegalCopyright=Copyright © 2021 Ethea S.r.l.;LegalTrademarks=;OriginalFilename=;ProductName=SVG Shell Extensions 32bit;ProductVersion=1.3;Comments=</VerInfo_Keys>
6262
<Custom_Styles>Glow|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Glow.vsf;Sky|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Sky.vsf;Windows10|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10.vsf;&quot;Windows10 Dark|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Dark.vsf&quot;;&quot;Windows10 SlateGray|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10SlateGray.vsf&quot;;&quot;Flat UI Light|VCLSTYLE|$(BDSCOMMONDIR)\Styles\FlatUILight.vsf&quot;;&quot;Windows10 BlackPearl|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlackPearl.vsf&quot;;&quot;Windows10 Blue Whale|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhale.vsf&quot;;&quot;Windows10 Blue Whale LE|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10BlueWhaleLE.vsf&quot;;&quot;Windows10 Clear Day|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10ClearDay.vsf&quot;;&quot;Windows10 Malibu|VCLSTYLE|$(BDSCOMMONDIR)\Styles\Windows10Malibu.vsf&quot;</Custom_Styles>
6363
<DCC_UsePackage>rtl;vcl;vclx;vclactnband;xmlrtl;VclSmp;vclimg;svnui;svn;bdertl;TeeUI;TeeDB;Tee;vcldb;dbrtl;vcldbx;vcltouch;dsnap;dsnapcon;vclib;ibxpress;adortl;IndyCore;IndySystem;IndyProtocols;inet;intrawebdb_110_150;Intraweb_110_150;vclie;websnap;webdsnap;inetdb;inetdbbde;inetdbxpress;soaprtl;vclribbon;dbexpress;DbxCommonDriver;DataSnapIndy10ServerTransport;DataSnapProviderClient;DbxClientDriver;DataSnapClient;dbxcds;DataSnapServer;AzureCloud;DBXInterBaseDriver;DBXMySQLDriver;DBXFirebirdDriver;DBXSybaseASEDriver;DBXSybaseASADriver;DBXOracleDriver;DBXMSSQLDriver;DBXInformixDriver;DBXDb2Driver;Hydra_Core_D15;SynEdit_RXE;mbColorLibDXE;JclDeveloperTools;Jcl;JclVcl;JclContainers;JvCore;JvSystem;JvStdCtrls;JvAppFrm;JvBands;JvDB;JvDlgs;JvBDE;JvControls;JvCmp;JvCrypt;JvCustom;JvDocking;JvDotNetCtrls;JvGlobus;JvHMI;JvJans;JvManagedThreads;JvMM;JvNet;JvPageComps;JvPascalInterpreter;JvPluginSystem;JvPrintPreview;JvRuntimeDesign;JvTimeFramework;JvWizards;JvXPCtrls;WinSkinDXE;bsfd2011;IceTabSet;$(DCC_UsePackage)</DCC_UsePackage>
6464
<DCC_DcuOutput>.\$(Config)\$(Platform)</DCC_DcuOutput>
@@ -67,8 +67,7 @@
6767
<DCC_UnitSearchPath>..\Ext\SynEdit\Source;..\Ext\SVGIconImageList\Source;..\Ext\SVGIconImageList\SVG;..\Ext\VCLStyleUtils\Common;..\Ext\VCLStyleUtils\DDetours\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
6868
<DCC_ExeOutput>..\Bin32</DCC_ExeOutput>
6969
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
70-
<VerInfo_MinorVer>2</VerInfo_MinorVer>
71-
<VerInfo_Release>3</VerInfo_Release>
70+
<VerInfo_MinorVer>3</VerInfo_MinorVer>
7271
</PropertyGroup>
7372
<PropertyGroup Condition="'$(Base_Win32)'!=''">
7473
<Debugger_HostApplication>D:\ETHEA\SVGShellExtensions\Debug\Preview Handlers\OpenDialog\OpenDialogTest.exe</Debugger_HostApplication>
@@ -95,6 +94,7 @@
9594
<Debugger_CWD>c:\Windows\SysWoW64</Debugger_CWD>
9695
<DCC_RemoteDebug>false</DCC_RemoteDebug>
9796
<Debugger_RunParams>D:\ETHEA\SVGShellExtensions\SVGShellExtensions.dll</Debugger_RunParams>
97+
<Debugger_HostApplication>D:\ETHEA\SVGShellExtensions\Debug\Preview Handlers\PreviewHandler Host\Bin\PreviewHost.exe</Debugger_HostApplication>
9898
</PropertyGroup>
9999
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
100100
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
@@ -107,7 +107,7 @@
107107
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
108108
<DCC_MapFile>3</DCC_MapFile>
109109
<DCC_LocalDebugSymbols>true</DCC_LocalDebugSymbols>
110-
<Debugger_HostApplication>D:\ETHEA\SVGShellExtensions\Debug\Preview Handlers\OpenDialog\OpenDialogTest.exe</Debugger_HostApplication>
110+
<Debugger_HostApplication>D:\ETHEA\SVGShellExtensions\Debug\Preview Handlers\PreviewHandler Host\Bin\PreviewHost.exe</Debugger_HostApplication>
111111
</PropertyGroup>
112112
<ItemGroup>
113113
<DelphiCompile Include="$(MainSource)">
@@ -200,6 +200,11 @@
200200
</Parameters>
201201
<Excluded_Packages>
202202
<Excluded_Packages Name="$(BDSBIN)\dclofficexp270.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
203+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISReportBuilder6_D10_4.bpl">Ethea InstantSolutions 6 ReportBuilder Components</Excluded_Packages>
204+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISRtl6D10_4.bpl">Ethea InstantSolutions 6 Rtl Library</Excluded_Packages>
205+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISVcl6_D10_4.bpl">Ethea InstantSolutions 6 Vcl Library</Excluded_Packages>
206+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISOpenOffice6_D10_4.bpl">Ethea InstantSolutions 6 LibreOffice/OpenOffice Components</Excluded_Packages>
207+
<Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\21.0\Bpl\dclISFLib6_D10_4.bpl">Ethea InstantSolutions 6 Framework Library</Excluded_Packages>
203208
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k270.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
204209
</Excluded_Packages>
205210
</Delphi.Personality>

0 commit comments

Comments
 (0)