Skip to content

Commit 1b56fcd

Browse files
committed
Merge tag 'version-4.22.0' into develop
Release v4.22.0
2 parents 3e2de9f + 90cc0bb commit 1b56fcd

12 files changed

+23
-12
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ Releases are listed in reverse version number order.
66

77
> Note that _CodeSnip_ v4 was developed in parallel with v3 for a while. As a consequence some v3 releases have later release dates than early v4 releases.
88
9+
## Release v4.22.0 of 08 November 2023
10+
11+
* Added support for test compiling snippets with Delphi 12 Athens [issue #121].
12+
* Documentation changes re addition of support for Delphi 12:
13+
* File format additions for config, export, user database and main database.
14+
* `Docs/ReadMe.txt`.
15+
* Relevant help topics.
16+
* Reversed order in which compilers are listed in the Configure Compilers and Find Compilers dialogue boxes so that the most recent version of Delphi is listed first [issue #51].
17+
* Refactored out all `with` statements from Pascal source code [issue #118].
18+
* Fixed error in `CHANGELOG.md` entry for release v4.21.2 [issue #120].
19+
920
## Release v4.21.2 of 14 July 2023
1021

1122
* Removed broken links and fixed unsafe links in the About box [issue #105].

Docs/Design/FileFormats/config.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
66
* obtain one at https://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2023, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip File Format Documentation: Configuration Files
1111
-->

Docs/Design/FileFormats/export.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
66
* obtain one at https://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2023, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip File Format Documentation: Export
1111
-->

Docs/Design/FileFormats/main-db.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
66
* obtain one at https://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2023, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip File Format Documentation: Main Database
1111
-->

Docs/Design/FileFormats/user-db.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
66
* obtain one at https://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2022, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2023, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip File Format Documentation: User Database
1111
-->

Src/Compilers.UBDS.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-2022, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2006-2023, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Class that controls and provides information about Borland CodeGear and
99
* Embarcadero "BDS" Win32 compilers.

Src/Compilers.UGlobals.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-2022, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2005-2023, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Declares various types that describe the compiler and compilation results and
99
* defines interfaces to compiler objects.

Src/DBIO.UIniDataReader.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-2023, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements code that reads the main CodeSnip database from .ini and .dat
99
* files.

Src/Help/HTML/about_compiler_checks.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) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
7+
* Copyright (C) 2005-2023, Peter Johnson (gravatar.com/delphidabbler).
88
*
99
* Help topic explaining compiler checks.
1010
-->

Src/Help/HTML/dlg_configcompilers.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) 2005-2022, Peter Johnson (gravatar.com/delphidabbler).
7+
* Copyright (C) 2005-2023, Peter Johnson (gravatar.com/delphidabbler).
88
*
99
* Help topic for Configure Compilers dialogue box.
1010
-->

Src/UXMLDocConsts.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) 2008-2021, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2008-2023, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Constants defined node names and attributes used in the various XML documents
99
* used by CodeSnip.

Src/VersionInfo.vi-inc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# CodeSnip Version Information Macros for Including in .vi files
22

33
# Version & build numbers
4-
version=4.21.2
5-
build=269
4+
version=4.22.0
5+
build=270
66

77
# String file information
88
copyright=Copyright © P.D.Johnson, 2005-<YEAR>.

0 commit comments

Comments
 (0)