Skip to content

Commit a5ba582

Browse files
authored
Merge pull request #58 from tpcarman/dev
v1.0.7 patch
2 parents 309fa9a + 28fa02e commit a5ba582

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

AsBuiltReport.VMware.vSphere.Style.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# VMware Default Document Style
22

33
# Configure document options
4-
DocumentOption -EnableSectionNumbering -PageSize A4 -DefaultFont 'Century Gothic' -MarginLeftAndRight 71 -MarginTopAndBottom 71 -Orientation $Orientation
4+
DocumentOption -EnableSectionNumbering -PageSize A4 -DefaultFont 'Arial' -MarginLeftAndRight 71 -MarginTopAndBottom 71 -Orientation $Orientation
55

66
# Configure Heading and Font Styles
77
Style -Name 'Title' -Size 24 -Color '485969' -Align Center
@@ -12,10 +12,10 @@ Style -Name 'Heading 2' -Size 14 -Color '006A91'
1212
Style -Name 'Heading 3' -Size 12 -Color '006A91'
1313
Style -Name 'Heading 4' -Size 11 -Color '006A91'
1414
Style -Name 'Heading 5' -Size 10 -Color '006A91'
15-
Style -Name 'Normal' -Size 10 -Color '313131' -Default
15+
Style -Name 'Normal' -Size 10 -Color '565656' -Default
1616
Style -Name 'TOC' -Size 16 -Color '006A91'
1717
Style -Name 'TableDefaultHeading' -Size 10 -Color 'FAFAFA' -BackgroundColor '485969'
18-
Style -Name 'TableDefaultRow' -Size 10 -Color '313131'
18+
Style -Name 'TableDefaultRow' -Size 10 -Color '565656'
1919
Style -Name 'Critical' -Size 10 -BackgroundColor 'F5DBD9'
2020
Style -Name 'Warning' -Size 10 -BackgroundColor 'FEF3B5'
2121
Style -Name 'Info' -Size 10 -BackgroundColor 'E1F1F6'

AsBuiltReport.VMware.vSphere.psd1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'AsBuiltReport.VMware.vSphere.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.6'
15+
ModuleVersion = '1.0.7'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Desktop'
@@ -100,10 +100,10 @@
100100
ProjectUri = 'https://github.com/AsBuiltReport/AsBuiltReport.VMware.vSphere'
101101

102102
# A URL to an icon representing this module.
103-
# IconUri = ''
103+
IconUri = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport/master/AsBuiltReport.png'
104104

105105
# ReleaseNotes of this module
106-
# ReleaseNotes = ''
106+
ReleaseNotes = 'https://raw.githubusercontent.com/AsBuiltReport/AsBuiltReport.VMware.vSphere/master/CHANGELOG.md'
107107

108108
# Prerelease string of this module
109109
# Prerelease = ''

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# VMware vSphere As Built Report Changelog
22

3+
## [1.0.7] - 2019-06-21
4+
### Changed
5+
- Fixed font in default VMware style
6+
- Updated module manifest for icon and release notes
7+
38
## [1.0.6] - 2019-05-16
49
### Changed
510
- Fixed code errors which prevented a report from being generated

Src/Public/Invoke-AsBuiltReport.VMware.vSphere.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,7 @@ function Invoke-AsBuiltReport.VMware.vSphere {
17881788

17891789
#region ESXi Host Boot Device
17901790
Section -Style Heading5 'Boot Device' {
1791-
$ESXiBootDevice = Get-ESXiBootDevice -VMHost $VMHost
1791+
$ESXiBootDevice = Get-ESXiBootDevice -VMHost $VMHost -Server $vCenter
17921792
$VMHostBootDevice = [PSCustomObject]@{
17931793
'Host' = $ESXiBootDevice.Host
17941794
'Device' = $ESXiBootDevice.Device

0 commit comments

Comments
 (0)