Skip to content

Releases: EvotecIT/PSWriteHTML

v1.30.0

02 Jun 18:35
d75e086

Choose a tag to compare

What's Changed

Full Changelog: v1.29.0...v1.30.0

v1.29.0

02 Jun 18:02
4104b4d

Choose a tag to compare

What's Changed

  • Add new features by @PrzemyslawKlys in #493
  • Adds New-HTMLDate
  • Adds New-HTMLInfoCard
  • Add Density parameter for New-HTMLSection, New-HTMLPanel and New-HTMLContainer
  • Some other fixes and improvements

Full Changelog: v1.28.0...v1.29.0

v1.28.0

17 Dec 19:49
d74f9bc

Choose a tag to compare

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 and New-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

Full Changelog: v1.27.0...v1.28.0

v1.27.0

01 Aug 06:37
2b04e60

Choose a tag to compare

What's Changed

  • Fix case-sensitivity for ChangeLog in readme.md by @cksapp in #447

New Contributors

Full Changelog: v1.26.0...v1.27.0

v1.26.0

06 Jul 07:00
b17fa72

Choose a tag to compare

What's Changed

  • Added help to all PowerShell functions lacking it. by @neztach in #446

New Contributors

Full Changelog: v1.25.0...v1.26.0

v1.25.0

02 Jul 20:07
60c8db4

Choose a tag to compare

What's new

  • Improved filtering for New-HTMLDiagram

Full Changelog: v1.24.0...v1.25.0

v1.24.0

01 Jul 20:31
28a20ff

Choose a tag to compare

What's new

  • Added EnableFilteringButton to New-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

01 Jul 09:40
5b3f0f7

Choose a tag to compare

What's new

  • Renamed EnableSearch to EnableFiltering in New-HTMLDiagram
  • Renamed MinimumSearchChars to MinimumFilteringChars in New-HTMLDiagram

Full Changelog: v1.22.0...v1.23.0

v1.22.0

01 Jul 09:20
2d8a5a2

Choose a tag to compare

What's new

  • New-HTMLImage issue with SVG images #398 - tnx @matt555
  • New-HTMLDiagram has new parameters EnableSearch and MinimumSearchChars 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

29 Jun 19:02
f442fd8

Choose a tag to compare

What's new

  • Changed behavior of Transpose in New-HTMLTable / Out-HtmlView
  • Added TransposeLegacy to New-HTMLTable / Out-HtmlView to keep old behavior
  • Added TransposeName to New-HTMLTable / Out-HtmlView to allow for custom name (default is Object 0, Object 1, Object 2)
  • Added TransposeProperty to New-HTMLTable / Out-HtmlView to allow for transposing on unique value from specific property (ex. ServerName)
  • Added Out-HtmlView additional options PrettifyObject, 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