Skip to content

Commit f22bd22

Browse files
authored
Merge pull request #33 from AsBuiltReport/dev
1.1.5 public release
2 parents faa90be + 0d439ca commit f22bd22

9 files changed

+126
-124
lines changed

.github/workflows/Release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
needs: publish-to-gallery
3030
runs-on: ubuntu-latest
3131
steps:
32-
- uses: Eomm/why-don-t-you-tweet@v1
32+
- uses: Eomm/why-don-t-you-tweet@v2
3333
# We don't want to tweet if the repository is not a public one
3434
if: ${{ !github.event.repository.private }}
3535
with:

AsBuiltReport.VMware.Horizon.psd1

-5.13 KB
Binary file not shown.

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [1.1.6] - 2025-1-17
8+
## [1.1.5] - 2025-1-21
99

1010
### Added
1111

@@ -16,14 +16,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1616
- Tested with Horizon 2406
1717
- Added TrueSSO Cetificate details section
1818
- Added Health Check module
19+
- Increased AsBuiltReport.Core minimum requirements to v1.4.1
20+
- Increased Eomm/why-don-t-you-tweet Github action to v2
1921

2022
### Fixed
2123

2224
- Resolved the Following issues:
2325
- [#30](https://github.com/AsBuiltReport/AsBuiltReport.VMware.Horizon/issues/30)
2426

2527

26-
## [1.1.5] - 2024-11-22
28+
## [1.1.4] - 2024-11-22
2729

2830
### Added
2931

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2024 AsBuiltReport
3+
Copyright (c) 2025 AsBuiltReport
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

Src/Private/Get-AbrHRZHCEventDataBase.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ function Get-AbrHRZHCEventDataBase {
5656
$TableParams = @{
5757
Name = "Event Database Health Information - $($HVEnvironment.toUpper())"
5858
List = $false
59-
ColumnWidths = 20, 8, 12, 16, 18, 8, 10, 10
59+
ColumnWidths = 18, 8, 12, 16, 18, 8, 10, 10
6060
}
6161

6262
if ($Report.ShowTableCaptions) {

Src/Private/Get-AbrHRZHCLicenseService.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function Get-AbrHRZHCLicenseService {
4141
$textInfo = $culture.TextInfo
4242
$properCaseLicensedEditionEdited = $textInfo.ToTitleCase($LicensedEditionEdited.ToLower())
4343

44-
$ProductLicenseingInfo.Licensed
44+
# $ProductLicenseingInfo.Licensed
4545
if ($ProductLicenseingInfo.Licensed -eq $true) {
4646
$LicStatus = "Okay"
4747
} else {

Src/Private/Get-AbrHRZLocalEntitlement.ps1

Lines changed: 111 additions & 111 deletions
Large diffs are not rendered by default.

Src/Private/SharedUtilsFunctions.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ function ConvertTo-HashToYN {
123123
.DESCRIPTION
124124
125125
.NOTES
126-
Version: 0.1.0
126+
Version: 0.2.0
127127
Author: Jonathan Colon
128128
129129
.EXAMPLE
@@ -132,15 +132,15 @@ function ConvertTo-HashToYN {
132132
133133
#>
134134
[CmdletBinding()]
135-
[OutputType([Hashtable])]
135+
[OutputType([System.Collections.Specialized.OrderedDictionary])]
136136
Param (
137137
[Parameter (Position = 0, Mandatory)]
138138
[AllowEmptyString()]
139-
[Hashtable] $TEXT
139+
[System.Collections.Specialized.OrderedDictionary] $TEXT
140140
)
141141

142142
$result = [ordered] @{}
143-
foreach ($i in $inObj.GetEnumerator()) {
143+
foreach ($i in $TEXT.GetEnumerator()) {
144144
try {
145145
$result.add($i.Key, (ConvertTo-TextYN $i.Value))
146146
} catch {

Src/Public/Invoke-ASBuiltReport.VMware.Horizon.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@
440440
Get-AbrHRZEventConf
441441
Get-AbrHRZGlobalpolicy
442442
}
443-
Write-PScriboMessage "CHealth Check InfoLevel set at $($HealthCheck.HealthCheck.Overview)."
443+
Write-PScriboMessage "Health Check InfoLevel set at $($HealthCheck.HealthCheck.Overview)."
444444
if ($HealthCheck.HealthCheck) {
445445
Section -Style Heading1 'Health Check' {
446446
Paragraph 'The following section provides overall heath check of the environment.'
@@ -452,7 +452,7 @@
452452
Get-AbrHRZHCTrueSSO
453453
}
454454
}
455-
if ($HealthCheck.RDSFarms) {
455+
if ($HealthCheck.RDSFarms -and $farms) {
456456
Section -Style Heading2 'RDS Farms' {
457457
Get-AbrHRZHCRDSFarm
458458
}
@@ -471,7 +471,7 @@
471471
Get-AbrHRZHCLicenseService
472472
}
473473
}
474-
if ($healthcheck.RemotePod.RemotePod){
474+
if ($healthcheck.RemotePod.RemotePod -and $CloudPodListsLocal){
475475
Section -Style Heading2 'Remote Pod' {
476476
Get-AbrHRZHCRemotePod
477477
}

0 commit comments

Comments
 (0)