Skip to content

Commit be50d35

Browse files
committed
* Added RAD Studio 12.0 Athens support.
1 parent 6359731 commit be50d35

File tree

7 files changed

+22
-14
lines changed

7 files changed

+22
-14
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ DITE supports
1212
* Delphi 7.
1313
* RAD Studio 2005-2010
1414
* RAD Studio XE-XE8
15-
* RAD Studio 10 Seattle, RAD Studio 10.1 Berlin, RAD Studio 10.2 Tokyo, RAD Studio 10.3 Rio, RAD Studio 10.4 Sydney, RAD Studio 11 Alexandria
15+
* RAD Studio 10 Seattle, 10.1 Berlin, 10.2 Tokyo, 10.3 Rio, 10.4 Sydney, 11 Alexandria, 12 Athens
1616
* Lazarus v1.0.6
1717
* Appmethod 1.13-1.16
1818
* Smart Mobile Studio IDE v1.1.2.17

delphi-ide-theme-editor/DITE.dproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -131,10 +131,10 @@
131131
<DCC_DebugInformation>true</DCC_DebugInformation>
132132
<DCC_MapFile>3</DCC_MapFile>
133133
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
134-
<VerInfo_MinorVer>97</VerInfo_MinorVer>
134+
<VerInfo_MinorVer>98</VerInfo_MinorVer>
135135
<VerInfo_Build>1</VerInfo_Build>
136136
<DCC_UNIT_PLATFORM>false</DCC_UNIT_PLATFORM>
137-
<VerInfo_Keys>CompanyName=The road to Delphi;FileDescription=Delphi IDE Theme Editor;FileVersion=1.97.1.1;InternalName=DITE;LegalCopyright=RRUZ;LegalTrademarks=;OriginalFilename=;ProductName=Delphi IDE Theme Editor;ProductVersion=1.0.0.0;Comments=That is not dead which can eternal lie.
137+
<VerInfo_Keys>CompanyName=The road to Delphi;FileDescription=Delphi IDE Theme Editor;FileVersion=1.98.1.1;InternalName=DITE;LegalCopyright=RRUZ;LegalTrademarks=;OriginalFilename=;ProductName=Delphi IDE Theme Editor;ProductVersion=1.0.0.0;Comments=That is not dead which can eternal lie.
138138
And with strange aeons even death may die.;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
139139
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
140140
</PropertyGroup>

delphi-ide-theme-editor/DITE.res

0 Bytes
Binary file not shown.

delphi-ide-theme-editor/Units/DITE.DelphiVersions.pas

+15-9
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ interface
4242
Delphi7, Delphi8, Delphi2005, Delphi2006, Delphi2007, Delphi2009, Delphi2010,
4343
DelphiXE, DelphiXE2, DelphiXE3, DelphiXE4, DelphiXE5, Appmethod, DelphiXE6,
4444
DelphiXE7, DelphiXE8, Delphi10Seattle, Delphi10Berlin, Delphi10Tokyo, Delphi10Rio,
45-
Delphi10Sydney, Delphi11Alexandria);
45+
Delphi10Sydney, Delphi11Alexandria, Delphi12Athens);
4646

4747
TDelphiVersionData = Class
4848
private
@@ -103,7 +103,7 @@ interface
103103
'RAD Studio XE6/Appmethod 1.14', 'RAD Studio XE7/Appmethod 1.15',
104104
'RAD Studio XE8', 'RAD Studio 10 Seattle', 'RAD Studio 10.1 Berlin',
105105
'RAD Studio 10.2 Tokyo', 'RAD Studio 10.3 Rio', 'RAD Studio 10.4 Sydney',
106-
'RAD Studio 11.0 Alexandria');
106+
'RAD Studio 11.0 Alexandria', 'RAD Studio 12.0 Athens');
107107

108108
DelphiVersionNumbers: array [TDelphiVersions] of double = (
109109
{$IFDEF DELPHI_OLDER_VERSIONS_SUPPORT}
@@ -131,7 +131,8 @@ interface
131131
32, // 'RAD Studio 10.2 Tokyo'
132132
33, // 'RAD Studio 10.3 Rio'
133133
34, // 'RAD Studio 10.4 Sydney'
134-
35 // 'RAD Studio 11.0 Alexandria'
134+
35, // 'RAD Studio 11.0 Alexandria'
135+
36 // 'RAD Studio 12.0 Athens'
135136
);
136137

137138
DelphiVCLStylesPaths: array [TDelphiVersions] of string = (
@@ -152,7 +153,8 @@ interface
152153
'Embarcadero\Studio\19.0\Styles',
153154
'Embarcadero\Studio\20.0\Styles',
154155
'Embarcadero\Studio\21.0\Styles',
155-
'Embarcadero\Studio\22.0\Styles'
156+
'Embarcadero\Studio\22.0\Styles',
157+
'Embarcadero\Studio\23.0\Styles'
156158
);
157159

158160
procedure FillCurrentDelphiVersion(Data: TDelphiVersionData);
@@ -220,7 +222,8 @@ implementation
220222
'\Software\Embarcadero\BDS\19.0',
221223
'\Software\Embarcadero\BDS\20.0',
222224
'\Software\Embarcadero\BDS\21.0',
223-
'\Software\Embarcadero\BDS\22.0'
225+
'\Software\Embarcadero\BDS\22.0',
226+
'\Software\Embarcadero\BDS\23.0'
224227
);
225228

226229
DelphiCustomRegPaths: array [TDelphiVersions] of string = (
@@ -249,7 +252,8 @@ implementation
249252
'\Software\Embarcadero\%s\19.0', // BDS
250253
'\Software\Embarcadero\%s\20.0', // BDS
251254
'\Software\Embarcadero\%s\21.0', // BDS
252-
'\Software\Embarcadero\%s\22.0' // BDS
255+
'\Software\Embarcadero\%s\22.0', // BDS
256+
'\Software\Embarcadero\%s\23.0' // BDS
253257
);
254258

255259
DelphiRegPathNumbers: array [TDelphiVersions] of Integer = (
@@ -279,7 +283,8 @@ implementation
279283
19, // 'RAD Studio 10.2 Tokyo'
280284
20, // 'RAD Studio 10.3 Rio'
281285
21, // 'RAD Studio 10.4 Sydney'
282-
22 // 'RAD Studio 11.0 Alexandria'
286+
22, // 'RAD Studio 11.0 Alexandria'
287+
23 // 'RAD Studio 12.0 Athens'
283288
);
284289

285290
DelphiCmpnyNames: array [TDelphiVersions] of TDelphiCmpnyName = (
@@ -308,7 +313,8 @@ implementation
308313
Embarcadero, // 'RAD Studio 10.2 Tokyo
309314
Embarcadero, // 'RAD Studio 10.3 Rio
310315
Embarcadero, // 'RAD Studio 10.4 Sydney
311-
Embarcadero // 'RAD Studio 11 Alexandria
316+
Embarcadero, // 'RAD Studio 11 Alexandria
317+
Embarcadero // 'RAD Studio 12 Athens
312318
);
313319

314320
{$IFDEF DELPHI_OLDER_VERSIONS_SUPPORT}
@@ -506,7 +512,7 @@ TBDSKeysItem = record
506512
BDSKeysItems[2].Key := '\Software\CodeGear';
507513

508514
BDSKeysItems[3].MinValue := DelphiRegPathNumbers[DelphiXE];
509-
BDSKeysItems[3].MaxValue := DelphiRegPathNumbers[Delphi11Alexandria];
515+
BDSKeysItems[3].MaxValue := DelphiRegPathNumbers[Delphi12Athens];
510516
BDSKeysItems[3].Company := Embarcadero;
511517
BDSKeysItems[3].Key := '\Software\Embarcadero';
512518

delphi-ide-theme-editor/Units/DITE.HelpInsight.pas

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ interface
5454
'\ObjRepos\en', // 10.2 Tokyo
5555
'\ObjRepos\en', // 10.3 Rio
5656
'\ObjRepos\en', // 10.4 Sydney
57-
'\ObjRepos\en' // 11.0 Alexandria
57+
'\ObjRepos\en', // 11.0 Alexandria
58+
'\ObjRepos\en' // 12.0 Athens
5859
);
5960

6061
procedure ApplyThemeHelpInsight(const ATheme: TIDETheme; IDEData: TDelphiVersionData);

delphi-ide-theme-editor/default/DefaultThemes.RC

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ Delphi10Berlin RCDATA "RAD Studio 10.1 Berlin.reg"
2020
Delphi10Tokyo RCDATA "RAD Studio 10.2 Tokio.reg"
2121
Delphi10Rio RCDATA "RAD Studio 10.3.reg"
2222
Delphi10Sydney RCDATA "RAD Studio 10.4.reg"
23-
Delphi11Alexandria RCDATA "RAD Studio 11.0.reg"
23+
Delphi11Alexandria RCDATA "RAD Studio 11.0.reg"
24+
Delphi12Athens RCDATA "RAD Studio 12.0.reg"
Binary file not shown.

0 commit comments

Comments
 (0)