Releases: Enough-Software/enough_mail_flutter
Releases · Enough-Software/enough_mail_flutter
v2.1.1
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
preferPlainText
option to display the mime message's plain text part when available. - New
enableDarkMode
option to use dark mode rendering. - New
urlLauncherDelegate
option to control opening of links. - Ensure compatibility with Flutter 3.0.
v1.4.0
- Register a
builder
function 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.includedInlineTypes
parameter, e.g.return MessageDownloader(includedInlineTypes: [MediaToptype.image]);
. - Use the
fetchId
to 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
onDownloadError
handler. - Use
enough_media
package to render media. - Fix problem when
setState()
was called after the widget was not mounted anymore.
v0.2.1
- Download messages only once.
- Show an image message directly and not in HTML browser.
- Adapt to
enough_mail
API changes.