Skip to content

Releases: crisbeto/angular-svg-round-progressbar

0.4.5

04 Jul 11:11

Choose a tag to compare

This release only has build improvements:

  • Wraps the output files in an IIFE.
  • Removes strict mode from the source files and adds an implied strict mode to the JSHint config.
  • Updates the Grunt dependencies.

0.4.4

06 May 17:40

Choose a tag to compare

  • Adds ARIA attributes for improved accessibility.
  • Fixes the inherited offset not working properly when using the directive as an element. Should also be faster since it switches from traversing the DOM to traversing the scope chain.
  • Switches the examples to use the directive as an element.

0.4.3

01 May 13:33

Choose a tag to compare

Removes the deprecated proxy module.

0.4.2

30 Mar 21:04

Choose a tag to compare

Uses a more robust fallback for performance.now.

0.4.1

24 Mar 18:31

Choose a tag to compare

Added a proxy module that will prevent any builds from breaking due to the module rename in 0.4.0. The proxy module will be removed on May 1st 2016.

0.4.0

24 Mar 16:55

Choose a tag to compare

  • 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'])

0.3.10

23 Jan 09:32

Choose a tag to compare

  • Adds the onRender callback.
  • Doesn't repeat the previous animation whenever the easing function or the animation duration have changed.
  • Updates to the latest Angular version in the demo.

0.3.9

27 Dec 10:01

Choose a tag to compare

  • Adds the ability to delay an animation via the animationDelay property.
  • Properly prevents parallel animations.

0.3.8

21 Oct 18:04

Choose a tag to compare

Fixes issues with references resources that are in pages with a <base> element. #46

0.3.7

13 Oct 04:59

Choose a tag to compare

Adds a utility method for getting an individual progressbar's options and fixes an issue when auto-calculating offsets.