From 8ba1bf1d47323abd66d50115ffb90f55576bf805 Mon Sep 17 00:00:00 2001 From: 13xforever Date: Sun, 11 Jan 2026 21:45:27 +0500 Subject: [PATCH] Enable Windows ARM64 update link --- .../ResultFormatters/UpdateInfoFormatter.cs | 46 +++++++++---------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs b/CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs index a9f01758..3cebd2b9 100644 --- a/CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs +++ b/CompatBot/Utils/ResultFormatters/UpdateInfoFormatter.cs @@ -163,7 +163,7 @@ internal static class UpdateInfoFormatter .AddField("Windows x64", GetLinkMessage(linkedX64Build?.Windows, true), true) .AddField("Linux x64", GetLinkMessage(linkedX64Build?.Linux, true), true) .AddField("Mac Intel", GetLinkMessage(linkedX64Build?.Mac, true), true) - .AddField("Windows ARM64", "-", true) + .AddField("Windows ARM64", GetLinkMessage(linkedArmBuild?.Windows, true), true) .AddField("Linux ARM64", GetLinkMessage(linkedArmBuild?.Linux, true), true) .AddField("Mac Apple Silicon", GetLinkMessage(linkedArmBuild?.Mac, true), true); } @@ -188,28 +188,28 @@ internal static class UpdateInfoFormatter #if DEBUG _ => client.Guilds.Values.FirstOrDefault()?.Emojis.Values.ToList().RandomElement(githubLogin.GetHashCode())?.GetDiscordName(), #else - "Nekotekina" => ":nekotekina:", - "kd-11" => ":kd11:", - "Megamouse" => ":megamouse:", - "elad335" => ":elad:", - "hcorion" => ":hcorion:", - "AniLeo" => ":ani:", - "Talkashie" => ":font:", - "jarveson" => ":jarves:", - "xddxd" => ":kekw:", - "isJuhn" => "😺", - "13xforever" => "💮", - "RipleyTom" => ":galciv:", - "Whatcookie" => "🍪", - "clienthax" => ":gooseknife:", - /* - "VelocityRa" => null, - "CookiePLMonster" => null, - "Ruipin" => null, - "rajkosto" => null, - "dio-gh" => null, - */ - _ => null, + "Nekotekina" => ":nekotekina:", + "kd-11" => ":kd11:", + "Megamouse" => ":megamouse:", + "elad335" => ":elad:", + "hcorion" => ":hcorion:", + "AniLeo" => ":ani:", + "Talkashie" => ":font:", + "jarveson" => ":jarves:", + "xddxd" => ":kekw:", + "isJuhn" => "😺", + "13xforever" => "💮", + "RipleyTom" => ":galciv:", + "Whatcookie" => "🍪", + "clienthax" => ":gooseknife:", + /* + "VelocityRa" => null, + "CookiePLMonster" => null, + "Ruipin" => null, + "rajkosto" => null, + "dio-gh" => null, + */ + _ => null, #endif });