Skip to content

Commit e776432

Browse files
committed
Fix errors in advanced testing keys
Erroneous and corrupt values of several AdvancedTest.Level keys in maths.ini were corrected. Invalid URLs in AdvancedTest.URL keys in data.ini and hex.ini were corrected. Fixes #29
1 parent d7290a7 commit e776432

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ From v2.0.0 all notable changes to this project will be documented in this file.
88
99
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010

11+
## v2.2.1 of 2024/12/02 (HOTFIX)
12+
13+
* Fixed bug in `maths.ini` where some `AdvancedTest.Level` keys had invalid, corrupt, values. Fixes issue [#29](https://github.com/delphidabbler/code-snippets/issues/29).
14+
1115
## v2.2.0 of 2024/10/15
1216

1317
* Updated collection specification:

collection/date.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ SeeAlso=DateMonth,DateMonthStart,DaysInMonth
110110
Depends=DaysInMonth
111111
TestInfo=advanced
112112
AdvancedTest.Level=unit-tests
113-
AdvancedTest.URL="github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Date"
113+
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Date"
114114
Snip=441.dat
115115
Delphi2=Y
116116
Delphi3=Y

collection/hex.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ SeeAlso=BytesToHex,ByteToHex,LongWordToHex,QuadWordToHex,WordToHex
3939
TestInfo=advanced
4040
TestInfo=advanced
4141
AdvancedTest.Level=unit-tests
42-
AdvancedTest.URL="github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Hex"
42+
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Hex"
4343
Snip=312.dat
4444
Delphi2=Y
4545
Delphi3=Y

collection/maths.ini

+4-4
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ DisplayName="MinOfArray (Int64 overload)"
12591259
DescEx="<p>Returns the minimum value contained in the given array of 64 bit integer values.</p><p>The array must not be empty.</p>"
12601260
SeeAlso=MaxOfArray_Int64,MinOfArray_Double,MinOfArray_Extended,MinOfArray_Integer,MinOfArray_Single,Mid_Int64,MinMidMax_Int64
12611261
TestInfo=advanced
1262-
AdvancedTest.Level=unit-testser]
1262+
AdvancedTest.Level=unit-tests
12631263
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Maths"
12641264
Snip=435.dat
12651265
Delphi2=N
@@ -1311,7 +1311,7 @@ DisplayName="MinOfArray (Single overload)"
13111311
DescEx="<p>Returns the minimum value contained in the given array of single precision floating point values.</p><p>The array must not be empty.</p>"
13121312
SeeAlso=MaxOfArray_Single,MinOfArray_Double,MinOfArray_Extended,MinOfArray_Int64,MinOfArray_Integer,Mid_Single,MinMidMax_Single
13131313
TestInfo=advanced
1314-
AdvancedTest.Level=unit-testsoStr,FractionToStrEx
1314+
AdvancedTest.Level=unit-tests
13151315
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Maths"
13161316
Snip=437.dat
13171317
Delphi2=N
@@ -1448,7 +1448,7 @@ DescEx="<p>Resizes rectangle <var>R</var> to the width and height given by <var>
14481448
Units=Types
14491449
SeeAlso=ResizeRect_A,StretchRect_A,StretchRect_B,ScaleRect,ZoomRatio_A,ZoomRatio_B,ZoomRatio_C
14501450
TestInfo=advanced
1451-
AdvancedTest.Level=unit-testsmber
1451+
AdvancedTest.Level=unit-tests
14521452
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Maths"
14531453
Snip=419.dat
14541454
Delphi2=N
@@ -1558,7 +1558,7 @@ DescEx="<p>Stretches rectangle <var>R</var> by the given scaling factors and ret
15581558
Units=SysUtils,Types
15591559
SeeAlso=StretchRect_B,ScaleRect,ResizeRect_A,ResizeRect_B,ZoomRatio_A,ZoomRatio_B,ZoomRatio_C
15601560
TestInfo=advanced
1561-
AdvancedTest.Level=unit
1561+
AdvancedTest.Level=unit-tests
15621562
AdvancedTest.URL="https://github.com/delphidabbler/code-snippets/tree/master/tests/Cat-Maths"
15631563
Snip=421.dat
15641564
Delphi2=N

0 commit comments

Comments
 (0)