Skip to content

Commit 3a3c332

Browse files
authored
Prepare v0.16.0 releases (#1405)
* [core] v0.16.0 * [fwfh_cached_network_image] v0.16.0 * [fwfh_chewie] v0.16.0 * [fwfh_just_audio] v0.16.0 * [fwfh_svg] v0.16.0 * [fwfh_url_launcher] v0.16.0 * [fwfh_webview] v0.15.4 * [enhanced] v0.16.0
1 parent 6701735 commit 3a3c332

File tree

25 files changed

+90
-46
lines changed

25 files changed

+90
-46
lines changed

demo_app/pubspec.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -294,14 +294,14 @@ packages:
294294
path: "../packages/enhanced"
295295
relative: true
296296
source: path
297-
version: "0.15.3"
297+
version: "0.16.0"
298298
flutter_widget_from_html_core:
299299
dependency: "direct main"
300300
description:
301301
path: "../packages/core"
302302
relative: true
303303
source: path
304-
version: "0.15.2"
304+
version: "0.16.0"
305305
frontend_server_client:
306306
dependency: transitive
307307
description:
@@ -316,42 +316,42 @@ packages:
316316
path: "../packages/fwfh_cached_network_image"
317317
relative: true
318318
source: path
319-
version: "0.14.3"
319+
version: "0.16.0"
320320
fwfh_chewie:
321321
dependency: "direct main"
322322
description:
323323
path: "../packages/fwfh_chewie"
324324
relative: true
325325
source: path
326-
version: "0.14.8"
326+
version: "0.16.0"
327327
fwfh_just_audio:
328328
dependency: "direct overridden"
329329
description:
330330
path: "../packages/fwfh_just_audio"
331331
relative: true
332332
source: path
333-
version: "0.15.2"
333+
version: "0.16.0"
334334
fwfh_svg:
335335
dependency: "direct overridden"
336336
description:
337337
path: "../packages/fwfh_svg"
338338
relative: true
339339
source: path
340-
version: "0.8.3"
340+
version: "0.16.0"
341341
fwfh_url_launcher:
342342
dependency: "direct overridden"
343343
description:
344344
path: "../packages/fwfh_url_launcher"
345345
relative: true
346346
source: path
347-
version: "0.9.1"
347+
version: "0.16.0"
348348
fwfh_webview:
349349
dependency: "direct main"
350350
description:
351351
path: "../packages/fwfh_webview"
352352
relative: true
353353
source: path
354-
version: "0.15.3"
354+
version: "0.15.4"
355355
glob:
356356
dependency: transitive
357357
description:
@@ -1169,10 +1169,10 @@ packages:
11691169
dependency: transitive
11701170
description:
11711171
name: win32
1172-
sha256: daf97c9d80197ed7b619040e86c8ab9a9dad285e7671ee7390f9180cc828a51e
1172+
sha256: b89e6e24d1454e149ab20fbb225af58660f0c0bf4475544650700d8e2da54aef
11731173
url: "https://pub.dev"
11741174
source: hosted
1175-
version: "5.10.1"
1175+
version: "5.11.0"
11761176
xdg_directories:
11771177
dependency: transitive
11781178
description:

packages/core/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.16.0
2+
3+
- Requires Flutter 3.22 (#1403)
4+
- Add support for CSS `gap` (#1403)
5+
16
## 0.15.2
27

38
- Add support for Flutter 3.24 (#1308)
@@ -7,7 +12,7 @@
712

813
## 0.15.1
914

10-
- Drop support for Flutter 3.7 (#1250)
15+
- Requires Flutter 3.10 (#1250)
1116
- Add support for `currentcolor` (#1240)
1217
- Fix zero size image (#1266)
1318

packages/core/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Add this to your app's `pubspec.yaml` file:
1717

1818
```yaml
1919
dependencies:
20-
flutter_widget_from_html_core: ^0.15.2
20+
flutter_widget_from_html_core: ^0.16.0
2121
```
2222
2323
## Usage
@@ -146,12 +146,13 @@ These tags and their contents will be ignored:
146146
- In `flex` mode:
147147
- flex-direction: column/row
148148
- align-items: flex-start/flex-end/center/baseline/stretch
149+
- gap: value in `em`, `%`, `pt` and `px`
149150
- justify-content: flex-start/flex-end/center/space-between/space-around/space-evenly
150151
- font-family
151152
- font-size: absolute (e.g. `xx-large`), relative (`larger`, `smaller`) or values in `em`, `%`, `pt` and `px`
152153
- font-style: italic/normal
153154
- font-weight: bold/normal/100..900
154-
- line-height: `normal`, number or values in `em`, `%`, `pt` and `px`
155+
- line-height: `normal`, number or value in `em`, `%`, `pt` and `px`
155156
- margin: 4 values, 2 values or 1 value in `em`, `pt` and `px`
156157
- margin-top, margin-right, margin-bottom, margin-left
157158
- margin-block-start, margin-block-end

packages/core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: flutter_widget_from_html_core
2-
version: 0.15.2
2+
version: 0.16.0
33
description: Flutter package to render html as widgets that focuses on correctness and extensibility.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html/tree/master/packages/core
55

packages/enhanced/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.16.0
2+
3+
- Requires Flutter 3.22 (#1403)
4+
- Add support for CSS `gap` (#1403)
5+
16
## 0.15.3
27

38
- Add support for webview_flutter_android@4 (#1366)
@@ -12,7 +17,6 @@
1217

1318
## 0.15.1
1419

15-
- Drop support for Flutter 3.7 (#1250)
1620
- Add support for `currentcolor` (#1240)
1721
- Fix zero size image (#1266)
1822
- Replace webview timers with ResizeObserver (#1241)

packages/enhanced/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Add this to your app's `pubspec.yaml` file:
2727

2828
```yaml
2929
dependencies:
30-
flutter_widget_from_html: ^0.15.3
30+
flutter_widget_from_html: ^0.16.0
3131
```
3232
3333
### Platform specific configuration
@@ -166,12 +166,13 @@ These tags and their contents will be ignored:
166166
- In `flex` mode:
167167
- flex-direction: column/row
168168
- align-items: flex-start/flex-end/center/baseline/stretch
169+
- gap: value in `em`, `%`, `pt` and `px`
169170
- justify-content: flex-start/flex-end/center/space-between/space-around/space-evenly
170171
- font-family
171172
- font-size: absolute (e.g. `xx-large`), relative (`larger`, `smaller`) or values in `em`, `%`, `pt` and `px`
172173
- font-style: italic/normal
173174
- font-weight: bold/normal/100..900
174-
- line-height: `normal`, number or values in `em`, `%`, `pt` and `px`
175+
- line-height: `normal`, number or value in `em`, `%`, `pt` and `px`
175176
- margin: 4 values, 2 values or 1 value in `em`, `pt` and `px`
176177
- margin-top, margin-right, margin-bottom, margin-left
177178
- margin-block-start, margin-block-end

packages/enhanced/pubspec.yaml

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
name: flutter_widget_from_html
2-
version: 0.15.3
2+
version: 0.16.0
33
description: Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

66
environment:
7-
flutter: ">=3.16.0"
8-
sdk: ">=3.2.0 <4.0.0"
7+
flutter: ">=3.22.0"
8+
sdk: ">=3.4.0 <4.0.0"
99

1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
flutter_widget_from_html_core: ^0.15.2
14-
fwfh_cached_network_image: ^0.14.3
15-
fwfh_chewie: ^0.14.8
16-
fwfh_just_audio: ^0.15.2
17-
fwfh_svg: ^0.8.3
18-
fwfh_url_launcher: ^0.9.1
19-
fwfh_webview: ^0.15.3
13+
flutter_widget_from_html_core: ^0.16.0
14+
fwfh_cached_network_image: ^0.16.0
15+
fwfh_chewie: ^0.16.0
16+
fwfh_just_audio: ^0.16.0
17+
fwfh_svg: ^0.16.0
18+
fwfh_url_launcher: ^0.16.0
19+
fwfh_webview: ^0.15.4
2020
html: ^0.15.0
2121

2222
dependency_overrides:
@@ -36,6 +36,10 @@ dependency_overrides:
3636
path: ../fwfh_webview
3737

3838
dev_dependencies:
39+
40+
# otherwise it will install v1.8.7 which is in fact incompatible with [email protected]
41+
# TODO: remove this when our minimum Flutter version >= 3.24
42+
chewie: ^1.7.5
3943
file:
4044
flutter_test:
4145
sdk: flutter

packages/fwfh_cached_network_image/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.16.0
2+
3+
- Requires Flutter 3.10 (#1396)
4+
- Add support for [email protected] (#1405)
5+
16
## 0.14.3
27

38
- Add support for [email protected] (#1269)

packages/fwfh_cached_network_image/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Add this to your app's `pubspec.yaml` file:
1414
```yaml
1515
dependencies:
1616
flutter_widget_from_html_core: any
17-
fwfh_cached_network_image: ^0.14.3
17+
fwfh_cached_network_image: ^0.16.0
1818
```
1919
2020
## Usage

packages/fwfh_cached_network_image/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: fwfh_cached_network_image
2-
version: 0.14.3
2+
version: 0.16.0
33
description: WidgetFactory extension to render IMG with cached_network_image plugin.
44
homepage: https://github.com/daohoangson/flutter_widget_from_html
55

@@ -12,7 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414
flutter_cache_manager: ^3.0.0
15-
flutter_widget_from_html_core: ">=0.8.0 <0.16.0"
15+
flutter_widget_from_html_core: ">=0.8.0 <0.17.0"
1616

1717
dependency_overrides:
1818
flutter_widget_from_html_core:

0 commit comments

Comments
 (0)