Skip to content

Commit

Permalink
Merge pull request #34 from rebelinux/dev
Browse files Browse the repository at this point in the history
Fix error with Base64 format
  • Loading branch information
rebelinux authored Sep 12, 2024
2 parents dc2e26e + 4f4ed31 commit e243ac9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.6] - 2024-09-12

### Fixed

- Fix error with Base64 format

## [0.6.5] - 2024-09-11

### Added
Expand Down
7 changes: 4 additions & 3 deletions Src/Public/New-VeeamDiagram.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function New-VeeamDiagram {
.PARAMETER WatermarkColor
Allow to specified the color used for the watermark text. Default: Green.
.NOTES
Version: 0.6.5
Version: 0.6.6
Author(s): Jonathan Colon
Twitter: @jcolonfzenpr
Github: rebelinux
Expand Down Expand Up @@ -331,8 +331,9 @@ function New-VeeamDiagram {
'Backup-to-ProtectedGroup' { 'Physical Infrastructure Diagram' }
'Backup-Infrastructure' { 'Backup Infrastructure Diagram' }
}

Write-ColorOutput -Color 'Green' -String ("Please wait while the '{0}' is being generated." -f $MainGraphLabel)
if ($Format -ne 'Base64') {
Write-ColorOutput -Color 'Green' -String ("Please wait while the '{0}' is being generated." -f $MainGraphLabel)
}

$IconDebug = $false

Expand Down
2 changes: 1 addition & 1 deletion Veeam.Diagrammer.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Veeam.Diagrammer.psm1'

# Version number of this module.
ModuleVersion = '0.6.5'
ModuleVersion = '0.6.6'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down

0 comments on commit e243ac9

Please sign in to comment.