feat: update emojis to Unicode 16.0 (#6155)
This commit is contained in:
@@ -10,6 +10,7 @@
|
||||
- Minor: Allow for themes to set transparent values for window background on Linux. (#6137)
|
||||
- Minor: Popup overlay now only draws an outline when being interacted with. (#6140)
|
||||
- Minor: Made filters searchable in the Settings dialog search bar. (#5890)
|
||||
- Minor: Updated emojis to Unicode 16.0. (#6155)
|
||||
- Minor: Allow disabling of double-click tab renaming through setting. (#6163)
|
||||
- Bugfix: Don't create native messaging manifest file if browser directory doesn't exist. (#6116)
|
||||
- Bugfix: Fixed scrolling now working on inputs in the settings. (#6128)
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -275,15 +275,15 @@ void Emojis::loadEmojiSet()
|
||||
};
|
||||
// clang-format on
|
||||
|
||||
// As of emoji-data v15.1.1, google is the only source missing no images.
|
||||
// Both Twitter/Twemoji and Google have all images
|
||||
if (!emoji->capabilities.has(setCapability))
|
||||
{
|
||||
emojiSetToUse = QStringLiteral("Google");
|
||||
emojiSetToUse = QStringLiteral("Twitter");
|
||||
}
|
||||
|
||||
QString code = emoji->unifiedCode.toLower();
|
||||
QString urlPrefix =
|
||||
"https://pajbot.com/static/emoji-v2/img/google/64/";
|
||||
"https://pajbot.com/static/emoji-v2/img/twitter/64/";
|
||||
auto it = emojiSets.find(emojiSetToUse);
|
||||
if (it != emojiSets.end())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user