Fix phone and mobile emoji
This commit is contained in:
parent
3aaef7ab11
commit
5005e56881
2 changed files with 6 additions and 3 deletions
|
|
@ -24,6 +24,9 @@ Procedure when bumping the version number:
|
||||||
- `bot::command::Command::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
|
- `bot::command::Command::execute` now returns a `Result<bool, E>` instead of a `Result<(), E>`
|
||||||
- `bot::commands::Commands::handle_packet` now returns a `Result<bool, E>` instead of a `Result<(), E>`
|
- `bot::commands::Commands::handle_packet` now returns a `Result<bool, E>` instead of a `Result<(), E>`
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- `phone` and `mobile` emoji
|
||||||
|
|
||||||
## v0.3.1 - 2023-02-26
|
## v0.3.1 - 2023-02-26
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
# The vanilla euphoria frontend uses version 0.2.4 of the npm package
|
# The vanilla euphoria frontend uses version 0.2.4 of the npm package
|
||||||
# "emoji-annotation-to-unicode" [0]. It ignores all emoji set to null [1]. It
|
# "emoji-annotation-to-unicode" [0]. It ignores all emoji set to null [1]. It
|
||||||
# removes the "iphone" emoji [2] and replaces it with the "phone" emoji [3]. It
|
# removes the "iphone" emoji [2] and replaces it with the "mobile" emoji [3]. It
|
||||||
# also adds a few more emoji names without a unicode equivalent [4].
|
# also adds a few more emoji names without a unicode equivalent [4].
|
||||||
#
|
#
|
||||||
# [0]: https://www.npmjs.com/package/emoji-annotation-to-unicode/v/0.2.4
|
# [0]: https://www.npmjs.com/package/emoji-annotation-to-unicode/v/0.2.4
|
||||||
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
# Each emoji is represented as a single line. The line starts with the emoji
|
# Each emoji is represented as a single line. The line starts with the emoji
|
||||||
# name, followed by zero or more hexadecimal unicode code points. These elements
|
# name, followed by zero or more hexadecimal unicode code points. These elements
|
||||||
# are separated by one or more spaces. If mp code points are listed, the emoji
|
# are separated by one or more spaces. If no code points are listed, the emoji
|
||||||
# does not correspond to any unicode code points.
|
# does not correspond to any unicode code points.
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
|
|
@ -911,4 +911,4 @@ indigo_heart
|
||||||
orange_heart
|
orange_heart
|
||||||
bot
|
bot
|
||||||
greenduck
|
greenduck
|
||||||
phone 1f4f1
|
mobile 1f4f1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue