Skip to content

Commit 63c3330

Browse files
version 4.6.2
- Fixed Component Editor for older Delphi versions
1 parent c05f8bf commit 63c3330

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

Packages/SVGIconImageListEditorUnit.dfm

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,6 @@ object SVGIconImageListEditor: TSVGIconImageListEditor
611611
ParentCtl3D = False
612612
TabOrder = 1
613613
StyleElements = [seFont, seBorder]
614-
ExplicitTop = 3
615614
object IconImage: TSVGIconImage
616615
AlignWithMargins = True
617616
Left = 2
@@ -637,8 +636,6 @@ object SVGIconImageListEditor: TSVGIconImageListEditor
637636
Position = 128
638637
PositionToolTip = ptBottom
639638
TabOrder = 0
640-
OnTracking = BackgroundTrackBarTracking
641-
ExplicitLeft = 4
642639
end
643640
end
644641
object NameEdit: TEdit

README.htm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</style>
3232
<h1>SVGIconImageList <a href="https://opensource.org/licenses/Apache-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg" alt="License"/></a></h1>
3333
<h2>Four engines to render SVG (Delphi Image32, SVGMagic, Skia4Delphi, Direct2D wrapper) and four components to simplify use of SVG images (resize, fixedcolor, grayscale&hellip;)</h2>
34-
<h3>Actual official version 4.6.1 (VCL+FMX)</h3>
34+
<h3>Actual official version 4.6.2 (VCL+FMX)</h3>
3535
<table>
3636
<tr>
3737
<th>Component</th>
@@ -156,6 +156,10 @@ <h3>Available from Delphi XE3 to Delphi 13 (VCL and FMX Platforms)</h3>
156156
<p><img src="./Demo/Images/SupportingDelphi.jpg" alt="Delphi 13 Support"/></p>
157157
<p>Related links: <a href="https://www.embarcadero.com">embarcadero.com</a> - <a href="https://learndelphi.org">learndelphi.org</a></p>
158158
<h3>RELEASE NOTES</h3>
159+
<p>28 Nov 2025 - version 4.6.2</p>
160+
<ul>
161+
<li>Fixed Component Editor for older Delphi versions</li>
162+
</ul>
159163
<p>28 Nov 2025 - version 4.6.1</p>
160164
<ul>
161165
<li>Added SkiaSVGUtils.pas to fix Skia rendering</li>

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Four engines to render SVG (Delphi Image32, SVGMagic, Skia4Delphi, Direct2D wrapper) and four components to simplify use of SVG images (resize, fixedcolor, grayscale...)
44

5-
### Actual official version 4.6.1 (VCL+FMX)
5+
### Actual official version 4.6.2 (VCL+FMX)
66

77
| Component | Description |
88
| - | - |
@@ -138,6 +138,9 @@ A similar project made by Ethea for Icon Fonts: [https://github.com/EtheaDev/Ico
138138
Related links: [embarcadero.com](https://www.embarcadero.com) - [learndelphi.org](https://learndelphi.org)
139139

140140
### RELEASE NOTES
141+
29 Nov 2025 - version 4.6.2
142+
- Fixed Component Editor for older Delphi versions
143+
141144
28 Nov 2025 - version 4.6.1
142145
- Added SkiaSVGUtils.pas to fix Skia rendering
143146
- Fixed Range Check error for SVGMagic engine

Source/FMX.SVGIconImageList.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ interface
4747
;
4848

4949
const
50-
SVGIconImageListVersion = '4.6.1';
50+
SVGIconImageListVersion = '4.6.2';
5151
DEFAULT_SIZE = 32;
5252
ZOOM_DEFAULT = 100;
5353
SVG_INHERIT_COLOR = TAlphaColors.Null;

Source/SVGIconImageListBase.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ interface
4949
/// <summary>
5050
/// Current version of the SVGIconImageList library.
5151
/// </summary>
52-
SVGIconImageListVersion = '4.6.1';
52+
SVGIconImageListVersion = '4.6.2';
5353

5454
/// <summary>
5555
/// Default size (width and height) for icons in pixels.

0 commit comments

Comments
 (0)