From 6d1d7e3b5602bb64b302ae1cd13d246c49cb83ae Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Sat, 30 Dec 2023 02:15:01 +0700 Subject: [PATCH] [enhanced] v0.14.10 --- .vscode/extensions.json | 1 - packages/core/README.md | 4 ++-- packages/enhanced/CHANGELOG.md | 6 +++++- packages/enhanced/README.md | 4 ++-- packages/enhanced/pubspec.yaml | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 306bb3d2f..0f9a8eb78 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -2,7 +2,6 @@ "recommendations": [ "bierner.markdown-mermaid", "dart-code.flutter", - "darkriszty.markdown-table-prettify", "foxundermoon.shell-format", "tomoyukim.vscode-mermaid-editor" ] diff --git a/packages/core/README.md b/packages/core/README.md index b324965dd..c7ef8a932 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -3,12 +3,12 @@ [![Flutter](https://github.com/daohoangson/flutter_widget_from_html/actions/workflows/flutter.yml/badge.svg)](https://github.com/daohoangson/flutter_widget_from_html/actions/workflows/flutter.yml) [![codecov](https://codecov.io/gh/daohoangson/flutter_widget_from_html/branch/master/graph/badge.svg)](https://codecov.io/gh/daohoangson/flutter_widget_from_html) [![Pub](https://img.shields.io/pub/v/flutter_widget_from_html_core.svg)](https://pub.dev/packages/flutter_widget_from_html_core) - + Flutter package to render html as widgets that focuses on correctness and extensibility. Supports [70+ most popular tags](https://demo.fwfh.dev/supported/tags.html). | [Live demo](https://demo.fwfh.dev/#/helloworldcore) | | -|-------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------| +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | | ![](https://raw.githubusercontent.com/daohoangson/flutter_widget_from_html/0001010/packages/core/example/HelloWorldCoreScreen1.gif) | ![](https://raw.githubusercontent.com/daohoangson/flutter_widget_from_html/0001010/packages/core/example/HelloWorldCoreScreen2.jpg) | ## Getting Started diff --git a/packages/enhanced/CHANGELOG.md b/packages/enhanced/CHANGELOG.md index d6ad59352..7712c6e7e 100644 --- a/packages/enhanced/CHANGELOG.md +++ b/packages/enhanced/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.14.10 + +- Fix SVG does not respect width/height attributes (#1144) + ## 0.14.9 - Fix justify text inside a table (#1120) @@ -269,7 +273,7 @@ This release includes some changes that may require migration if you have a cust - Add support for sandbox="allow-scripts" (#420) - Add support for file:// images (#432) - Allow getting parsed inline styles from `dom.Element` directly (#367) -- Improve support for inline styles border, border-collapse and box-sizing (#365) +- Improve support for inline styles border, border-collapse and box-sizing (#365) - Fix line metrics are unavailable on Flutter web (#383) - Fix IMG tag with dimensions being stretched (#429) diff --git a/packages/enhanced/README.md b/packages/enhanced/README.md index 420f90ed3..caa91f674 100644 --- a/packages/enhanced/README.md +++ b/packages/enhanced/README.md @@ -8,7 +8,7 @@ Flutter package to render html as widgets that supports hyperlink, image, audio, and [70+ other tags](https://demo.fwfh.dev/supported/tags.html). | [Live demo](https://demo.fwfh.dev/#/helloworld) | | | -|-------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------| +| ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------- | | ![](https://raw.githubusercontent.com/daohoangson/flutter_widget_from_html/0001010/packages/enhanced/example/HelloWorldScreen1.gif) | ![](https://raw.githubusercontent.com/daohoangson/flutter_widget_from_html/0001010/packages/enhanced/example/HelloWorldScreen2.gif) | ![](https://raw.githubusercontent.com/daohoangson/flutter_widget_from_html/0001010/packages/enhanced/example/HelloWorldScreen3.gif) | This package supports most common HTML tags for easy usage. @@ -27,7 +27,7 @@ Add this to your app's `pubspec.yaml` file: ```yaml dependencies: - flutter_widget_from_html: ^0.14.9 + flutter_widget_from_html: ^0.14.10 ``` ### Platform specific configuration diff --git a/packages/enhanced/pubspec.yaml b/packages/enhanced/pubspec.yaml index 6101f7ccd..0a5d89754 100644 --- a/packages/enhanced/pubspec.yaml +++ b/packages/enhanced/pubspec.yaml @@ -1,5 +1,5 @@ name: flutter_widget_from_html -version: 0.14.9 +version: 0.14.10 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