Releases: crisbeto/angular-svg-round-progressbar
Releases · crisbeto/angular-svg-round-progressbar
0.4.3
0.4.2
0.4.1
0.4.0
- Renamed the module to
angular-svg-round-progressbar
in order to match the name on NPM and Bower. - Started using
performance.now
for the animation timing, if the browser supports it. - Removed some styles that were being set twice in a row for some reason.
- Fixed some crappy indentation and removed unnecessary quotes.
- Switched to using string concatenation instead of joining arrays in order to avoid having to create a whole lot of arrays.
Breaking change
The module used to be named angular-svg-round-progress
, which wasn't consistent with the repo name, the package on NPM and the package on Bower. Please rename the one in your Angular module to angular-svg-round-progressbar
. Example:
Before:
angular.module('someModule', ['angular-svg-round-progress'])
After:
angular.module('someModule', ['angular-svg-round-progressbar'])