Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 3.6.0 #6056

Merged
merged 4 commits into from
Dec 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ about: Create a report with a reproducible test case in a JSFIDDLE

<!-- BUG TEMPLATE -->
## Version
3.5.1
3.6.0

## Test Case
http://jsfiddle.net/fabricjs/Da7SP/
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/help-with-my-own-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ about: Report a question you previously open on stack overflow with enough conte

---

<!--
<!--
Add a brief description of your problem and link a stack overflow question that is already posted and that contains a full working snippet and not a link to a fiddle, of your problem.

Missing that issue will be closed with no response.
Expand All @@ -18,5 +18,5 @@ The issue tracker is only for bugs (with reproducible minimal test case) and fea
- Read the object caching introduction: http://fabricjs.com/fabric-object-caching
- Read the docs: http://fabricjs.com/docs
- Explore demos: http://fabricjs.com/demos
- Look for/ask questions on StackOverflow: http://stackoverflow.com/questions/tagged/fabricjs
- Look for/ask questions on StackOverflow: http://stackoverflow.com/questions/tagged/fabricjs
-->
13 changes: 0 additions & 13 deletions .github/ISSUE_TEMPLATE/none-of-the-above.md

This file was deleted.

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [3.6.0]
- fix: ISSUE-5512 better Clippath transform parsing in SVG [#5983](https://github.com/fabricjs/fabric.js/pull/5983)
- fix: ISSUE-5984 Avoid enter editing in non selectable object [#5989](https://github.com/fabricjs/fabric.js/pull/5989)
- Tweak to object._setLineDash to avoid cycles when nothing in array [#6000](https://github.com/fabricjs/fabric.js/pull/6000)
- fix: ISSUE-5867 Fix the extra new line selection with empty line [#6011](https://github.com/fabricjs/fabric.js/pull/6011)
- Improvement: Use SVG Namespace for SVG Elements [#5957](https://github.com/fabricjs/fabric.js/pull/5957)
- Improvement: ISSUE-4115 - triggers in/out events for sub targets [#6013](https://github.com/fabricjs/fabric.js/pull/6013)
- Improvement: Upper canvas retina scaling [#5938](https://github.com/fabricjs/fabric.js/pull/5938)

## [3.5.1]
- Fix for textbox non defined in scaleObject [#5896](https://github.com/fabricjs/fabric.js/pull/5896)
- Fix canvas pattern as background and exports [#5973](https://github.com/fabricjs/fabric.js/pull/5973)
Expand Down
2 changes: 1 addition & 1 deletion 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) */

var fabric = fabric || { version: '3.5.1' };
var fabric = fabric || { version: '3.6.0' };
if (typeof exports !== 'undefined') {
exports.fabric = fabric;
}
Expand Down
Loading