-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCHANGELOG
60 lines (60 loc) · 5.19 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[Version] [DateTime]Date Author Comments
--------- -------------- ------ --------
0.0.10 2018-05-03 Ronald Bode First design
0.0.20 2018-05-09 Ronald Bode Pester ready version
0.0.21 2018-05-09 Ronald Bode removed support for String[] types, like: {One, Two}, in string mode --> use expression mode
0.0.22 2018-05-24 Ronald Bode Better "right aligned" definition
0.0.23 2018-05-25 Ronald Bode Resolved single column bug
0.0.24 2018-05-26 Ronald Bode Treating markdown table input as an option
0.0.25 2018-05-27 Ronald Bode Resolved error due to blank top lines
0.0.26 2018-05-27 Ronald Bode Fixed: line not displayed in error message
0.0.30 2018-05-31 Ronald Bode Complement equally aligned columns
0.0.31 2018-05-31 Ronald Bode Outside fields no longer return null but an empty string (same appearance)
0.0.32 2018-05-31 Ronald Bode Nameless type columns will get the name of the type
0.0.33 2018-06-03 Ronald Bode Prevent error when casting strings with embedded quotes
0.0.40 2018-06-09 Ronald Bode Optimized code
0.0.41 2018-07-06 Ronald Bode Resolved justified alignment bug
0.0.42 2018-07-11 Ronald Bode Retain the original property order
0.0.43 2018-08-05 Ronald Bode Liberated from Invoke-Expression
0.0.44 2018-09-12 Ronald Bode Fixed Trim error in PSv2 when the script is invoked a second time
0.0.50 2018-10-25 Ronald Bode Fixed Table Columns Being Truncated
0.1.0 2018-10-31 Ronald Bode Improved algorithms
0.1.1 2018-11-13 Ronald Bode Added -Ruler parameter to add alignment info
0.1.2 2018-11-14 Ronald Bode Added -Header parameter to add header info
0.1.3 2018-11-15 Ronald Bode Added -Literal parameter to prevent any evaluation
0.1.4 2018-11-15 Ronald Bode A manual supplied ruler (-Ruler <string>) suppresses all embedded rulers
0.1.5 2018-11-16 Ronald Bode Improved performance avoiding regex MaskString
0.1.6 2018-11-16 Ronald Bode Depleted PSCustomObject alias 'O' and DateTime alias 'D' wrappers
0.2.0 2018-11-18 Ronald Bode Shortened example
0.2.1 2018-11-28 Ronald Bode Corrected -Ruler and -Markdown PSBoundParameters check
0.2.2 2019-02-06 Ronald Bode Compliant with StrictMode -Version 2
0.2.3 2019-03-13 Ronald Bode Resolved (Slice) bug: single width column at position 0, results in empty name
0.2.4 2019-05-01 Ronald Bode Separate data provided via the pipeline from an array provided through a parameter
0.2.5 2019-05-03 Ronald Bode Added -Floating feature
0.2.6 2019-07-05 Ronald Bode Fixed issue with here table without ruler with spaces in header
0.2.7 2019-07-05 Ronald Bode Fixed bug were the last line contains white spaces and data is floating
0.2.8 2019-07-19 Ronald Bode Fixed issue were a markdown table has no outer borders
0.2.9 2019-07-20 Ronald Bode Changed error handling
0.3.2 2019-10-04 Ronald Bode Renamed -HorizontalRuler parameter to -HorizontalDash (alias HDash)
Renamed -VerticalRuler parameter to -VerticalDash (alias VDash)
Depleted -Markdown parameter (use -VerticalDash parameters instead)
Depleted -Floating parameter (use -VerticalDash/-HorizontalDash parameters instead)
Improved (unstructured) table/data recognition algorithm
Support for delimited (non fixed width) CSV files (no support for quoted data)
0.3.3 2019-10-04 Ronald Bode Minor help correction
0.3.4 2019-10-04 Ronald Bode Trimming (string) values in distorted rows
0.3.5 2019-10-04 Ronald Bode Added -Junction parameter (default: "+") for tables with ruler junction characters
0.3.6 2019-10-04 Ronald Bode Added -Anchor parameter (default: ":") for tables with alignment anchors
0.3.7 2020-01-02 Ronald Bode Using the first occurrence of a column in case of a duplicate column name
0.3.8 2020-01-20 Ronald Bode Connect (rulerless) single spaced headers where either column is empty
0.3.9 2020-03-27 Ronald Bode In -Literal mode type syntax (e.g. [Int]5) are left untouched
0.3.10 2020-03-27 Ronald Bode Remove preceding empty lines from -Ruler (no here string required)
0.3.11 2020-03-27 Ronald Bode Added -Omit parameter (Each omitted character will be replaced with a space)
0.3.12 2020-07-23 Ronald Bode Fixed bug #2 catch (unaligned) floating data
0.3.13 2020-07-29 Ronald Bode Minor code improvements
0.3.14 2020-07-30 Ronald Bode Reformatted code (using https://github.com/DTW-DanWard/PowerShell-Beautifier)
0.3.15 2020-10-08 Ronald Bode Compliant with Set-StrictMode -Version 3
0.4.0 2021-09-09 Ronald Bode Function file: No dot-sourcing required, just: .\ConvertFrom-SourceTable.ps1 $Table
0.4.1 2023-02-01 Ronald Bode Updated inline help for: Get-MarkdownHelp
0.5.0 2023-02-06 Ronald Bode Implemented #7 -ParseRightAligned option (break change)
0.5.1 2024-10-30 Ronald Bode Implemented #9 Suppress columns with empty -Header name