|
| 1 | +# Changelog |
| 2 | + |
| 3 | +## v3.2.0 |
| 4 | + |
| 5 | +- Fixed Poland flag (thanks @Sheigutn) |
| 6 | +- Improvements to the smile emojis (thanks @miquelbeltran) |
| 7 | +- Add a bunch of emojis from Apple iOS 10.2 release |
| 8 | +- Fix some missing fitzpatrick modifiers |
| 9 | +- Add an `EmojiManager.isOnlyEmojis()` method |
| 10 | + |
| 11 | +## v3.1.3 |
| 12 | + |
| 13 | +- Removed all variance selectors from the JSON database. Thanks @roberterdin ! |
| 14 | + |
| 15 | +## v3.1.2 |
| 16 | + |
| 17 | +- Additions and updates to the emoji database (victory hand now supports fitzpatrick, adds Saint Vincent Grenadines' flag, add the regional indicator symbols). Thanks @lologist ! |
| 18 | +- Force the database to be loaded in UTF-8. |
| 19 | +- Enable the extension of the `EmojiParser` class. |
| 20 | + |
| 21 | +## v3.1.1 |
| 22 | + |
| 23 | +- Add the ability to provide a custom `EmojiTransformer` that will enable developers to add their custom emoji replacement methods. Thanks @freva ! |
| 24 | + |
| 25 | +## v3.1.0 |
| 26 | + |
| 27 | +- Add fitzpatrick support for 👃 ("nose") and 👂 ("ear") |
| 28 | +- Fix duplicated "sunglasses" alias |
| 29 | +- Performance improvements (using a Trie structure) |
| 30 | +- Parsing support for multiple emojis (such as "family_man_woman_boy") |
| 31 | +- Fix `EmojiManager.getAll()` that returned some duplicates |
| 32 | +- Use a BufferedReader to load the database |
| 33 | + |
| 34 | +## v3.0.0 |
| 35 | + |
| 36 | +Update the emoji database to support the additions of iOS 9.1 |
| 37 | + |
| 38 | +## v2.2.1 |
| 39 | + |
| 40 | +Fix the `htmlDec` and `htmlHex` codes for the multiple emojis (such as `family (man, man, girl, boy)`) |
| 41 | + |
| 42 | +## v2.2.0 |
| 43 | + |
| 44 | +Rollback dependency org.json:json to 20140107 to keep the compatibility with Java 6 & 7 |
| 45 | + |
| 46 | +## v2.1.0 |
| 47 | + |
| 48 | +* Add methods: |
| 49 | + * `EmojiParser#removeAllEmojis(String)` |
| 50 | + * `EmojiParser#removeAllEmojisExcept(String, Collection<Emoji>)` |
| 51 | + * `EmojiParser#removeEmojis(String, Collection<Emoji>)` |
| 52 | +* Upgrade dependency org.json:json |
| 53 | + |
| 54 | +## v2.0.1 |
| 55 | + |
| 56 | +Bug fix on the :-1: emoji |
| 57 | + |
| 58 | +## v2.0.0 |
| 59 | + |
| 60 | +* Update of the emoji database |
| 61 | + * Add 14 new family emojis (man_man_boy, woman_woman_girl, etc.) |
| 62 | + * Add 4 new couple emojis |
| 63 | + * Add the "vulcan_salute" and "middle_finger" emojis |
| 64 | + * Add 198 flags |
| 65 | +* Addition of the support for the diversity emojis (Fitzpatrick modifiers) |
| 66 | +* Removal of the deprecated methods `Emoji#getHtml` and `EmojiParser#parseToHtml` |
| 67 | +* Improvements in the javadoc |
| 68 | + |
| 69 | +## v1.1.1 |
| 70 | + |
| 71 | +Closing the stream used to read the emoji database in `EmojiManager.java` |
| 72 | + |
| 73 | +## v1.1.0 |
| 74 | + |
| 75 | +* Update of the emoji database |
| 76 | +* Adding support for HTML hexadecimal: |
| 77 | + * `Emoji#getHtmlHexadecimal` |
| 78 | + * `EmojiParser#parseToHtmlHexadecimal` |
| 79 | +* The old HTML support is now HTML decimal: |
| 80 | + * Deprecating `Emoji#getHtml` (replaced by `Emoji#getHtmlDecimal`) |
| 81 | + * Deprecating `EmojiParser#parseToHtml` (replaced by `EmojiParser#parseToHtmlDecimal`) |
| 82 | + |
| 83 | +## v1.0.1 |
| 84 | + |
| 85 | +Bug fix on the :+1: emoji |
| 86 | + |
| 87 | +## v1.0.0 |
| 88 | + |
| 89 | +First release. |
0 commit comments