Skip to content

Commit

Permalink
changes (#4676)
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur authored Feb 4, 2018
1 parent dea22ac commit 58f2488
Show file tree
Hide file tree
Showing 9 changed files with 251 additions and 147 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
**Version 2.0.0**
- final
- fix dataurl and svg export on retina and rounding [#4674](https://github.com/kangax/fabric.js/pull/4674)
- avoid error if iText is removed on mousedown [#4650](https://github.com/kangax/fabric.js/pull/4650)
- fix calcOffset when text enter editing [#4649](https://github.com/kangax/fabric.js/pull/4649)
- Gradient fix parsing floats [#4637](https://github.com/kangax/fabric.js/pull/4637)
- Add CrossOrigin managment to fabric.Pattern [#4618](https://github.com/kangax/fabric.js/pull/4618)
- Add patternTransform toObject saving [#4626](https://github.com/kangax/fabric.js/pull/4626)
- normalize brushes render [#4613](https://github.com/kangax/fabric.js/pull/4613)
- avoid charspacing shortcut [#4594](https://github.com/kangax/fabric.js/pull/4594)
- Fix color toHexa() [#4579](https://github.com/kangax/fabric.js/pull/4579)
- rc3 and rc4
- more fixes to transformMatrix memoization
- Canvas.selectionFullyContained allows you to select objects just when full grabbed by the selections. [#4508](https://github.com/kangax/fabric.js/pull/4508)
Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
To get your questions answered, please ask/search on [Fabric's google group], [StackOverflow] or on Fabric's IRC channel (irc://irc.freenode.net/#fabric.js).
Please do not open an issue if you're not sure it's a bug or if it's not a feature/suggestion.

For news about Fabric you can follow [@fabric.js], [@kangax], or [@kienzle_s] on Twitter.
For news about Fabric you can follow [@fabric.js], [@AndreaBogazzi], [@kangax], or [@kienzle_s] on Twitter.
Demos and examples can be found on [jsfiddle], [codepen.io] and [fabricjs.com].

## Issue tracker
Expand Down Expand Up @@ -61,10 +61,12 @@ Here are a few notes you should take into account:
[Fabric's google group]: https://groups.google.com/forum/#!forum/fabricjs
[stackoverflow]: http://stackoverflow.com/questions/tagged/fabricjs
[@fabric.js]: https://twitter.com/fabricjs
[@AndreaBogazzi]: https://twitter.com/AndreaBogazzi
[@kangax]: https://twitter.com/kangax
[@kienzle_s]: https://twitter.com/kienzle_s
[jsfiddle]: http://jsfiddle.net/user/fabricjs/fiddles
[codepen.io]: http://codepen.io/tag/fabricjs
[fabricjs.com]: http://fabricjs.com/demos
[fabricjs.com/docs]: http://fabricjs.com/docs
[JSDoc 3]: http://usejsdoc.org/
[issue]: https://github.com/kangax/fabric.js/issues
4 changes: 2 additions & 2 deletions HEADER.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */

var fabric = fabric || { version: '2.0.0-rc.4' };
var fabric = fabric || { version: '2.0.0' };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
Expand Down
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Fabric.js allows you to easily create simple shapes like rectangles, circles, tr

### Goals

- Unit tested (4600+ assertion, 940+ tests at the moment, 75%+ coverage)
- Unit tested (4800+ assertion, 1050+ tests at the moment, 76%+ coverage)
- Modular (~60 small ["classes", modules, mixins](http://fabricjs.com/docs/))
- Cross-browser
- [Fast](https://github.com/kangax/fabric.js/wiki/Focus-on-speed)
Expand Down Expand Up @@ -130,13 +130,9 @@ To install Fabric.js using npm, you must first manually [install Cairo](http://c

//# sourceMappingURL=fabric.min.js.map

6. Lint source code (prerequisite: `npm -g install jshint`)
6. Ensure code guidelines are met (prerequisite: `npm -g install eslint`)

$ npm run lint_tests

7. Ensure code guidelines are met (prerequisite: `npm -g install jscs`)

$ npm run lint
$ npm run lint && npm run lint_tests

<h3 id="fabric-building">Testing</h3>

Expand Down Expand Up @@ -239,7 +235,7 @@ For example:

### Staying in touch

Follow [@fabric.js](http://twitter.com/fabricjs), [@kangax](http://twitter.com/kangax) or or [@AndreaBogazzi](http://twitter.com/AndreaBogazzi) on twitter.
Follow [@fabric.js](http://twitter.com/fabricjs), [@kangax](http://twitter.com/kangax) or [@AndreaBogazzi](http://twitter.com/AndreaBogazzi) on twitter.

Questions, suggestions — [fabric.js on Google Groups](http://groups.google.com/group/fabricjs).

Expand All @@ -258,7 +254,7 @@ Get help in Fabric's IRC channel — irc://irc.freenode.net/#fabric.js
- [Maxim "hakunin" Chernyak](http://twitter.com/hakunin) for ideas, and help with various parts of the library throughout its life
- [Sergey Nisnevich](http://nisnya.com) for help with geometry logic
- [Stefan Kienzle](https://twitter.com/kienzle_s) for help with bugs, features, documentation, GitHub issues
- [Shutterstock](http://www.shutterstock.com) for the time and resources invested in using and improving fabric.js
- [Shutterstock](http://www.shutterstock.com/jobs) for the time and resources invested in using and improving fabric.js
- [And all the other GitHub contributors](https://github.com/kangax/fabric.js/graphs/contributors)

### MIT License
Expand Down
Loading

0 comments on commit 58f2488

Please sign in to comment.