Skip to content
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
5 changes: 5 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.8.2

- Optimize `HtmlListMarker` (#623)
- Fix leading and trailing whitespace within `PRE` being trimmed (#624)

## 0.8.1

- Mark enhanced `HtmlWidget.webViewXxx` properties as deprecated (#614)
Expand Down
2 changes: 1 addition & 1 deletion packages/core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your app's `pubspec.yaml` file:

```yaml
dependencies:
flutter_widget_from_html_core: ^0.8.1
flutter_widget_from_html_core: ^0.8.2
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutter_widget_from_html_core
version: 0.8.1
version: 0.8.2
description: Flutter package to render html as widgets that focuses on correctness and extensibility.
homepage: https://github.com/daohoangson/flutter_widget_from_html/tree/master/packages/core

Expand Down
6 changes: 6 additions & 0 deletions packages/enhanced/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.8.2

- Optimize `HtmlListMarker` (#623)
- Fix leading and trailing whitespace within `PRE` being trimmed (#624)
- Replace `evaluateJavascript` with `runJavascriptReturningResult` (#625)

## 0.8.1+1

- Fix missing `test/images` directory
Expand Down
2 changes: 1 addition & 1 deletion packages/enhanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add this to your app's `pubspec.yaml` file:

```yaml
dependencies:
flutter_widget_from_html: ^0.8.1
flutter_widget_from_html: ^0.8.2
```

### Platform specific configuration
Expand Down
6 changes: 3 additions & 3 deletions packages/enhanced/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: flutter_widget_from_html
version: 0.8.1+1
version: 0.8.2
description: Flutter package to render html as widgets that supports hyperlink, image, audio, video, iframe and many other tags.
homepage: https://github.com/daohoangson/flutter_widget_from_html

Expand All @@ -10,13 +10,13 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_widget_from_html_core: ^0.8.1
flutter_widget_from_html_core: ^0.8.2
fwfh_cached_network_image: ^0.7.0+1
fwfh_chewie: ^0.7.0+1
fwfh_just_audio: ^0.6.2+2
fwfh_svg: ^0.7.1
fwfh_url_launcher: ^0.6.1+3
fwfh_webview: ^0.6.1+3
fwfh_webview: ^0.6.2
html: ^0.15.0

dependency_overrides:
Expand Down
5 changes: 5 additions & 0 deletions packages/fwfh_webview/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.2

- Add support for webview_flutter@2.2 (#625)
- Replace `evaluateJavascript` with `runJavascriptReturningResult` (#625)

## 0.6.1+3

- Update for Flutter 2.5 (#587)
Expand Down
2 changes: 1 addition & 1 deletion packages/fwfh_webview/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your app's `pubspec.yaml` file:
```yaml
dependencies:
flutter_widget_from_html_core: any
fwfh_webview: ^0.6.0
fwfh_webview: ^0.6.2
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/fwfh_webview/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: fwfh_webview
version: 0.6.1+3
version: 0.6.2
description: WidgetFactory extension to render IFRAME with the official WebView plugin.
homepage: https://github.com/daohoangson/flutter_widget_from_html

Expand Down