File tree 2 files changed +5
-0
lines changed
2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.0 (unreleased)
2
+
3
+ - Show emoji presentation in Unicode properties query tool.
4
+
1
5
## 0.4.0 (2023-11-27)
2
6
3
7
- Fix UTF-8 decoding of incomplete UTF-8 multibyte sequences to properly report ` Invalid ` .
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ void showCodepointProperties(char32_t codepoint)
155
155
cout << " East Asian Width : " << properties.east_asian_width << ' \n ' ;
156
156
cout << " Character width : " << unsigned (properties.char_width ) << ' \n ' ;
157
157
cout << " Emoji Segmentation Category : " << properties.emoji_segmentation_category << ' \n ' ;
158
+ cout << " Emoji Presentation : " << (properties.emoji_presentation () ? " emoji" : " text" ) << ' \n ' ;
158
159
cout << " Grapheme Cluster Break : " << properties.grapheme_cluster_break << ' \n ' ;
159
160
cout << " \n " ;
160
161
// clang-format on
You can’t perform that action at this time.
0 commit comments