|
1 | 1 | @{ |
2 | 2 | ModuleToProcess = 'EZOut.psm1' |
3 | | - ModuleVersion = '1.9.5' |
| 3 | + ModuleVersion = '1.9.6' |
4 | 4 | GUID = 'cef786f0-8a0b-4a5d-a2c6-b433095354cd' |
5 | 5 | Author = 'James Brundage' |
6 | 6 | CompanyName = 'Start-Automating' |
7 | 7 | Copyright = '2011-2022' |
8 | 8 | Description = 'Easily Author Rich Format Files to Customize PowerShell Output' |
9 | 9 | FunctionsToExport = |
10 | | - 'Add-FormatData', 'Clear-FormatData', 'Out-FormatData', 'Remove-FormatData', |
| 10 | + # Core format manipulation functions |
| 11 | + 'Add-FormatData','Clear-FormatData', 'Out-FormatData', 'Remove-FormatData', |
11 | 12 | 'Add-TypeData', 'Clear-TypeData', 'Out-TypeData', 'Remove-TypeData', |
| 13 | + 'Get-FormatFile', 'Find-FormatView', |
| 14 | + # Imports |
12 | 15 | 'Import-FormatView','Import-TypeView', |
13 | | - 'Write-FormatControl','Write-FormatView', |
14 | | - 'Write-FormatCustomView', 'Write-FormatTableView', |
15 | | - 'Write-FormatTreeView','Write-FormatWideView', 'Write-FormatListView', |
| 16 | + # Control authoring |
| 17 | + 'Write-FormatControl', |
| 18 | + # Creation of formatting views: splats to |
| 19 | + 'Write-FormatView', |
| 20 | + 'Write-FormatCustomView', |
| 21 | + 'Write-FormatTableView', |
| 22 | + 'Write-FormatListView', |
| 23 | + # doesn't splat to Write-FormatWideView, because it's not useful |
| 24 | + 'Write-FormatWideView', |
| 25 | + # Write-FormatViewExpression is used in custom actions and controls |
16 | 26 | 'Write-FormatViewExpression', |
17 | | - 'Write-TypeView','ConvertTo-PropertySet','Write-PropertySet', |
18 | | - 'Get-FormatFile', 'Find-FormatView', 'Get-PropertySet', 'Write-EZFormatFile', 'Get-EZOutExtension', |
19 | | - 'Format-Object','Format-RichText', 'Format-Markdown', 'Format-YAML','Format-Heatmap','Format-Hashtable' |
| 27 | + # Write-FormatTreeView is an advanced formatting control |
| 28 | + 'Write-FormatTreeView', |
| 29 | + # Most other advanced format controls are extensions to Format-Object |
| 30 | + 'Format-Object', |
| 31 | + 'Format-Hashtable','Format-Heatmap','Format-JSON', |
| 32 | + 'Format-Markdown', 'Format-RichText','Format-YAML', |
| 33 | + # Don't forget types.ps1xml functions |
| 34 | + 'Write-TypeView', |
| 35 | + 'ConvertTo-PropertySet','Write-PropertySet','Get-PropertySet', |
| 36 | + # or the code generator for .ezout.ps1 files |
| 37 | + 'Write-EZFormatFile', |
| 38 | + # or Get-EZOutExtension |
| 39 | + 'Get-EZOutExtension' |
| 40 | + |
20 | 41 | AliasesToExport = 'Write-CustomAction' |
21 | 42 | FormatsToProcess = 'EZOut.format.ps1xml' |
22 | 43 | PrivateData = @{ |
|
36 | 57 | Markdown = "Format-Markdown" |
37 | 58 | YAML = "Format-YAML" |
38 | 59 | Hashtable = "Format-Hashtable" |
| 60 | + JSON = "Format-JSON" |
39 | 61 | } |
40 | 62 | PSData = @{ |
41 | 63 | ProjectURI = 'https://github.com/StartAutomating/EZOut' |
42 | 64 | LicenseURI = 'https://github.com/StartAutomating/EZOut/blob/master/LICENSE' |
43 | 65 |
|
44 | 66 | Tags = '.ps1xml', 'Format','Output','Types', 'Colorized' |
45 | 67 | ReleaseNotes = @' |
| 68 | +## 1.9.6: |
| 69 | +* Added Format-JSON (Fixes #86) |
| 70 | +* Improved GitHub Action (Fixes #85) |
| 71 | +--- |
| 72 | +
|
46 | 73 | ## 1.9.5: |
47 | 74 | * Write-FormatViewExpression: |
48 | 75 | * Adding -DoubleUnderline |
|
0 commit comments