From 907b1b7f1479202f0cd76eb511fa65865434cef3 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Fri, 20 Feb 2026 10:21:30 -0400 Subject: [PATCH 1/3] Update .NET setup action to version 5 in Release workflow --- .github/workflows/Release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 63ad3ee..91b82b3 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@v6 - name: Setup .NET - uses: actions/setup-dotnet@v4 + uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' - name: Restore dependencies From b0379adf0be6287b3cef996e68bd69de4c8ae6a1 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Fri, 20 Feb 2026 12:07:51 -0400 Subject: [PATCH 2/3] Fix formatting in CHANGELOG and README for consistency --- CHANGELOG.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2686bdf..d933a72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,4 +9,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Initial release of AsBuiltReport Chart, providing basic charting capabilities for AsBuiltReport data visualization. \ No newline at end of file +- Initial release of AsBuiltReport Chart, providing basic charting capabilities for AsBuiltReport data visualization \ No newline at end of file diff --git a/README.md b/README.md index f881ef9..fb45ac2 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ This report is compatible with the following PowerShell versions; | Windows PowerShell 5.1 | PowerShell 7 | | :--------------------: | :----------------: | -| :white_check_mark: | :white_check_mark: | +| :white_check_mark: | :white_check_mark: | ## 🗺️ Language Support From 76b82d4e8b460dc7b729f58d1eec615d93dff2e0 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Fri, 20 Feb 2026 15:33:54 -0400 Subject: [PATCH 3/3] Update bug report template to clarify command-line input for AsBuiltReport.Chart --- .github/ISSUE_TEMPLATE/bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 6b8d477..ce70ef9 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -16,8 +16,8 @@ body: attributes: label: Command-line input description: >- - Please provide the command line input you are using to run AsBuiltReport. Please ensure that you obscure any sensitive information. - placeholder: New-AsBuiltReport -Report Charts.Charts -Target xxxxxxx -Format Word,HTML -OutputFolderPath .\Documents\ -AsBuiltConfigFilePath .\AsBuiltReport\AsBuiltReport.json -ReportConfigFilePath .\AsBuiltReport\AsBuiltReport.Chart.Charts.json -EnableHealthCheck -Verbose + Please provide the command line input you are using to run AsBuiltReport.Chart. Please ensure that you obscure any sensitive information. + placeholder: New-PieChart -Values @(1,2,3,4,5,6,7,8) -Labels @('house', 'car', 'boat', 'gazebo', 'ca', 'co', 'ba', 'na') -Title 'House' -Format png -Width 800 -Height 800 -EnableLegend -Filename house -LegendOrientation Horizontal -LegendAlignment UpperCenter validations: required: true - type: textarea