emoji: Make 😛 have open eyes.

😛 should be the most general version, which is the one
with open eyes. Other apps do the same and it also means that :P, which
is converted to 😛 is rendered like the emoticon.

Fixes #15970.
This commit is contained in:
Gittenburg 2020-07-29 12:15:38 +02:00 committed by Tim Abbott
parent d5d6e43453
commit 6081e0228b
2 changed files with 3 additions and 5 deletions

View File

@ -34,11 +34,9 @@ EMOJI_NAME_MAPS: Dict[str, Dict[str, Any]] = {
'1f60b': {'canonical_name': 'yum', 'aliases': []},
# crazy from https://beebom.com/emoji-meanings/, seems like best emoji for
# joking
'1f61b': {'canonical_name': 'stuck_out_tongue', 'aliases': ['mischievous']},
'1f61c': {'canonical_name': 'stuck_out_tongue_wink', 'aliases': ['joking', 'crazy']},
'1f61d': {'canonical_name': 'stuck_out_tongue', 'aliases': []},
# don't really need two stuck_out_tongues (see People/23), so chose
# something else that could fit
'1f61b': {'canonical_name': 'mischievous', 'aliases': []},
'1f61d': {'canonical_name': 'stuck_out_tongue_closed_eyes', 'aliases': []},
# kaching suggested by user
'1f911': {'canonical_name': 'money_face', 'aliases': ['kaching']},
# arms_open seems like a natural addition

View File

@ -44,4 +44,4 @@ API_FEATURE_LEVEL = 27
# historical commits sharing the same major version, in which case a
# minor version bump suffices.
PROVISION_VERSION = '93.0'
PROVISION_VERSION = '94.0'