[core][qt] Handle Mastodon and Bluesky

Signed-off-by: Harry Bond <me@hbond.xyz>
This commit is contained in:
Harry Bond
2025-01-31 14:14:35 +00:00
committed by Konstantin Pastbin
parent 856d16cfcb
commit b0355319bd
7 changed files with 26 additions and 2 deletions

View File

@@ -22,6 +22,8 @@ static std::unordered_map<std::string, EType> const kNamesToFMD = {
{"website", EType::FMD_WEBSITE},
{"contact_facebook", EType::FMD_CONTACT_FACEBOOK},
{"contact_instagram", EType::FMD_CONTACT_INSTAGRAM},
{"contact_fediverse", EType::FMD_CONTACT_FEDIVERSE},
{"contact_bluesky", EType::FMD_CONTACT_BLUESKY},
{"contact_twitter", EType::FMD_CONTACT_TWITTER},
{"contact_vk", EType::FMD_CONTACT_VK},
{"contact_line", EType::FMD_CONTACT_LINE},

View File

@@ -22,6 +22,8 @@ UNIT_TEST(EditorConfig_TypeDescription)
EType::FMD_CONTACT_TWITTER,
EType::FMD_CONTACT_VK,
EType::FMD_CONTACT_LINE,
EType::FMD_CONTACT_FEDIVERSE,
EType::FMD_CONTACT_BLUESKY,
};
pugi::xml_document doc;