Skip to content

Commit

Permalink
remove deprecation bypass setting
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Mar 1, 2025
1 parent ac413ee commit 42372a5
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
7 changes: 0 additions & 7 deletions Bloxstrap/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,13 +190,6 @@ public static void AssertWindowsOSVersion()
{
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);

Expand Down
3 changes: 0 additions & 3 deletions Bloxstrap/Models/Persistable/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ public class Settings
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;
Expand Down

0 comments on commit 42372a5

Please sign in to comment.