Skip to content

Commit

Permalink
v653
Browse files Browse the repository at this point in the history
  • Loading branch information
asturur committed Dec 4, 2024
1 parent 7411960 commit a0b4adf
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 13 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [next]

## [6.5.3]

- fix(ColorMatrix): Restore correct alpha for JS colorMatrix filter [#10313](https://github.com/fabricjs/fabric.js/pull/10313)

## [6.5.2]
Expand Down
2 changes: 1 addition & 1 deletion dist/index.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.min.mjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index.min.mjs.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class Cache {
}
const cache = new Cache();

var version = "6.5.2";
var version = "6.5.3";

// use this syntax so babel plugin see this import here
const VERSION = version;
Expand Down Expand Up @@ -26557,7 +26557,7 @@ class ColorMatrix extends BaseFilter {
data[i] += a * m[3];
data[i + 1] += a * m[8];
data[i + 2] += a * m[13];
data[i + 3] += a * m[18];
data[i + 3] = r * m[15] + g * m[16] + b * m[17] + a * m[18] + m[19] * 255;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.mjs.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/index.node.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ class Cache {
}
const cache = new Cache();

var version = "6.5.2";
var version = "6.5.3";

// use this syntax so babel plugin see this import here
const VERSION = version;
Expand Down Expand Up @@ -26613,7 +26613,7 @@ class ColorMatrix extends BaseFilter {
data[i] += a * m[3];
data[i + 1] += a * m[8];
data[i + 2] += a * m[13];
data[i + 3] += a * m[18];
data[i + 3] = r * m[15] + g * m[16] + b * m[17] + a * m[18] + m[19] * 255;
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/index.node.mjs.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "fabric",
"description": "Object model for HTML5 canvas, and SVG-to-canvas parser. Backed by jsdom and node-canvas.",
"homepage": "http://fabricjs.com/",
"version": "6.5.2",
"version": "6.5.3",
"author": "Juriy Zaytsev <[email protected]>",
"contributors": [
{
Expand Down

0 comments on commit a0b4adf

Please sign in to comment.