Skip to content

Commit 6dd17a4

Browse files
committed
Merge tag 'version-4.20.0' into develop
2 parents 74c1ad4 + 901cc76 commit 6dd17a4

12 files changed

+31
-15
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,22 @@ This change log begins with the first ever pre-release version of _CodeSnip_. Re
1010
1111
From v4.1.0 the version numbering has attempted to adhere to the principles of [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1212

13+
## Release v4.20.0 of 15 May 2022
14+
15+
* Added an option to delete the user defined database.
16+
* Fixed bug that enabled the user to attempt to move, or back up, the user database when it doesn't exist. These options are now disabled when there is no user database.
17+
* Added facility to customise the size of font used in the details pane for all items except the source code font (which could already be modified separately). A new preference was added to the Display pane of the Preferences dialogue box to be used to set the font size.
18+
* Rearranged the controls on the Preferences dialogue box's Display pane.
19+
* Changed the default font used for the overview pane from a fixed value to the default size for the underlying operating system.
20+
* Changed the description of "Delphi 11 Alexandria" to "Delphi 11.x Alexandria" to reflect the fact the Delphi 11 updates have different minor version numbers, but can't be installed alongside each other.
21+
* Widened the compiler list box in the Configure Compilers dialogue box to accommodate the longer name used for Delphi 11.x compilers.
22+
* Refactored some font handling code.
23+
* Operating system detection code was updated to (a) fix some bugs and (b) detect some Dev channel builds of Windows 11.
24+
* Bumped the version of the per-user config file to 18 following the addition of a new preference.
25+
* Help file updated re the changes in this release.
26+
* Documentation updated to reflect changes in this release.
27+
* Updated `README.md` and `Build.html`
28+
1329
## Release v4.19.0 of 31 December 2021
1430

1531
* Improved user-friendliness of Preferences dialogue box:

Src/FrDetailView.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements a frame that can display detailed views.
99
}

Src/FrDisplayPrefs.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2012-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements a frame that allows user to set application display preferences.
99

Src/Help/CodeSnip.hhp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; v. 2.0. If a copy of the MPL was not distributed with this file, You can
33
; obtain one at https://mozilla.org/MPL/2.0/
44
;
5-
; Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
5+
; Copyright (C) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
66
;
77
; CodeSnip help project file.
88

Src/Help/HTML/dlg_prefs_display.htm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
55
* obtain one at https://mozilla.org/MPL/2.0/
66
*
7-
* Copyright (C) 2012-2021, Peter Johnson (gravatar.com/delphidabbler).
7+
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
88
*
99
* Help topic for Display page of Preferences dialogue box.
1010
-->

Src/Help/Index.hhk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
55
* obtain one at https://mozilla.org/MPL/2.0/
66
*
7-
* Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
7+
* Copyright (C) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
88
*
99
* CodeSnip help index file.
1010
-->

Src/Help/TOC.hhc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
55
* obtain one at https://mozilla.org/MPL/2.0/
66
*
7-
* Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
7+
* Copyright (C) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
88
*
99
* CodeSnip help table of contents file.
1010
-->

Src/Hiliter.UAttrs.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements classes that define syntax highlighter attributes along with an
99
* object that provides a list of named highlighter attributes.

Src/UFontHelper.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2006-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2006-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements a static class used to assist when working with fonts.
99
}

Src/UPreferences.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
44
* obtain one at https://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2006-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2006-2022, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements a singletion object that exposes and persists user preferences.
99
}

Src/VCodeSnip.vi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
; v. 2.0. If a copy of the MPL was not distributed with this file, You can
33
; obtain one at https://mozilla.org/MPL/2.0/
44
;
5-
; Copyright (C) 2008-2021, Peter Johnson (gravatar.com/delphidabbler).
5+
; Copyright (C) 2008-2022, Peter Johnson (gravatar.com/delphidabbler).
66
;
77
; Version information description file for CodeSnip.
88

99

1010
[Fixed File Info]
11-
File Version #=4, 19, 0, 263
12-
Product Version #=4, 19, 0, 0
11+
File Version #=4, 20, 0, 264
12+
Product Version #=4, 20, 0, 0
1313
File OS=4
1414
File Type=1
1515
File Sub-Type=0

Src/VCodeSnipPortable.vi

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
; v. 2.0. If a copy of the MPL was not distributed with this file, You can
33
; obtain one at https://mozilla.org/MPL/2.0/
44
;
5-
; Copyright (C) 2012-2021, Peter Johnson (gravatar.com/delphidabbler).
5+
; Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
66
;
77
; Version information description file for the portable edition of CodeSnip
88

99

1010
[Fixed File Info]
11-
File Version #=4, 19, 0, 263
12-
Product Version #=4, 19, 0, 0
11+
File Version #=4, 20, 0, 264
12+
Product Version #=4, 20, 0, 0
1313
File OS=4
1414
File Type=1
1515
File Sub-Type=0

0 commit comments

Comments
 (0)