canvaskit-wasm
Advanced tools
Comparing version 0.37.0 to 0.37.1
@@ -9,2 +9,11 @@ # CanvasKit Changelog | ||
## [0.37.1] - 2022-11-08 | ||
### Fixed | ||
- Font resolution algorithm for ellipsis in SkParagraph (skbug.com/11797) | ||
- GrContexts will properly target the correct WebGL context | ||
- CanvasKit built with no_embedded_font will properly link and be able to load fonts from passed-in | ||
bytes. | ||
- Text styled with fontSize or heightMultiplier 0 will be invisible. | ||
## [0.37.0] - 2022-09-07 | ||
@@ -11,0 +20,0 @@ |
{ | ||
"name": "canvaskit-wasm", | ||
"version": "0.37.0", | ||
"version": "0.37.1", | ||
"description": "A WASM version of Skia's Canvas API", | ||
@@ -5,0 +5,0 @@ "main": "bin/canvaskit.js", |
@@ -618,11 +618,9 @@ // This file is type-checked by the Typescript definitions. It is not actually executed. | ||
const mallocedGraphemes = new Uint32Array(10); | ||
const mallocedSoftBreaks = new Uint32Array(10); | ||
const mallocedHardBreaks = new Uint32Array(10); | ||
const paragraph3 = builder.buildWithClientInfo( | ||
const mallocedLineBreaks = new Uint32Array(10); | ||
const paragraph3 = builder.buildWithClientInfo(// $ExpectType Paragraph | ||
mallocedBidis, | ||
mallocedWords, | ||
mallocedGraphemes, | ||
mallocedSoftBreaks, | ||
mallocedHardBreaks | ||
); // $ExpectType Paragraph | ||
mallocedLineBreaks | ||
); | ||
} | ||
@@ -629,0 +627,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Native code
Supply chain riskContains native code (e.g., compiled binaries or shared libraries). Including native code can obscure malicious behavior.
Found 3 instances in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24
7845
24450973
15