diff --git a/Changelog.md b/Changelog.md index f2336f2..515b61f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,6 +1,20 @@ Changelog ========= +## version 23.2 + +### Added: + ++ Support for regional holidays - thank you [koterpillar](https://github.com/koterpillar) [(#11)](https://github.com/hvianna/desktopCal.js/pull/11); ++ Holidays for Australia - thank you [koterpillar](https://github.com/koterpillar) [(#9)](https://github.com/hvianna/desktopCal.js/pull/9); ++ Regional holidays for Brazil. + +### Fixed and improved: + ++ Observation of consecutive holidays in UK - thank you [koterpillar](https://github.com/koterpillar) [(#7)](https://github.com/hvianna/desktopCal.js/issues/7); ++ Add, not replace, holidays in lieu (for UK and AU) - thank you [koterpillar](https://github.com/koterpillar) [(#10)](https://github.com/hvianna/desktopCal.js/pull/10); ++ Updated US holidays: added Juneteenth and renamed Washington's Birthday to Presidents' Day. + ## version 23.1 ### Added: diff --git a/README.md b/README.md index ce080b3..a39da6e 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ You can add your own custom holidays. These will be saved in your browser's loca + [Saving canvas as image](https://weworkweplay.com/play/saving-html5-canvas-as-image/) and [solution to CORS issue on canvas.toDataURL()](https://stackoverflow.com/a/30517793/2370385) + [W3Schools Canvas Reference](https://www.w3schools.com/tags/ref_canvas.asp) + [How to draw a rounded Rectangle on HTML Canvas?](https://stackoverflow.com/a/7838871/2370385) ++ [Paper sizes](https://papersizes.io/) + References for public holidays: + [Argentina](https://en.wikipedia.org/wiki/Public_holidays_in_Argentina) + [Australia](https://www.fairwork.gov.au/employment-conditions/public-holidays) @@ -45,7 +46,6 @@ You can add your own custom holidays. These will be saved in your browser's loca + [United Kingdom](https://en.wikipedia.org/wiki/Public_holidays_in_the_United_Kingdom) + [United States](https://en.wikipedia.org/wiki/Federal_holidays_in_the_United_States) + [Uruguay](https://en.wikipedia.org/wiki/Public_holidays_in_Uruguay) -+ [Paper sizes](https://papersizes.io/) ## License diff --git a/js/desktopCal.js b/js/desktopCal.js index 5c5e2f2..b110c5f 100644 --- a/js/desktopCal.js +++ b/js/desktopCal.js @@ -21,7 +21,7 @@ */ 'use strict'; -const VERSION = '23.1'; +const VERSION = '23.2'; let cropper = [], colorPresets;