Skip to content

Commit

Permalink
Version info updated
Browse files Browse the repository at this point in the history
  • Loading branch information
GramThanos committed Nov 3, 2017
1 parent d0fa34b commit 1d41f3c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 32 deletions.
31 changes: 29 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,40 @@
# Changelog
All jsCalendar changes will be documented in this file.

## [1.4.0] - 2017-11-04

### Added
- jsCalendar.version
- calendar.clearSelected() alias of calendar.clearselect()
- calendar.isSelected(date)
- calendar.isVisible(date)
- calendar.isInMonth(date)
- calendar.getSelected(options)
- support to get target with selectors
- ex. target string `"#myelement"` will get the element with id `myelement`
- min(date) // Set a max date for the calendar
- max(date) // Set a min date for the calendar

### Fixed
- duplicate dates when time changes (ex. 29/10/2017)
- string dates that do not exist throw error
- ex. `new jsCalendar(document.createElement('div'), "31/2/2017");` now throw error




## [1.3.0] - 2017-07-08

### Added
- Support for setting the fisrt day of the week ([doc link](https://gramthanos.github.io/jsCalendar/docs.html#parameter-first-day-of-the-week))
- Support for setting the first day of the week
- firstDayOfTheWeek : "{day-name}" // Based on the language sellected
- firstDayOfTheWeek : "{number}" | {number} // 1-7 starting from Sunday
- shortcut keyword : "fdotw" (from the initials FistDayOfTheWeek)
- alias keyword : "fdotw" (from the initials FistDayOfTheWeek)




## [1.2.0] - 2017-03-19

### Changed
- Public release of the library.
37 changes: 7 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
[![latest release](https://img.shields.io/badge/latest%20release-v1.3-green.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar/releases/latest)
[![latest development](https://img.shields.io/badge/latest%20development-v1.4--beta.3-yellow.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar#whats-new)

:star: *I will release v1.4 as soon as I find some time to update all the documentation/example-codes. Thanks!* :star:
[![latest release](https://img.shields.io/badge/latest%20release-v1.4-green.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar/releases/latest)
[![latest development](https://img.shields.io/badge/latest%20development-v1.4-yellow.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar#whats-new)

# jsCalendar
Just a simple javascript calendar
Expand Down Expand Up @@ -70,7 +68,7 @@ ___
- [Custom Colors](https://gramthanos.github.io/jsCalendar/docs.html#more-theme-colors)
- [Add more languages](https://gramthanos.github.io/jsCalendar/docs.html#more-languages)


Some new docs links need to be added, as soon as docs go live.

___

Expand All @@ -86,31 +84,10 @@ ___

### Whats new?

#### Latest development code v1.4-beta.3

- **v1.4-beta.3**
- Fixed
- duplicate dates when time changes (ex. 29/10/2017) [#5](/../../issues/5)

- **v1.4-beta.2**
- Added
- calendar.min(date) [#4](/../../issues/4)
- calendar.max(date) [#4](/../../issues/4)

- **v1.4-beta.1**
- Added
- jsCalendar.version
- calendar.clearSelected() alias of calendar.clearselect()
- calendar.isSelected(date) [#3](/../../issues/3)
- calendar.isVisible(date) [#3](/../../issues/3)
- calendar.isInMonth(date) [#3](/../../issues/3)
- calendar.getSelected(options) [#3](/../../issues/3)
- support to get target with selectors
- See "javascript create calendar with selectors.html" file on examples

- Fixed
- string dates that do not exist throw error
- ex. `new jsCalendar(document.createElement('div'), "31/2/2017");` now throw error
#### Latest development code v1.4

- **no dev version yet**
- no news


___
Expand Down

0 comments on commit 1d41f3c

Please sign in to comment.