diff --git a/Bloxstrap/App.xaml.cs b/Bloxstrap/App.xaml.cs index faa1e6b..691d868 100644 --- a/Bloxstrap/App.xaml.cs +++ b/Bloxstrap/App.xaml.cs @@ -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); diff --git a/Bloxstrap/Models/Persistable/Settings.cs b/Bloxstrap/Models/Persistable/Settings.cs index 5a28502..d640fc3 100644 --- a/Bloxstrap/Models/Persistable/Settings.cs +++ b/Bloxstrap/Models/Persistable/Settings.cs @@ -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;