Jquery Circle Progress Versions Save

jQuery Plugin to draw animated circular progress bars

1.2.2

7 years ago
  • Update README
  • Fix unit tests
  • Fix easing function obsolete declaration

1.2.1

7 years ago

Update UMD code for CommonJS:

See #132.

1.2.0

7 years ago
  • Code style: JS code re-styled according to Google JavaScript Style Guide
  • Code style: new indentation for JS/JSON/HTML/CSS: 2 spaces
  • Docs: README.md updated
  • Docs: jsdocs are much better now, you can even build them: npm run build-docs (though they're still unfinished and not released)
  • Docs: new GitHub pages approach: use docs/ folder instead of gh-pages branch
  • Feature: minified version added. Run npm run build-min after each change to dist/circle-progress.js
  • Tests: dependencies updated to the latest versions and freezed via ~=X.Y version specifier
  • Tests: modernizr dropped from tests, it was for IE8 support only (which I have actually never implemented)
  • Tests: NPM dependencies used for tests instead of Bower
  • Tests: SauceLabs config updated & tested
  • Tests: TravisCI config updated & improved
  • Packaging: UMD implemented, which is: AMD + CommonJS + global object (common script inclusion)

1.1.4

7 years ago
  • README improved
  • First release on NPM

1.1.3

8 years ago

2.5 new features added:

  • get value with el.circleProgress('value')
  • set value with el.circleProgress('value', v) - it does update, not redraw
  • set initial config options via HTML data- attributes

1.1.2

9 years ago

Next layout options added:

  • line cap
  • gradient angle
  • gradient direction
  • gradient stop point custom position

Read more in README ;)

1.1.1

9 years ago

Just a few minor fixes and changes. And I like this version number

1.1.0

9 years ago

I've made a big code refactoring. Now the widget has own JS constructor and the instance! :+1:

You can get the instance by $(el).data('circle-progress'). JSDoc will explain everything what's happening inside.

All functionality is the same but with a little bonus. Now you can update specific property and redraw the widget with all the same other options.

Like so:

$(el).circleProgress({ fill: { color: 'red' }, value: 0.5 }); // init the widget
$(el).circleProgress({ value: 0.7 }); // change the value, color will stay 'red'
                                      // auto-redraw after that

1.0.0

9 years ago

First stable version, covered with Unit Tests + CI server.

  • reverse option added
  • fill: { image: imageInstance } implemented
  • QUnit tests + Karma runner + Travis CI

0.7.0

9 years ago
  • fixed bug when you have the same start animation value and end animation value (event gives progress: NaN)
  • back-incompatible: I have removed reversedAnimation option and added animationStartValue option (it covers reverse and gives more flexibility)
  • new command added: $(...).circleProgress('redraw')

See the docs on GitHub to learn more about new options