Skip to content

Commit cda23bd

Browse files
committed
release v1.0.0
1 parent 0e5d561 commit cda23bd

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 1.0.0
2+
- `enough_mail_html` is now [null safe](https://dart.dev/null-safety/tour) #6
3+
- use URL safe links when linking an embedded image with a `content-ID`
4+
- limit image width in `<img>` elements when `maxImageWidth` is specified
5+
6+
17
## 0.4.0
28
- override `<meta charset="...">` elements to always be UTF-8
39
- add `quoteToHtml(...)` extension method to `MimeMessage`

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Generate html code from any email mime message for displaying it.
22

33
## Usage
4-
The `enough_mail_html` package defines the `decodeTextHtmlForDisplay()` extension method on `MimeMessage`.
4+
The `enough_mail_html` package defines the `decodeTextHtmlForDisplay()` extension method on `MimeMessage` of the [enough_mail](https://pub.dev/packages/enough_mail) package.
55

66
This method will always generate HTML, specifically also for plain text or empty messages.
77
You can define your custom processors
@@ -63,7 +63,7 @@ Add this dependency your pubspec.yaml file:
6363

6464
```
6565
dependencies:
66-
enough_mail_html: ^0.3.0
66+
enough_mail_html: ^1.0.0
6767
```
6868
The latest version or `enough_mail_html` is [![enough_mail_html version](https://img.shields.io/pub/v/enough_mail_html.svg)](https://pub.dartlang.org/packages/enough_mail_html).
6969

pubspec.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
name: enough_mail_html
2-
description: Generate HTML from an email mime message. Eases handling of `MimeMessage` in the [enough_mail](https://pub.dev/packages/enough_mail) package.
3-
version: 0.4.0
2+
description: Generate HTML from an email mime message. Eases handling of `MimeMessage` in the `enough_mail` package.
3+
version: 1.0.0
44
homepage: https://github.com/Enough-Software/enough_mail_html
55

66
environment:
77
sdk: '>=2.12.0 <3.0.0'
88

99
dependencies:
1010
html: ^0.15.0
11-
enough_mail: #'>=1.0.0 <2.0.0'
12-
git:
13-
url: https://github.com/Enough-Software/enough_mail.git
14-
# path: ../enough_mail/
15-
image: ^3.0.1
11+
enough_mail: ^1.1.0
12+
# git:
13+
# url: https://github.com/Enough-Software/enough_mail.git
14+
#path: ../enough_mail/
15+
image: ^3.0.2
1616

1717
dev_dependencies:
1818
pedantic: ^1.11.0

0 commit comments

Comments
 (0)