Skip to content

Commit eedf262

Browse files
author
cahamo
committed
Merge tag 'version-4.18.0' into develop
Release v4.18.0
2 parents 8df6732 + e6c17d9 commit eedf262

16 files changed

+31
-21
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,16 @@ This change log begins with the first ever pre-release version of _CodeSnip_. Re
1212
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).
1313

1414

15+
## Release v4.18.0 of 13 September 2021
16+
17+
* Added support for test compilation with, and detection of, Delphi 11 Alexandria.
18+
* Updated various dialogue boxes to widen lists of compilers to accommodate length of new compiler name.
19+
* Operating system detection code was updated to correctly detect Windows 10 version 20H2.
20+
* Updated documentation re changes.
21+
* Updated help file re changes.
22+
* Minor documentation corrections.
23+
24+
1525
## Release v4.17.2 of 12 September 2020
1626

1727
Hotfix release.

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 http://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2020, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2021, 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 http://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2020, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2021, 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 http://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2020, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2021, 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 http://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2020, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2021, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip File Format Documentation: User Database
1111
-->

Docs/License.html

Lines changed: 3 additions & 3 deletions
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 http://mozilla.org/MPL/2.0/
77
*
8-
* Copyright (C) 2012-2020, Peter Johnson (gravatar.com/delphidabbler).
8+
* Copyright (C) 2012-2021, Peter Johnson (gravatar.com/delphidabbler).
99
*
1010
* CodeSnip license.
1111
-->
@@ -225,7 +225,7 @@ <h2>
225225
Executable Program
226226
</h2>
227227
<p>
228-
DelphiDabbler <em>CodeSnip</em> is copyright &copy; 2005-2020 by <a
228+
DelphiDabbler <em>CodeSnip</em> is copyright &copy; 2005-2021 by <a
229229
href="https://gravatar.com/delphidabbler"
230230
>Peter D Johnson</a>.
231231
</p>
@@ -335,7 +335,7 @@ <h2>
335335
<div>
336336
This condition applies to all files in the
337337
<kbd>Src/Res/Img/Branding</kbd> directory, all of which are original
338-
work copyright &copy; 2012-2020 by <a
338+
work copyright &copy; 2012-2021 by <a
339339
href="https://gravatar.com/delphidabbler"
340340
>Peter D Johnson</a>.
341341
</div>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A code bank designed with Pascal in mind.
1212

1313
## Overview
1414

15-
CodeSnip is an open source code bank for storing and viewing your code snippets. While it can manage snippets in any source language, it is focussed mainly on Pascal and Delphi code for which additional features are available.
15+
CodeSnip is an open source code bank for storing and viewing your code snippets. While it can manage snippets in any source language, it is focused mainly on Pascal and Delphi code for which additional features are available.
1616

1717
CodeSnip can import code from the DelphiDabbler [Code Snippets Database](https://github.com/delphidabbler/code-snippets).
1818

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 http://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2006-2020, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2006-2021, 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 http://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2005-2020, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2005-2021, 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 http://mozilla.org/MPL/2.0/
55
*
6-
* Copyright (C) 2005-2020, Peter Johnson (gravatar.com/delphidabbler).
6+
* Copyright (C) 2005-2021, Peter Johnson (gravatar.com/delphidabbler).
77
*
88
* Implements code that reads the main CodeSnip database from .ini and .dat
99
* files.

0 commit comments

Comments
 (0)