Skip to content

Commit 4f51536

Browse files
committed
release: 0.14.2
1 parent 9ffe8ee commit 4f51536

File tree

2 files changed

+38
-21
lines changed

2 files changed

+38
-21
lines changed

webf/CHANGELOG.md

Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,48 @@
1-
## 0.14.2-beta.2+1
1+
## 0.14.2
22

3-
**Bug Fixed**
4-
5-
1. fix: fix percentage width and height not working under inline block box. https://github.com/openwebf/webf/pull/430
6-
2. fix: fix Node.insertBefore with SVGElement error. https://github.com/openwebf/webf/pull/431
7-
3. fix: fix cookie delete file error when it's not available. https://github.com/openwebf/webf/pull/429
8-
9-
**Features**
10-
11-
1. feat: optimize location API for better performance results. https://github.com/openwebf/webf/pull/420
3+
**Break Changes**
124

13-
## 0.14.2-beta.2
5+
1. Remove `navigator.connection` API. https://github.com/openwebf/webf/pull/411
146

157
**Features**
168

17-
1. feat: optimize the webf_bridge and quickjs binary size. https://github.com/openwebf/webf/pull/414
18-
2. feat: support CSS initial length value. https://github.com/openwebf/webf/pull/421
19-
3. feat: optimize Element.children() and Document.all() performance. https://github.com/openwebf/webf/pull/424
9+
1. Optimize location API for better performance results. https://github.com/openwebf/webf/pull/420
10+
2. Optimize the size of webf_bridge.xcframework and quickjs.xcframework. https://github.com/openwebf/webf/pull/414
11+
3. Support CSS initial length value. https://github.com/openwebf/webf/pull/421
12+
4. Optimize Element.children() and Document.all() performance. https://github.com/openwebf/webf/pull/424
13+
5. Support base64 format font data in @font-face src. https://github.com/openwebf/webf/pull/399
14+
6. Support Element.dir API. https://github.com/openwebf/webf/pull/418
15+
7. Add `<circle />` and `<ellipse>` tags for SVG. https://github.com/openwebf/webf/pull/423
16+
8. Support share customized JS properties in event object. https://github.com/openwebf/webf/pull/427
17+
9. Support `window.pageXOffset` and `window.pageYOffset` API. https://github.com/openwebf/webf/pull/428/files
18+
10. Optimize layout/paint performance when block box size is fixed. https://github.com/openwebf/webf/pull/450
19+
11. Optimize performance when update Element.className. https://github.com/openwebf/webf/pull/452
20+
12. Support CanvasRenderingContext2D.createPattern() API. https://github.com/openwebf/webf/pull/464
2021

2122
**Bug Fixed**
2223

23-
1. fix: fix use css vars with initial. https://github.com/openwebf/webf/pull/421/commits/1da2e5899c53e82a31271c26de3333168e780134
24-
0.15.0-beta.3
25-
2. fix: fix toggle position: fixed on bodyElement with other fixed elements. https://github.com/openwebf/webf/pull/416
26-
3. fix: css nth-child not work. https://github.com/openwebf/webf/pull/417
27-
4. fix: fix Node.childNodes didn't update when nodes changed. https://github.com/openwebf/webf/pull/419
28-
5. fix: fix loading fonts cause assertion when remove or attach RenderObjects. https://github.com/openwebf/webf/pull/425
24+
1. Fix use css vars with initial. https://github.com/openwebf/webf/pull/421
25+
2. Fix toggle position: fixed on bodyElement with other fixed elements. https://github.com/openwebf/webf/pull/416
26+
3. Fss nth-child not work. https://github.com/openwebf/webf/pull/417
27+
4. Fix Node.childNodes didn't update when nodes changed. https://github.com/openwebf/webf/pull/419
28+
5. Fix loading fonts cause assertion when remove or attach RenderObjects. https://github.com/openwebf/webf/pull/425
29+
6. Fix percentage width and height not working under inline block box. https://github.com/openwebf/webf/pull/430
30+
7. Fix Node.insertBefore with SVGElement error. https://github.com/openwebf/webf/pull/431
31+
8. Fix cookie delete file error when it's not available. https://github.com/openwebf/webf/pull/429
32+
9. Fix read ANDROID_SDK_HOME before implying to platform defaults. https://github.com/openwebf/webf/pull/422
33+
10. Fix cookie delete file error. https://github.com/openwebf/webf/pull/429
34+
11. Fix percentage width and height not working under inline block box. https://github.com/openwebf/webf/pull/430
35+
12. Fix Node.insertBefore with SVGElement error. https://github.com/openwebf/webf/pull/431
36+
13. Fix DevTool's network panel not working. https://github.com/openwebf/webf/pull/435
37+
14. Losen intl dependency constraint. https://github.com/openwebf/webf/pull/439
38+
15. Fix built-in methods in the event object cannot be overridden. https://github.com/openwebf/webf/pull/443
39+
16. Fix crash when touching pseduo elements. https://github.com/openwebf/webf/pull/445
40+
17. Fix event not responding when multiple flutter engine created. https://github.com/openwebf/webf/pull/451
41+
18. Fix Element.style.cssText API not works. https://github.com/openwebf/webf/pull/455
42+
19. Fix use-of-free crash of shared string property in event object. https://github.com/openwebf/webf/pull/458
43+
20. Fix dynamic build items in WidgetElement. https://github.com/openwebf/webf/pull/461
44+
21. Fix CSS content property have sequences of unicode chars. https://github.com/openwebf/webf/pull/463
45+
22. Fix crash when create unsupported svg element with style. https://github.com/openwebf/webf/pull/465
2946

3047
## 0.14.1
3148

webf/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: webf
22
description: W3C standards-compliant web rendering engine based on Flutter, allowing web applications to run natively on Flutter.
3-
version: 0.14.2-beta.2+1
3+
version: 0.14.2
44
homepage: https://openwebf.com
55

66
environment:

0 commit comments

Comments
 (0)