Skip to content

Commit

Permalink
see changelog for v1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhitsolutions committed Oct 1, 2018
1 parent 6000b2e commit bcb7959
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ PS C:\> Show-GuiCalendar 12/2018 2/2019 -highlight 12/24/18,12/25/18,12/31/18,1/

![show-guicalendar](assets/show-guicalendar.png)

The calendar form is transparent. But you should be able to click on it to drag it around your screen. You can also use the + and - keys to increase or decrease the calendar's opacity.
The calendar form is transparent. But you should be able to click on it to drag it around your screen. You can also use the + and - keys to increase or decrease the calendar's opacity. Be aware that if you close the PowerShell session that launched the calendar, the calendar too will close.

*last updated 1 October 2018*
5 changes: 3 additions & 2 deletions calendar-functions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ Function Get-Calendar {
Write-Verbose "Ending at $End"
#Convert the highlight dates into real dates
#using the .NET Class to parse because this works better for culture-specific datetime strings
[DateTime[]]$highlightDates = [datetime]::parse($highlightDate)

[DateTime[]]$highlightDates = foreach ($item in $highlightDate) {
[datetime]::parse($item)
}
#Retrieve the DateTimeFormat information so that we can manipulate the calendar
$dateTimeFormat = (Get-Culture).DateTimeFormat
$firstDayOfWeek = $dateTimeFormat.FirstDayOfWeek
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## v1.3.1

+ Help documentation updates for clarity
+ Help documentation updates for clarity (Issue #5)
+ Fixed HighLightDay parsing bug (Issue #6)

## v1.3.0

Expand Down

0 comments on commit bcb7959

Please sign in to comment.