Releases: EvotecIT/PSWriteHTML
Releases · EvotecIT/PSWriteHTML
v1.30.0
What's Changed
- Fixes usage of FontsAwesome in New-HTMLInfoCard by @PrzemyslawKlys in #494
Full Changelog: v1.29.0...v1.30.0
v1.29.0
What's Changed
- Add new features by @PrzemyslawKlys in #493
- Adds
New-HTMLDate - Adds
New-HTMLInfoCard - Add
Densityparameter forNew-HTMLSection,New-HTMLPanelandNew-HTMLContainer - Some other fixes and improvements
Full Changelog: v1.28.0...v1.29.0
v1.28.0
What's Changed
- fixed Get-HTMLLogos missing
$LogoPathby @Binomimus in #466 - Improve Get-ImageFile to not throw errors when having issues with internet connection
- Improves
New-HTMLSectionScrollingandNew-HTMLSectionScrollingItemto allow for nesting - Improve
New-HTMLTableTranspose to process it a bit later so some other settings can be applied to data first
New Contributors
- @Binomimus made their first contribution in #466
Full Changelog: v1.27.0...v1.28.0
v1.27.0
What's Changed
- Improve
New-HTMLutf-8 and lang properties for proper HTML specification - Fixes Linking Diagram with Tables by using New-DiagramEvent is currently broke #449
New Contributors
Full Changelog: v1.26.0...v1.27.0
v1.26.0
v1.25.0
v1.24.0
What's new
- Added
EnableFilteringButtontoNew-HTMLDiagramwhich allows to filter only on press of a button - Improved filtering performance in
New-HTMLDiagram
Full Changelog: v1.23.0...v1.24.0
v1.23.0
What's new
- Renamed
EnableSearchtoEnableFilteringinNew-HTMLDiagram - Renamed
MinimumSearchCharstoMinimumFilteringCharsinNew-HTMLDiagram
Full Changelog: v1.22.0...v1.23.0
v1.22.0
What's new
New-HTMLImageissue with SVG images #398 - tnx @matt555New-HTMLDiagramhas new parametersEnableSearchandMinimumSearchCharswhich allows adding a search/limit to display only nodes that match search- Updated VisNetwork/VisTimeline to 9.1.9
Full Changelog: v1.21.0...v1.22.0
v1.21.0
What's new
- Changed behavior of
TransposeinNew-HTMLTable/Out-HtmlView - Added
TransposeLegacytoNew-HTMLTable/Out-HtmlViewto keep old behavior - Added
TransposeNametoNew-HTMLTable/Out-HtmlViewto allow for custom name (default isObject 0,Object 1,Object 2) - Added
TransposePropertytoNew-HTMLTable/Out-HtmlViewto allow for transposing on unique value from specific property (ex. ServerName) - Added
Out-HtmlViewadditional optionsPrettifyObject, PrettifyObjectSeparator, PrettifyObjectDateTimeFormat
Those changes resolve: #316
$Object = @(
[PSCustomObject] @{
Test = 5
Ello = 'Motto'
Hello = 'Totto'
}
[PSCustomObject] @{
Test = 5
Ello = 'Motto'
Hello = 'Totto'
}
[PSCustomObject] @{
Test = 5
Ello = 'Motto'
Hello = 'Totto'
}
[PSCustomObject] @{
Test = 5
Ello = 'Motto'
Hello = 'Totto'
}
[PSCustomObject] @{
Test = 5
Ello = 'Motto'
Hello = 'Totto'
}
[PSCustomObject] @{
Test = 3
Ello = 'Lotto'
Hello = 'Totto'
}
)
$Object | Out-HtmlView -Transpose -TransposeName 'Test ' -Filtering
New-HTML -TitleText $Title -Online -FilePath $PSScriptRoot\Example-TableTranspose01.html {
New-HTMLTable -DataTable $Object -Filtering -Transpose
} -ShowHTMLFull Changelog: v1.20.0...v1.21.0