Skip to content

Commit 2ca5aaf

Browse files
ver.3.0.0
- Fixed Scrollbar colors viewing text in preview - Fixed "empty panel" viewing text in preview - Fixed "context-menu" for export to PNG (image lost)
1 parent 929dd72 commit 2ca5aaf

21 files changed

+28
-28
lines changed

Ext/SVGIconImageList/Source/dlgExportPNG.dfm

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ object ExportToPNGDialog: TExportToPNGDialog
22
Left = 132
33
Top = 168
44
BorderStyle = bsDialog
5-
Caption = 'Export SVG to PNG files'
5+
Caption = 'Export SVG icon to PNG files'
66
ClientHeight = 279
77
ClientWidth = 454
88
Color = clBtnFace
@@ -11,11 +11,9 @@ object ExportToPNGDialog: TExportToPNGDialog
1111
Font.Height = -11
1212
Font.Name = 'Segoe UI'
1313
Font.Style = []
14-
OldCreateOrder = False
1514
Position = poMainFormCenter
1615
OnClose = FormClose
1716
OnShow = FormShow
18-
PixelsPerInch = 96
1917
TextHeight = 13
2018
object OutputFileNameLabel: TLabel
2119
Left = 247

Images/SettingsFont.png

-6.48 KB
Loading

Images/SettingsPreview.png

-8.73 KB
Loading

Images/SettingsTextColors.png

-15.9 KB
Loading

Images/SettingsTheme.png

-11.8 KB
Loading

Images/Setup.png

714 Bytes
Loading

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SVG Shell Extensions [![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](https://opensource.org/licenses/Apache-2.0)
22

3-
**Latest Version 2.9.0 - 18 Sep 2022**
3+
**Latest Version 3.0.0 - 24 Sep 2022**
44

55
**A collection of extensions tools for SVG files, integrated into Microsoft Windows Explorer (Vista, 7, 8, 10 and 11):**
66

@@ -74,11 +74,16 @@ To manually install the SVGShellExtensions.dll follow these steps:
7474

7575
## Release Notes ##
7676

77-
18 Set 2022: ver. 2.9.0
77+
24 Sep 2022: ver. 3.0.0
78+
- Fixed Scrollbar colors viewing text in preview
79+
- Fixed "empty panel" viewing text in preview
80+
- Fixed "context-menu" for export to PNG (image lost)
81+
82+
18 Sep 2022: ver. 2.9.0
7883
- Fixed Preview size in multi-monitor
7984
- Fixed flickering of Preview
8085

81-
13 Set 2022: ver. 2.8.0
86+
13 Sep 2022: ver. 2.8.0
8287
- Fixed load file with blanks in content menu
8388
- Built with Delphi 11.2
8489

-1.31 KB
Binary file not shown.

Setup/SVGShellExtensions.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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 '2.9.0'
4+
#define MyAppVersion '3.0.0'
55

66
[Setup]
77
AppName={#MyAppName}

Source/PreviewForm.dfm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ inherited FrmPreview: TFrmPreview
77
Font.Name = 'Segoe UI'
88
OnAfterMonitorDpiChanged = FormAfterMonitorDpiChanged
99
OnResize = FormResize
10-
ExplicitWidth = 629
11-
ExplicitHeight = 655
10+
ExplicitWidth = 633
11+
ExplicitHeight = 656
1212
TextHeight = 13
1313
object Splitter: TSplitter
1414
Left = 0
@@ -122,7 +122,7 @@ inherited FrmPreview: TFrmPreview
122122
OnMouseEnter = ToolButtonMouseEnter
123123
OnMouseLeave = ToolButtonMouseLeave
124124
end
125-
object ToolButtonZommOut: TToolButton
125+
object ToolButtonZoomOut: TToolButton
126126
Left = 183
127127
Top = 0
128128
Cursor = crHandPoint
@@ -132,7 +132,7 @@ inherited FrmPreview: TFrmPreview
132132
ImageIndex = 7
133133
ImageName = 'minus'
134134
Visible = False
135-
OnClick = ToolButtonZommOutClick
135+
OnClick = ToolButtonZoomOutClick
136136
OnMouseEnter = ToolButtonMouseEnter
137137
OnMouseLeave = ToolButtonMouseLeave
138138
end

0 commit comments

Comments
 (0)