diff --git a/CHANGELOG.md b/CHANGELOG.md index 7eaa337..01324a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.4.1 + +* Fix: header elements with children spans ignore the attributes that can be into its own spans +* Fix: removed unnecessary exception when unsupported color is detected +* Feat: added `blackNodesList` into `HtmlToDelta` class to ignore certain nodes + ## 1.4.0 * feat: made text trimming optional by @raimkulovr in https://github.com/CatHood0/flutter_quill_delta_from_html/pull/7 diff --git a/README.md b/README.md index 1164f72..61fcefc 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Add the dependency to your pubspec.yaml: ```yaml dependencies: - flutter_quill_delta_from_html: ^1.4.0 + flutter_quill_delta_from_html: ^1.4.1 ``` Then, import the package and use it in your Flutter application: diff --git a/pubspec.yaml b/pubspec.yaml index 5529eed..dcf68bf 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_quill_delta_from_html description: "Convert easily HTML inputs content to Quill Js Delta format" -version: 1.4.0 +version: 1.4.1 homepage: repository: https://github.com/CatHood0/flutter_quill_delta_from_html issue_tracker: https://github.com/CatHood0/flutter_quill_delta_from_html/issues @@ -10,7 +10,7 @@ environment: flutter: ">=1.17.0" dependencies: - dart_quill_delta: ^10.2.0 + dart_quill_delta: ^10.6.0 html: ^0.15.4 dev_dependencies: