Skip to content

Releases: EvotecIT/PSWriteHTML

v1.9.0

20 Sep 08:03
680035f
Compare
Choose a tag to compare

What's new

  • Add support for conditions for percentage in table New-TablePercentageBar / New-TablePercentageBarCondition
  • Added New-HTMLMermeidChart - work in progress / not fully functional

Full Changelog: v1.8.0...v1.9.0

v1.8.0

04 Sep 09:00
2e61182
Compare
Choose a tag to compare

What's new

  • Fixes problem with encoding in New-HTMLMarkdown
  • Fixes problem with EnableTOC switch in New-HTMLMarkdown

Full Changelog: v1.7.0...v1.8.0

v1.7.0

30 Aug 12:42
845329e
Compare
Choose a tag to compare

What's new

  • Add TargetName to New-HTMLCalendar

Full Changelog: v1.6.0...v1.7.0

v1.6.0

27 Aug 10:31
e46c849
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.4.0...v1.6.0

v1.4.0

25 Aug 09:54
783575a
Compare
Choose a tag to compare

What's new

  • Add UrlTarget to New-HTMLCalendar allowing for greater link control (for example iFrame)

Full Changelog: v1.3.0...v1.4.0

v1.3.0

22 Aug 09:20
3a77a8a
Compare
Choose a tag to compare

What's new

  • Fixes internal CSS issues after fix to Add-HTMLStyle which may have impacted some reports
  • Improve New-HTMLFrame adding Name
  • Rename New-TreeNode to New-HTMLTreeNode BREAKING CHANGE
  • Improve New-HTMLTreeNode options
  • Improve New-HTMLTree

Full Changelog: v1.2.0...v1.3.0

v1.2.0

13 Aug 06:36
4501ef6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.2.0

v1.1.0

25 Jul 11:09
7b4bffd
Compare
Choose a tag to compare

What's new

  • Improve New-HTMLCarousel (WIP)

Full Changelog: v1.0.192...v1.1.0

v1.0.192

11 Jul 19:35
8dbf941
Compare
Choose a tag to compare

What's new

  • Fixes PSWriteHTML published module
  • Adds tests before publishing to prevent similar issue

Full Changelog: v1.0.0...v1.0.192

v1.0.0

10 Jul 08:06
3cb2997
Compare
Choose a tag to compare

What's new

  • This release is first release of PSWriteHTML that is considered stable. It's been in development for over 2 years, but it's time to say it's stable.
  • Add columnVisibility button to New-HTMLTable
$DataTable = @(
    [PSCustomObject] @{ 'Test.1' = 'Name'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
    [PSCustomObject] @{ 'Test.1' = 'Name'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date2; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
    [PSCustomObject] @{ 'Test.1' = 'Przemysłąw'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date3; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
    [PSCustomObject] @{ 'Test.1' = 'Kłys'; 'Test 2 Another' = 'Name2'; 'Test..3' = 'Name3'; "Da't'es" = $Date2; 'Numbers' = $Int; Enum = $Enum; EnumFruit = $EnumFruit; Bool = $false }
)

#$DataTable = Get-Process | Select-Object -First 30

New-HTML -TitleText 'Title' -Online -FilePath $PSScriptRoot\Example-TableColumnVisibility.html -ShowHTML {
    New-HTMLTable -DataTable $DataTable -Filtering -Buttons columnVisibility, csvHtml5, excelHtml5, pageLength, searchBuilder
}
  • Improve CSV output (UTF8 with BOM)
  • Added new options for New-TableButtonCSV
  • Improve New-TableButton* with a few more options
  • Added European Union to New-HTMLMap
  • Added New-HTMLWizardColor - allows setting colors for New-HTMLWizard (globally)
  • Added New-HTMLTabPanelColor - allows setting colors for New-HTMLTabPanel (globally)
  • Fixed New-HTMLWizard themes
  • Added New-HTMLTabPanel themes
  • Updated handful of libraries

Full Changelog: v0.0.191...v1.0.0