Releases: Enough-Software/enough_mail_flutter
Releases · Enough-Software/enough_mail_flutter
v2.1.2
v2.1.1
- Remove direct MailClient usage from MimeMessageDownloader
- Update dependencies
v2.1.0
- Switch to inapp_webview 6 (beta)
- Feat: support to specify own fetching method, Setting your own fetching method can be useful for downloading the message contents e.g. from disk.
- Feat: MimeMessageDownloader also support setting download timeouts now.
v2.0.0
- New
preferPlainTextoption to display the mime message's plain text part when available. - New
enableDarkModeoption to use dark mode rendering. - New
urlLauncherDelegateoption to control opening of links. - Ensure compatibility with Flutter 3.0.
v1.4.0
- Register a
builderfunction to overtake building for specific messages.
v1.3.0
- Updated dependencies, improved documentation
v1.2.0
[1.2.0] - 2021-06-13
- Adapt to API changes of dependent libraries and Flutter
- Restructure package
- Ensure compatibility with WebKit / iOS
v1.1.0
- To improve download speed, you can limit the included media types when downloading the message contents with the
MessageDownloader.includedInlineTypesparameter, e.g.return MessageDownloader(includedInlineTypes: [MediaToptype.image]);. - Use the
fetchIdto retrieve inline message parts in links starting withfetch:// - Do not scale plain text messages
v1.0.0
v0.3.0
- Generate HTML asynchronously.
- Catch any problems during downloading and signal them to the widget owner with the
onDownloadErrorhandler. - Use
enough_mediapackage to render media. - Fix problem when
setState()was called after the widget was not mounted anymore.