emoji: Add a few useful aliases.

This commit is contained in:
Rhythm Sharma
2019-03-16 00:10:52 +05:30
committed by Tim Abbott
parent a269c4bdd4
commit e1212c04d1
2 changed files with 3 additions and 3 deletions

View File

@@ -125,7 +125,7 @@ EMOJI_NAME_MAPS = {
# flu from http://mashable.com/2015/10/23/ios-9-1-emoji-guide, sick from
# https://emojipedia.org/face-with-thermometer/, face_with_thermometer so
# it shows up in typeahead (thermometer taken by Objects/82)
'1f912': {'canonical_name': 'sick', 'aliases': ['flu', 'face_with_thermometer']},
'1f912': {'canonical_name': 'sick', 'aliases': ['flu', 'face_with_thermometer', 'ill', 'fever']},
# hurt and injured from https://beebom.com/emoji-meanings/. Chose hurt as
# primary since I think it can cover a wider set of things (e.g. emotional
# hurt)
@@ -174,7 +174,7 @@ EMOJI_NAME_MAPS = {
'1f64f': {'canonical_name': 'pray', 'aliases': ['welcome', 'thank_you', 'namaste']},
# done_deal seems like a natural addition
'1f91d': {'canonical_name': 'handshake', 'aliases': ['done_deal']},
'1f44d': {'canonical_name': '+1', 'aliases': ['thumbs_up']},
'1f44d': {'canonical_name': '+1', 'aliases': ['thumbs_up', 'like']},
'1f44e': {'canonical_name': '-1', 'aliases': ['thumbs_down']},
# fist_bump from https://beebom.com/emoji-meanings/
'1f44a': {'canonical_name': 'fist_bump', 'aliases': ['punch']},

View File

@@ -11,4 +11,4 @@ LATEST_RELEASE_ANNOUNCEMENT = "https://blog.zulip.org/2019/03/01/zulip-2-0-relea
# Typically, adding a dependency only requires a minor version bump, and
# removing a dependency requires a major version bump.
PROVISION_VERSION = '28.9'
PROVISION_VERSION = '28.10'