Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Nov 3, 2021
1 parent eca06e8 commit 765dc2c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PSCalendar.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ $PSCalendarConfiguration = @{
Highlight = "$esc[92m"
}

#define a function to open the README pdf file
#define a function to open the doeumentation pdf file
Function Show-PSCalendarHelp {
[cmdletbinding()]
param()

Start-process $PSScriptRoot\README.pdf
Start-process $PSScriptRoot\PSCalendarManual.pdf
}

#define an auto completer for the Month parameter
Expand Down
Binary file added PSCalendarManual.pdf
Binary file not shown.
Binary file removed README.pdf
Binary file not shown.
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log for PSCalendar

## v2.4.0

+ Add error handling to `Show-GUICalendar` to not run in PowerShell 7 since the underlying .NET display classes are not supported. Restructured module to not export this command if running in PowerShell 7. [Issue #27](https://github.com/jdhitsolutions/PSCalendar/issues/27)
+ Updated `Show-PSCalendarHelp` to use a new PDF which includes `README.md` and the command help.
+ Help updates
+ Updated `README.md`.

## v2.3.2

+ Updated `Get-Calendar` to allow start date and end date to be equal. [Issue #26](https://github.com/jdhitsolutions/PSCalendar/issues/26)
Expand Down

0 comments on commit 765dc2c

Please sign in to comment.