Skip to content

Commit

Permalink
v1.3 released based on v1.3-rc.1 after testing
Browse files Browse the repository at this point in the history
  • Loading branch information
GramThanos committed Jul 8, 2017
1 parent 8fcb056 commit 34f0e9c
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 32 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
All jsCalendar changes will be documented in this file.

## [1.3.0] - 2017-07-08
### Added
- Support for setting the fisrt 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)

## [1.2.0] - 2017-03-19
### Changed
- Public release of the library.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![latest release](https://img.shields.io/badge/latest%20release-v1.2-green.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar/releases/latest)
[![latest development](https://img.shields.io/badge/latest%20development-v1.3--rc.1-yellow.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar#whats-new)
[![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.3-yellow.svg?style=flat-square)](https://github.com/GramThanos/jsCalendar#whats-new)

# jsCalendar
Just a simple javascript calendar
Expand All @@ -10,7 +10,7 @@ Visit the jsCalendar site

![preview 1](preview/preview_default.png)

[Download](https://github.com/GramThanos/jsCalendar/releases/download/v1.2/jsCalendar_v1.2.zip)[Live preview](https://gramthanos.github.io/jsCalendar/)[Documentation](https://gramthanos.github.io/jsCalendar/docs.html)
[Download](https://github.com/GramThanos/jsCalendar/releases/download/v1.3/jsCalendar_v1.3.zip)[Live preview](https://gramthanos.github.io/jsCalendar/)[Documentation](https://gramthanos.github.io/jsCalendar/docs.html)

## Fast set up

Expand Down Expand Up @@ -70,7 +70,7 @@ Then insert a calendar on `<body>`

## Whats new?

#### Latest development code v1.3-rc.1
#### Latest development code v1.3
- Added support for setting the fisrt day of the week
- firstDayOfTheWeek : "{day-name}" // Based on the language sellected
- firstDayOfTheWeek : "{number}" | {number} // 1-7 starting from Sunday
Expand Down
2 changes: 1 addition & 1 deletion source/jsCalendar.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jsCalendar v1.2
* jsCalendar v1.3
*
*
* MIT License
Expand Down
4 changes: 2 additions & 2 deletions source/jsCalendar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* jsCalendar v1.3-rc.1
* jsCalendar v1.3
*
*
* MIT License
Expand Down Expand Up @@ -941,7 +941,7 @@ var jsCalendar = (function(){
return JsCalendar;
})();

// We love anonymous functions
// I love anonymous functions
(function(){
// Init auto calendars
// After the page loads
Expand Down
2 changes: 1 addition & 1 deletion source/jsCalendar.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 34f0e9c

Please sign in to comment.