Skip to content

Commit e583019

Browse files
committed
v2.90 support for Delphi 12
1 parent 0ca5f0f commit e583019

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

Code/DDevExtensions/Bin/Changes.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version: 2.90
2+
=============
3+
- Added: Support for Delphi 12.0
4+
15
Version: 2.89
26
=============
37
- Fixed: Update NativeProgressForm Delphi 11.1 Alexandria

Code/DDevExtensions/Bin/Version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
DDevExtensions Version 2.89
1+
DDevExtensions Version 2.90

Code/DDevExtensions/D_D120/DDevExtensions.dproj

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@
2727
<CfgParent>Base</CfgParent>
2828
<Base>true</Base>
2929
</PropertyGroup>
30+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
31+
<Cfg_1_Win32>true</Cfg_1_Win32>
32+
<CfgParent>Cfg_1</CfgParent>
33+
<Cfg_1>true</Cfg_1>
34+
<Base>true</Base>
35+
</PropertyGroup>
3036
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
3137
<Cfg_2>true</Cfg_2>
3238
<CfgParent>Base</CfgParent>
@@ -69,6 +75,7 @@
6975
$(PreBuildEvent)]]></PreBuildEvent>
7076
<Debugger_LoadAllSymbols>false</Debugger_LoadAllSymbols>
7177
<Debugger_HostApplication>$(BDS)\Bin\bds.exe</Debugger_HostApplication>
78+
<AppDPIAwarenessMode>none</AppDPIAwarenessMode>
7279
</PropertyGroup>
7380
<PropertyGroup Condition="'$(Cfg_1)'!=''">
7481
<Version>7.0</Version>
@@ -82,6 +89,9 @@ $(PreBuildEvent)]]></PreBuildEvent>
8289
<DCC_IncludePath>OldPalette;$(DCC_IncludePath)</DCC_IncludePath>
8390
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
8491
</PropertyGroup>
92+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
93+
<AppDPIAwarenessMode>none</AppDPIAwarenessMode>
94+
</PropertyGroup>
8595
<PropertyGroup Condition="'$(Cfg_2)'!=''">
8696
<DCC_DcuOutput>lib\debug</DCC_DcuOutput>
8797
<MapFile>3</MapFile>
@@ -143,8 +153,8 @@ $(PreBuildEvent)]]></PreBuildEvent>
143153
<Source Name="MainSource">DDevExtensions.dpr</Source>
144154
</Source>
145155
<Excluded_Packages>
146-
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k280.bpl">Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver</Excluded_Packages>
147-
<Excluded_Packages Name="$(BDSBIN)\dclofficexp280.bpl">Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server</Excluded_Packages>
156+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver</Excluded_Packages>
157+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server</Excluded_Packages>
148158
</Excluded_Packages>
149159
</Delphi.Personality>
150160
<ModelSupport>False</ModelSupport>

Code/DDevExtensions/Installer/DDevExtensionsReg.dproj

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
22
<PropertyGroup>
33
<ProjectGuid>{2BAF01A7-5596-444B-89D1-47A1A4550C45}</ProjectGuid>
44
<MainSource>DDevExtensionsReg.dpr</MainSource>
@@ -91,6 +91,8 @@
9191
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
9292
<BT_BuildType>Debug</BT_BuildType>
9393
<Manifest_File>(Ohne)</Manifest_File>
94+
<DCC_MapFile>0</DCC_MapFile>
95+
<AppDPIAwarenessMode>none</AppDPIAwarenessMode>
9496
</PropertyGroup>
9597
<PropertyGroup Condition="'$(Cfg_2)'!=''">
9698
<VerInfo_MinorVer>7</VerInfo_MinorVer>
@@ -159,8 +161,8 @@
159161
<VersionInfoKeys Name="Comments"/>
160162
</VersionInfoKeys>
161163
<Excluded_Packages>
162-
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k270.bpl">Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver</Excluded_Packages>
163-
<Excluded_Packages Name="$(BDSBIN)\dclofficexp270.bpl">Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server</Excluded_Packages>
164+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k290.bpl">Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver</Excluded_Packages>
165+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp290.bpl">Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server</Excluded_Packages>
164166
</Excluded_Packages>
165167
</Delphi.Personality>
166168
<Platforms>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VersionNumber = '2.89';
1+
VersionNumber = '2.90';

Code/DDevExtensions/jedi

Submodule jedi updated 1 file

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ Homepage: https://www.idefixpack.de/ddev
33

44
DDevExtensions adds new features to RAD Studio.
55

6-
Supported Delphi Versions 10.2, 10.3, 10.4, 11.0, 11.1
6+
Supported Delphi Versions 10.2, 10.3, 10.4, 11.x, 12.0
77

88
## Releases Delphi 2009-10.4
99

1010
Until there are new releases the releases are still available at
1111
https://www.idefixpack.de/ddev
1212

13-
## Release Delphi 11.0
13+
## Release Delphi 11.x, 12.0
1414

1515
A precompiled version can be downloaded from the DelphiPraxis fork:
1616
https://github.com/DelphiPraxis/DDevExtensions/releases

0 commit comments

Comments
 (0)