More rebranding including the team identifier, url scheme, and links on about screen

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Yannik Bloscheck
2025-06-12 22:20:56 +02:00
committed by Konstantin Pastbin
parent d4e1d53c40
commit 074d443f0f
126 changed files with 559 additions and 276 deletions

View File

@@ -598,7 +598,7 @@ GlyphImage GlyphManager::GetGlyphImage(GlyphFontAndId key, int pixelHeight, bool
namespace
{
hb_language_t CoMapsLanguageToHarfbuzzLanguage(int8_t lang)
hb_language_t OrganicMapsLanguageToHarfbuzzLanguage(int8_t lang)
{
// TODO(AB): can langs be converted faster?
auto const svLang = StringUtf8Multilang::GetLangByCode(lang);
@@ -625,7 +625,7 @@ text::TextMetrics GlyphManager::ShapeText(std::string_view utf8, int fontPixelHe
const auto [text, segments] = harfbuzz_shaping::GetTextSegments(utf8);
// TODO(AB): Optimize language conversion.
hb_language_t const hbLanguage = CoMapsLanguageToHarfbuzzLanguage(lang);
hb_language_t const hbLanguage = OrganicMapsLanguageToHarfbuzzLanguage(lang);
text::TextMetrics allGlyphs;
// For SplitText it's enough to know if the last visual (first logical) segment is RTL.