Skip to content

Prepare 2.1.0 release #721

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 4, 2021
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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [2.1.0] - June 3, 2021:
* SelectableHtml widget (supporting a subset of tags) which allow text selection
* Fixed shrinkWrap to actually shrink the horizontal space
* Support style tags to apply styling from inline css
* Support applying styles from Flutter themes
* Mouse hover on links when using Flutter Web
* Allow custom anchor link tap implementations
* Support additional list styling options
* Fix several minor whitespace issues in text flow
* Fixed specific colspan/rowspan usages in tables
* Fixed whitespace issues around images
* Swallow duplicate ids to prevent crashing the widget
* Fixes crashing tap detection when using both link and image taps
* Updates external dependencies
* Raised minimum Flutter version to 2.2.0

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We also had stuff like fixing the crash when tapping on a linked image, support uppercase hex and hex with alpha, fixing br getting removed from the tree, fixing empty space when block elements were empty. Don't know if you want to include those, just thought I'd suggest it.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@tneotia I wonder if there is some sort of automated tool to do this for us...... Y'know, closed issues, closed PRs, etc.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Possibly, but we would probably have to go back in and change the data it pulled out to make it clear and concise.

I like to use the releases tab and hit the "x commits to master since this release" to get a quick list, but we didn't make a release for 2.0.0 on github.

## [2.0.0] - April 29, 2021:
* Stable release with all 2.0.0-nullsafety.X changes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ A Flutter widget for rendering HTML and CSS as Flutter widgets.
Add the following to your `pubspec.yaml` file:

dependencies:
flutter_html: ^2.0.0
flutter_html: ^2.1.0

## Currently Supported HTML Tags:
| | | | | | | | | | | |
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_html
description: A Flutter widget rendering static HTML and CSS as Flutter widgets.
version: 2.0.0
version: 2.1.0
homepage: https://github.com/Sub6Resources/flutter_html

environment:
Expand Down