Releases: objectivehtml/FlipClock
Releases · objectivehtml/FlipClock
v1.0.1
v1.0.0
v1.0.0-beta.2
Patch Changes
f03d6f2- Updated README.md
0.7.7
- (Example) Added new interval callback example
- (Bug Fix) Merge pull request #160 from rustygreen/patch-1
- (Bug Fix) Fixed constructor bug passing "factory". Updated face.js, the "factory" was not being passed into the constructor, instead a typo was "factor".
- (Bug Fix) Merge pull request #150 from charlesbaynham/Fix-modulus-for-getWeeks
- (Bug Fix) Fixed typo in the definition of getWeeks, preventing its usage
- (Bug Fix) Merge pull request #156 from laureanoendeiza/patch-1
- (Bug Fix) Fixed typo in the definition of getWeeks, preventing its usage.
- (Bug Fix) Fixed a typo in the definition of the (unused by default) method getWeeks.
0.7.4
- (Feature) Published to NPM and can be installed with
npm install flipclock
0.7.3
- (Bug Fix) Fixed an issue that would prevent the seconds from showing on the TwentyFourHourClock face
0.7.2
- (Bug Fix) Made it so the TwelveHourClock and TwentyFourHourClock faces can use the showSeconds parameter
- (Bug Fix) Fixed an issue with the time being overridden upon inheritance in the TwentyFourHour clock face
- (Refactor) Added param to the getTime and getMilitaryTime methods to hide the seconds from being returned
- (Example) Added twenty four hour clock without seconds
- (Example) Added Twelve Hour Clock example without seconds
0.7.1
- (Bug Fix) Fixed an issue that would cause a JS error if the FlipClock.Time object wasn't instantiated with any options
- (Bug Fix) Fixed an issue with the minimumDigits property not being set
- (Bug Fix) Fixed an issue with the minimumDigits property not being set when a clock face was reset
- (Bug Fix) Removed more leaky abstractions within the TwentyFourHourClock face
- (Bug Fix) Removed unnecessary minimumDigits property
- (Bug Fix) Removed the way lists were instantiated. The minimumDigits property was removed, as it's not necessary
- (Bug Fix) Fixed a type that would cause the clock to improperly reset
- (Bug Fix) Updated code comments
- (Refactored) Removed minimumDigit property, which was a leaky abstraction
- (Example) Added new example to show a clock with a minimum number of digits
0.7.0
- (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
- (Bug Fix) Fixed an issue with the HourlyCounter and MinuteCounter faces not working properly when new digits are added
- (Bug Fix) Fixed an issue where the clock wouldn't instantiate properly if a date object was passed to it
- (Bug Fix) Added the autoStart property to the FlipClock.Face class declaration
- (Bug Fix) Fixed the way the loadClockFace and loadLanguage methods worked
- (Bug Fix) The loadClockFace method now resets the clock so if the method is called after instantiation, the entire clock face is re-rendered
- (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
- (Bug Fix) Fixed some issues with instantiating date objects within the jQuery object.
- (Bug Fix) Fixed an issue with the Counter face that would prevent the counter from auto-incrementing if the autoStart property was used.
- (Refactor) Add new
appendDigitToClockto clock method to theFlipClock.Faceclass that will append the new digits to the DOM. This method can be inherted by the class face to change the default behavior - (Refactor) Refactored the clock faces for leaky abstractions
- (Refactor) Refactored the FlipClock.Time.addSeconds() method to work when the time is a date object, not an integer
- (Refactor) Refactored the FlipClock.Time.subSeconds() method to work when the time is a date object, not an integer
- (Refactor) Added new FlipClock.Time.getDateObject method to always return a date object, even when the time is an integer
- (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
- (Refactor) Removed another leaky abstraction from the getTimeSeconds methods
- (Example) Added new example to show how to set a twenty four hour clock with a custom time
- (Example) Added new example to show how to set a twelve hour clock with a custom time
- (Example) Added example to show how to change clock faces upon instantiation
- (Example) Added new example for the DailyCounter clock face
0.6.3
- (Bug Fix) Fixed an issue with the HourlyCounter and MinuteCounter faces not working properly when new digits are added
- (Refactor) Add new
appendDigitToClockto clock method to theFlipClock.Faceclass that will append the new digits to the DOM. This method can be inherited by the class face to change the default behavior