Skip to content

Commit e09d6db

Browse files
authored
built 2.3.5 (fabricjs#5166)
1 parent e5e4387 commit e09d6db

7 files changed

+95
-91
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
**Version 2.3.5**
2+
- Change: make canvas.getObjects() always return a shallow copy of the array [#5162](https://github.com/fabricjs/fabric.js/pull/5162)
3+
- Fix: Improve fabric.Pattern.toSVG to look correct on offsets and no-repeat [#5164](https://github.com/fabricjs/fabric.js/pull/5164)
4+
- Fix: Do not enter edit in Itext if the mouseUp is relative to a group selector [#5153](https://github.com/fabricjs/fabric.js/pull/5153)
5+
- Improvement: Do not require xlink namespace in front of href attribut for svgs ( is a SVG2 new spec, unsupported ) [#5156](https://github.com/fabricjs/fabric.js/pull/5156)
6+
- Fix: fix resizeFilter having the wrong cached texture, also improved interaction between filters [#5165](https://github.com/fabricjs/fabric.js/pull/5165)
7+
18
**Version 2.3.4**
29
- Fix: ToSVG was ignoring excludeFromExport for backgroundImage and OverlayImage. [#5075](https://github.com/fabricjs/fabric.js/pull/5075)
310
- Fix: ToSVG for circle with start and end angles. [#5085](https://github.com/fabricjs/fabric.js/pull/5085)

HEADER.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*! Fabric.js Copyright 2008-2015, Printio (Juriy Zaytsev, Maxim Chernyak) */
22

3-
var fabric = fabric || { version: '2.3.4' };
3+
var fabric = fabric || { version: '2.3.5' };
44
if (typeof exports !== 'undefined') {
55
exports.fabric = fabric;
66
}

ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Remove the template from below and provide thoughtful commentary *and code sampl
2525

2626
<!-- BUG TEMPLATE -->
2727
## Version
28-
2.3.0
28+
2.3.5
2929

3030
## Test Case
3131
http://jsfiddle.net/fabricjs/Da7SP/

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ Fabric.js allows you to easily create simple shapes like rectangles, circles, tr
4242

4343
### Goals
4444

45-
- Unit tested (4800+ assertion, 1050+ tests at the moment, 76%+ coverage)
45+
- Unit tested (1150+ tests at the moment, 79%+ coverage)
4646
- Modular (~60 small ["classes", modules, mixins](http://fabricjs.com/docs/))
4747
- Cross-browser
4848
- [Fast](https://github.com/kangax/fabric.js/wiki/Focus-on-speed)
4949
- Encapsulated in one object
5050
- No browser sniffing for critical functionality
5151
- Runs under ES5 strict mode
52-
- Runs on a server under [Node.js](http://nodejs.org/) (stable releases and latest of current) (see [Node.js limitations](https://github.com/kangax/fabric.js/wiki/Fabric-limitations-in-node.js))
52+
- Runs on a server under [Node.js](http://nodejs.org/) (active stable releases and latest of current) (see [Node.js limitations](https://github.com/kangax/fabric.js/wiki/Fabric-limitations-in-node.js))
5353
- Follows [Semantic Versioning](http://semver.org/)
5454

5555
### Supported browsers

0 commit comments

Comments
 (0)