Skip to content

Commit

Permalink
support windows-1253 and 1254 codecs
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-virkus committed Mar 21, 2021
1 parent c6878ff commit 2d07a23
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions lib/codecs/mail_codec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@ abstract class MailCodec {
'cp1251': const Windows1251Codec(allowInvalid: true),
'windows-1252': const Windows1252Codec(allowInvalid: true),
'cp1252': const Windows1252Codec(allowInvalid: true),
'windows-1253': const Windows1253Codec(allowInvalid: true),
'cp1253': const Windows1253Codec(allowInvalid: true),
'windows-1254': const Windows1254Codec(allowInvalid: true),
'cp1254': const Windows1254Codec(allowInvalid: true),
'gbk': const GbkCodec(allowInvalid: true),
'gb2312': const GbkCodec(allowInvalid: true),
'gb-2312': const GbkCodec(allowInvalid: true),
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ dependencies:
intl: ^0.17.0
enough_serialization: ^1.3.0
#path: ../enough_serialization
enough_convert: ^1.1.0
enough_convert: ^1.2.0
# path: ../enough_convert
collection: ^1.15.0-nullsafety.5
collection: ^1.15.0



Expand Down

0 comments on commit 2d07a23

Please sign in to comment.