progressbar.js v0.9.0 Release Notes

Release Date: 2015-08-04 // over 8 years ago
  • Contains API breaking changes compared to 0.8.x:

    • Square shape is now removed from the API. It's not very useful bar type. You can still find it from ./src/square.js, you can manually add it to your project
    • ๐Ÿ’… options.text.autoStyle is replaced with options.text.style. If you had autoStyle: false, you should now use options.text.style = null. That will disable all default styles. New API for style changes improves the control of inline styles.
    • โž• Add options.svgStyle and automatically resizes to the container. width: 100%; css style is set for the SVG element.

    Other additions:

    ๐Ÿ†• New shape: SemiCircle

    ๐Ÿฑ semicircle

    ๐Ÿ”ฆ Expose more internal modules for customization Shape and utils are now exposed. ffb151d

    โฌ†๏ธ Upgrade to shifty version 1.5.0, easing can be now specified as a function.

    ๐Ÿ‘Œ Improve code consistency with linters.