Skip to content

Releases: EvotecIT/PSWriteHTML

v1.28.0

17 Dec 19:49
d74f9bc
Compare
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
Compare
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
Compare
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
Compare
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
Compare
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
Compare
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
Compare
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
Compare
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

v1.20.0

27 Jun 17:45
abda18e
Compare
Choose a tag to compare

What's new

  • Added to EmailTable / New-HTMLTable additional properties PrettifyObject, PrettifyObjectSeparator, PrettifyObjectDateTimeFormat
  • Added to New-HTMLTableOption additional properties PrettifyObject, 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

09 Jun 08:11
9b5164d
Compare
Choose a tag to compare

What's new

  • Dropping IE support
  • Fixes New-HTMLTable when using DataStore JavaScript for new lines
  • Fixes New-HTMLTable when using DataStore 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