Releases: EvotecIT/PSWriteHTML
Releases · EvotecIT/PSWriteHTML
v1.28.0
What's Changed
- fixed Get-HTMLLogos missing
$LogoPath
by @Binomimus in #466 - Improve Get-ImageFile to not throw errors when having issues with internet connection
- Improves
New-HTMLSectionScrolling
andNew-HTMLSectionScrollingItem
to allow for nesting - Improve
New-HTMLTable
Transpose 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-HTML
utf-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
EnableFilteringButton
toNew-HTMLDiagram
which 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
EnableSearch
toEnableFiltering
inNew-HTMLDiagram
- Renamed
MinimumSearchChars
toMinimumFilteringChars
inNew-HTMLDiagram
Full Changelog: v1.22.0...v1.23.0
v1.22.0
What's new
New-HTMLImage
issue with SVG images #398 - tnx @matt555New-HTMLDiagram
has new parametersEnableSearch
andMinimumSearchChars
which 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
Transpose
inNew-HTMLTable
/Out-HtmlView
- Added
TransposeLegacy
toNew-HTMLTable
/Out-HtmlView
to keep old behavior - Added
TransposeName
toNew-HTMLTable
/Out-HtmlView
to allow for custom name (default isObject 0
,Object 1
,Object 2
) - Added
TransposeProperty
toNew-HTMLTable
/Out-HtmlView
to allow for transposing on unique value from specific property (ex. ServerName) - Added
Out-HtmlView
additional 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
} -ShowHTML
Full Changelog: v1.20.0...v1.21.0
v1.20.0
What's new
- Added to
EmailTable
/New-HTMLTable
additional propertiesPrettifyObject, PrettifyObjectSeparator, PrettifyObjectDateTimeFormat
- Added to
New-HTMLTableOption
additional propertiesPrettifyObject, PrettifyObjectSeparator, PrettifyObjectDateTimeFormat
Those options above allow object to be translated to more readable format when using properties that are arrays or when wanting different datetime format
It basically does to HTML version what normally is doable in JavaScript DataStore.
Full Changelog: v1.19.0...v1.20.0
v1.19.0
What's new
- Dropping IE support
- Fixes
New-HTMLTable
when usingDataStore
JavaScript
for new lines - Fixes
New-HTMLTable
when usingDataStore
JavaScript
when replacing\r\n
#439 tnx @matt555 New-HTMLCalendar
works now by default in 24h format
Full Changelog: v1.18.0...v1.19.0