Skip to content

Latest commit

 

History

History
98 lines (60 loc) · 2.42 KB

CHANGELOG.md

File metadata and controls

98 lines (60 loc) · 2.42 KB

Changelog

3.1.0 - 2024-02-18

Changed

3.0.0 - 2023-11-18

Added

  • Breaking: Added option to get the skin tone variation of an emoji. The emoji variations are not included into the list anymore.

    Instead of:

    AnimatedEmojis.clapDark

    do:

    AnimatedEmojis.clap.dark
    // or
    AnimatedEmojis.clap.withSkinTone(SkinTone.dark)
  • Web support for network emojis.

  • Added names to AnimatedEmojiData.

  • Added more emojis.

  • Added AnimatedEmojiDataUtil utility class.

Changed

  • Breaking: Changed ID format for emojis. Now the ids do not begin with u. fromId and getCamelCaseName are still compatible with the legacy IDs beginning with u.

    Instead of :

    AnimatedEmojiData('u1f386');

    Do:

    AnimatedEmojiData('1f386',name: 'smileWithBigEyes');
  • Some emoji names may have changed

  • When source is not set the AnimatedEmoji widget now tries to load the emoji from assets first, then falls back to network.

2.1.0 - 2023-10-29

Added

  • fromEmojiString function on that returns the animated emoji version on an unicode emoji (@fahidsarker)

  • toUnicodeEmoji to AnimatedEmojiData that returns the unicode emoji of this emoji.

  • fromName that returns the emoji from its camel case name.

Changed

  • Improved error messages.

  • Made AnimatedEmojiData immutable and added equality.

Deprecated

  • Renamed fromCode to fromId.

2.0.0 - 2023-05-30

Removed

  • Breaking Remove SkinTone attribute from emojis. Use AnimatedEmojis.clapDark instead of AnimatedEmojis.clap(SkinTone.dark)

Added

  • Support for importing emojis from assets
  • Add new emojis (#2)

Fixed

  • Emoji Support for web due to asset import (#1)

1.0.1+2

  • doc: Using GIF instead of WEBP because pub.dev can only show GIFs.

1.0.1+1

  • deprecated: simpson skintone. Use a value of null instead.
  • doc: Updated readme to use WEBP.
  • refactor: now using very good analysis
  • updated: tests

1.0.0

  • initial release.