UNPKG

2.85 kBMarkdownView Raw
1# Changelog
2
3### v 1.5.3 (6/11/15)
4
5- Gulp build system added thanks to @HHsnopek
6
7### v 1.5.1 (6/10/15)
8
9- Some small improvements that clean up the code a little
10
11### v 1.5.0 (5/18/15)
12
13- Adds support for AMD (asynchronous module definition) thanks to @vash15
14
15### v 1.4.0 (5/8/15)
16
17- Change class name from "countUp" to "CountUp"
18- Add pauseResume() method
19- Deprecate stop() and resume() methods
20- Add update() documentation
21- Slight tweak to update()
22
23### v 1.3.3 (3/24/15)
24
25- Adds update method to avoid having to re-initialize to count to a new value thanks to @aludvigsen
26- Extends options with passed options rather than replacing them thanks to @goddomotfronk
27
28### v 1.3.2 (12/4/14)
29
30- Added abillity to count in svg text elements.
31
32### v 1.3.1 (9/1/14)
33
34- Fixed bug where if endVal = 0, countUp would display ‘—‘
35
36### v 1.3.0 (8/21/14)
37
38- Adds support for inputs thanks to @kmclaugh
39
40### v 1.2.0 (6/9/14)
41
42- Adds prefixes and suffixes (such as "$" and "%") thanks to @marjan-georgiev
43
44### v 1.1.2 (6/9/14)
45
46- Fixes a bug where start() -> stop() -> resume() -> reset() would reset to the number stopped at. Thanks to @youxiachai for finding this one
47
48### v 1.1.1 (5/13/14)
49
50- Fixes a bug where an empty separator (“”) specified in the options
51object would cause the browser tab to become unresponsive if the endVal
52was a 4+ digit number. Special thanks to @sgtmercs for finding this bug
53and creating an issue.
54
55### v 1.1.0 (2/21/14)
56
57- now accepts an optional options object that allows for globalized number formatting
58- you can now optionally set the character of the separator and the decimal
59- grouping (ie, 1,000,000 vs 1000000) is now optional
60
61### v 1.0.3 (2/7/14)
62
63- fixed bug that caused start() not to work if reset() was previously called (oops)
64
65### v 1.0.2 (1/30/14)
66
67- now allows target to be either an id or var of a previously selected html element thanks to @jackrugile
68
69### v 1.0.1 (1/30/14)
70
71- fixed a bug that caused the resume method not to work if counting down
72
73### v 1.0.0 (1/23/14)
74
75- no changes, just officially made it a production version
76
77### v 0.0.6 (1/17/14)
78
79- added resume method
80- format startVal on initialization
81
82### v 0.0.5 (1/17/14)
83
84- added stop method
85- fixed reset method
86- improved demo to include stop, reset, callback and code visualization
87
88### v 0.0.4 (1/16/14)
89
90- added callback thanks to @retasretas
91- added requestAnimationFrame() polyfill to support IE8 and other browsers without native rAF support
92
93### v 0.0.3 (1/13/14)
94
95- added startVal param
96- ability to count in either direction
97- ability to toggle easing
98- added minified version thanks to @HHSnopek
99
100### v 0.0.2 (1/13/14)
101
102- coffeescript version added thanks to @HHSnopek
103- bower & component support
104- changelog added
105- bug fixes and improvements thanks to @lifthrasiir
106
107### v 0.0.1 (12/31/13)
108
109- initial release