From 27ce965dd27f2b47bbb30b8b30f05b3e9e953d4a Mon Sep 17 00:00:00 2001 From: Joseph Madamba Date: Thu, 15 Feb 2024 22:37:53 -0800 Subject: [PATCH] Update unsupported windows startup blocker comment --- osu.Desktop/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osu.Desktop/Program.cs b/osu.Desktop/Program.cs index a7453dc0e0..2201502e39 100644 --- a/osu.Desktop/Program.cs +++ b/osu.Desktop/Program.cs @@ -47,8 +47,8 @@ public static void Main(string[] args) { var windowsVersion = Environment.OSVersion.Version; - // While .NET 6 still supports Windows 7 and above, we are limited by realm currently, as they choose to only support 8.1 and higher. - // See https://www.mongodb.com/docs/realm/sdk/dotnet/#supported-platforms + // While .NET 8 only supports Windows 10 and above, running on Windows 7/8.1 may still work. We are limited by realm currently, as they choose to only support 8.1 and higher. + // See https://www.mongodb.com/docs/realm/sdk/dotnet/compatibility/ if (windowsVersion.Major < 6 || (windowsVersion.Major == 6 && windowsVersion.Minor <= 2)) { // If users running in compatibility mode becomes more of a common thing, we may want to provide better guidance or even consider