|
1 | 1 | # FlipClock.js |
2 | 2 |
|
| 3 | +#### 0.7.0 |
| 4 | +##### 10/06/2014 |
| 5 | + |
| 6 | +- (Feature) Added ability to set the TwelveHourClock and TwentyFourHourClock faces to be able to use a custom date object passed upon instantiation or set after instantiation |
| 7 | +- (Bug Fix) Fixed an issue with the HourlyCounter and MinuteCounter faces not working properly when new digits are added |
| 8 | +- (Bug Fix) Fixed an issue where the clock wouldn't instantiate properly if a date object was passed to it |
| 9 | +- (Bug Fix) Added the autoStart property to the FlipClock.Face class declaration |
| 10 | +- (Bug Fix) Fixed the way the loadClockFace and loadLanguage methods worked |
| 11 | +- (Bug Fix) The loadClockFace method now resets the clock so if the method is called after instantiation, the entire clock face is re-rendered |
| 12 | +- (Bug Fix) Changed the way the getTimeSeconds method works. Now a date object can be passed to get the time relative to the date instead of always being the current time |
| 13 | +- (Bug Fix) Fixed some issues with instantiating date objects within the jQuery object. |
| 14 | +- (Bug Fix) Fixed an issue with the Counter face that would prevent the counter from auto-incrementing if the autoStart property was used. |
| 15 | +- (Refactor) Add new `appendDigitToClock` to clock method to the `FlipClock.Face` class that will append the new digits to the DOM. This method can be inherted by the class face to change the default behavior |
| 16 | +- (Refactor) Refactored the clock faces for leaky abstractions |
| 17 | +- (Refactor) Refactored the FlipClock.Time.addSeconds() method to work when the time is a date object, not an integer |
| 18 | +- (Refactor) Refactored the FlipClock.Time.subSeconds() method to work when the time is a date object, not an integer |
| 19 | +- (Refactor) Added new FlipClock.Time.getDateObject method to always return a date object, even when the time is an integer |
| 20 | +- (Refactor) Made the getMilitaryTime and getTime objects capable of returning time relative to a datestamp passed as an argument instead of always assuming to current time |
| 21 | +- (Refactor) Removed another leaky abstraction from the getTimeSeconds methods |
| 22 | +- (Example) Added new example to show how to set a twenty four hour clock with a custom time |
| 23 | +- (Example) Added new example to show how to set a twelve hour clock with a custom time |
| 24 | +- (Example) Added example to show how to change clock faces upon instantiation |
| 25 | +- (Example) Added new example for the DailyCounter clock face |
| 26 | + |
3 | 27 | #### 0.6.3 |
4 | 28 | ##### 9/1/2014 |
5 | 29 |
|
|
0 commit comments