Skip to content

Releases: objectivehtml/FlipClock

0.7.7

12 Dec 20:51
Compare
Choose a tag to compare
  • (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

07 Oct 05:23
Compare
Choose a tag to compare
  • (Feature) Published to NPM and can be installed with npm install flipclock

0.7.3

07 Oct 04:19
Compare
Choose a tag to compare
  • (Bug Fix) Fixed an issue that would prevent the seconds from showing on the TwentyFourHourClock face

0.7.2

07 Oct 04:13
Compare
Choose a tag to compare
  • (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

07 Oct 03:31
Compare
Choose a tag to compare
  • (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

07 Oct 02:12
Compare
Choose a tag to compare
  • (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 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
  • (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

02 Oct 03:24
Compare
Choose a tag to compare
  • (Bug Fix) Fixed an issue with the HourlyCounter and MinuteCounter faces not working properly when new digits are added
  • (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 inherited by the class face to change the default behavior

0.6.2

25 Aug 18:23
Compare
Choose a tag to compare

Removed console.log errors and recompiled the source

0.6.1

08 Aug 17:10
Compare
Choose a tag to compare
  • (Bug Fix) Fixed an issue with multiple instances breaking due to a property instance not getting properly set.
  • (Bug Fix) Removed legacy flipclock.js file
  • (Example) Added new example to illustrate multiple instances