Skip to content

Commit 29a40d3

Browse files
committed
🎉 Init. commit from emoji-java with emoji-data
0 parents  commit 29a40d3

20 files changed

Lines changed: 41367 additions & 0 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Java
2+
target
3+
4+
# IntelliJ files
5+
*.iml
6+
.idea

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
sudo: false
2+
language: java
3+
jdk:
4+
- openjdk6
5+
- oraclejdk7
6+
- openjdk7
7+
- oraclejdk8
8+
after_success:
9+
- mvn clean cobertura:cobertura coveralls:cobertura

CHANGELOG.md

Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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.

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014-present Vincent DURMONT <vdurmont@gmail.com>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)