emoji: Add yellow_large_square and green_large_square emojis.

Wordle has recently become a thing and it uses green, yellow and white (or
black in dark mode) large square unicode characters to let people share their
gameplay. Zulip converts the white and black large square unicode characters to
emojis, but not the green and yellow ones. This causes the Wordle grid to be
misaligned when shared on Zulip.

This commit adds green and yellow large square emojis to our emoji list to fix
the problem.
This commit is contained in:
Puneeth Chaganti
2022-02-02 23:51:37 +05:30
committed by Tim Abbott
parent 6beb84b553
commit d55c137277
3 changed files with 6 additions and 2 deletions

View File

@@ -1518,6 +1518,8 @@ EMOJI_NAME_MAPS: Dict[str, Dict[str, Any]] = {
"25fb": {"canonical_name": "white_medium_square", "aliases": []},
"2b1b": {"canonical_name": "black_large_square", "aliases": []},
"2b1c": {"canonical_name": "white_large_square", "aliases": []},
"1f7e8": {"canonical_name": "large_yellow_square", "aliases": []},
"1f7e9": {"canonical_name": "large_green_square", "aliases": []},
"1f508": {"canonical_name": "speaker", "aliases": []},
"1f507": {"canonical_name": "mute", "aliases": ["no_sound"]},
"1f509": {"canonical_name": "softer", "aliases": []},