diff --git a/CompInstall.ini b/CompInstall.ini index 1291538..106fe05 100644 --- a/CompInstall.ini +++ b/CompInstall.ini @@ -3,7 +3,7 @@ IniVersion=2 [General] Name=Digao Dalpiaz - DzHTMLText component -Version=6.6 +Version=6.7 DelphiVersions=XE3;XE4;XE5;XE6;XE7;XE8;10;10.1;10.2;10.3;10.4;11;12 Packages=DzHTMLText_VCL;DzHTMLText_FMX;DzHTMLTextDesign_VCL;DzHTMLTextDesign_FMX AddLibrary=1 diff --git a/README.md b/README.md index cec2996..a2722d6 100644 --- a/README.md +++ b/README.md @@ -38,14 +38,18 @@ ## What's New -- 11/14/2024 (Version 6.6) +- 01/26/2025 (Version 6.7) - - Use GDI painting from Windows API when using VCL + Windows to draw rounded div - - Fix access violation when DPI Scaling in VCL (early access to TForm.Monitor) + - Fixed Lazarus compiling (GDI+ units)
Click here to view the entire changelog +- 11/14/2024 (Version 6.6) + + - Use GDI painting from Windows API when using VCL + Windows to draw rounded div + - Fix access violation when DPI Scaling in VCL (early access to TForm.Monitor) + - 10/14/2024 (Version 6.5) - New Corner Radius ("radius") property for Div tag diff --git a/Source/Defines.inc b/Source/Defines.inc index df31bbf..9fd63ef 100644 --- a/Source/Defines.inc +++ b/Source/Defines.inc @@ -12,7 +12,9 @@ {$DEFINE USE_IMGLST} {$IFDEF MSWINDOWS} - {$DEFINE USE_GDI} + {$IFDEF DCC} + {$DEFINE USE_GDI} + {$ENDIF} {$ENDIF} {$ENDIF} diff --git a/Source/Vcl.DzHTMLText.pas b/Source/Vcl.DzHTMLText.pas index 99e84db..a66730b 100644 --- a/Source/Vcl.DzHTMLText.pas +++ b/Source/Vcl.DzHTMLText.pas @@ -685,7 +685,7 @@ implementation , Winapi.GDIPOBJ, Winapi.GDIPAPI {$ENDIF}; -const STR_VERSION = '6.6'; +const STR_VERSION = '6.7'; const DEFAULT_PPI = 96;