Skip to content

Releases: kimmobrunfeldt/progressbar.js

Disabled console warnings

23 Apr 11:21
Compare
Choose a tag to compare

They are now available via warnings option.

#breaking Styling improvements

14 Mar 14:32
Compare
Choose a tag to compare
  • New documentation in http://progressbarjs.readthedocs.org/en/1.0.0/

  • Fixed and updated sauce labs tests

  • Add text.autoStyleContainer option

  • HTML string or DOM element is now possible to pass in opts.text.value or to .setText method

  • breaking: Change behavior default style options. From now on, if you define anything to opts.svgStyle or opts.text.style yourself, no default values will be used. This makes customising the styles easier in JS. If you want to only change one single style attribute, you can do it after initializing the progress bar, like this:

    var bar = new ProgressBar.Line('#container');
    bar.text.style.fontSize = '40px';
  • Fix #107

#breaking -Square +SemiCircle, and a lot of improvements

04 Aug 00:14
Compare
Choose a tag to compare

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.

Fix text centering bug in IE

08 Apr 17:10
Compare
Choose a tag to compare
  • Fix bug where text was not centered in IE. Fixes #52

#breaking Step function improvements

08 Apr 16:51
Compare
Choose a tag to compare

API breaking change for step function! If you haven't used option.attachment, nothing has changed. Most likely you don't need to change anything.

Thanks to @prodigitalson who provided fixes to step function and added a lot of tests.

All changes:

  • API breaking change to step function:

    Before this release, Shape was passed as an attachment to Path. If you overrode the attachment, there was no way to get reference to the Shape inside step function.
    Before:

    step: function(state, attachment) {
        // Do step
    }

    Now you can always reference to the Shape or Path inside the step function. Reference to self is passed as second parameter. User's custom attachment is now passed as the third parameter
    After:

    step: function(state, self, attachment) {
        // self is reference to Shape or Path
        // Do step
    }            
  • Expose SVG path element as .path attribute for Path objects. That is consistent with Shape objects.

  • Make it possible to pass selector as a string to Path object. Earlier only direct element was accepted.

  • More tests

Bug fixes

13 Jan 21:51
Compare
Choose a tag to compare

These were fixed and released fast because some functionality was broken

  • Fixed bugs when step function was initially called. value() function returns now 0 in initial step call.
  • Fix bug where two text nodes were left inside progress bar
  • Fix bug with custom easings in initial step function

Fixed visual bug with text

13 Jan 19:26
Compare
Choose a tag to compare

Fix clipping trail bug

12 Jan 22:25
Compare
Choose a tag to compare
  • Fix bug where trailWidth was clipped if it was wider then actual stroke

Minor bug fixes

12 Jan 21:55
Compare
Choose a tag to compare
  • Call step function on initialization also
  • Fix text creation with setText if opts.text is not defined at initialization
  • When calling step in .set() method, use correct easing instead of hardcoded linear
  • Remove unnecessary step call on tween finish

Add .text and .setText() and minor fixes

11 Jan 00:45
Compare
Choose a tag to compare

Adds .text and .setText() to API, but is backwards compatible

  • Add text option and setText method
  • Throw better error if container does not exist
  • Small refactoring
  • Call given step function when .set() is called
  • Decrease precision of returned progressbar value