remove deprecation bypass setting

This commit is contained in:
bluepilledgreat 2025-03-01 13:14:05 +00:00
parent ac413eeb68
commit 42372a5c7c
2 changed files with 0 additions and 10 deletions

View File

@ -190,13 +190,6 @@ namespace Bloxstrap
{
Logger.WriteLine(LOG_IDENT, $"Detected unsupported Windows version ({Environment.OSVersion.Version}).");
if (Settings.Prop.IgnoreWindows78Deprecation)
{
Logger.WriteLine(LOG_IDENT, "IgnoreWindows78Deprecation flag enabled. Skipping deprecation message.");
Logger.WriteLine(LOG_IDENT, "================= DO NOT REQUEST FOR SUPPORT. YOU WILL BE IGNORED. =================");
return;
}
if (!LaunchSettings.QuietFlag.Active)
Frontend.ShowMessageBox(Strings.App_OSDeprecation_Win7_81, MessageBoxImage.Error);

View File

@ -17,9 +17,6 @@ namespace Bloxstrap.Models.Persistable
public bool UseFastFlagManager { get; set; } = true;
public bool WPFSoftwareRender { get; set; } = false;
public bool EnableAnalytics { get; set; } = true;
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
[JsonPropertyName("ILikeMyOSDeprecatedBruh")]
public bool IgnoreWindows78Deprecation { get; set; } = false;
// integration configuration
public bool EnableActivityTracking { get; set; } = true;