mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
ability to disable package cleanup
This commit is contained in:
parent
9d356b0b71
commit
9a90d8935a
@ -930,6 +930,8 @@ namespace Bloxstrap
|
|||||||
allPackageHashes.AddRange(App.State.Prop.Player.PackageHashes.Values);
|
allPackageHashes.AddRange(App.State.Prop.Player.PackageHashes.Values);
|
||||||
allPackageHashes.AddRange(App.State.Prop.Studio.PackageHashes.Values);
|
allPackageHashes.AddRange(App.State.Prop.Studio.PackageHashes.Values);
|
||||||
|
|
||||||
|
if (!App.Settings.Prop.DebugDisableVersionPackageCleanup)
|
||||||
|
{
|
||||||
foreach (string hash in cachedPackageHashes)
|
foreach (string hash in cachedPackageHashes)
|
||||||
{
|
{
|
||||||
if (!allPackageHashes.Contains(hash))
|
if (!allPackageHashes.Contains(hash))
|
||||||
@ -947,6 +949,7 @@ namespace Bloxstrap
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
App.Logger.WriteLine(LOG_IDENT, "Registering approximate program size...");
|
App.Logger.WriteLine(LOG_IDENT, "Registering approximate program size...");
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@ namespace Bloxstrap.Models.Persistable
|
|||||||
public bool UseFastFlagManager { get; set; } = true;
|
public bool UseFastFlagManager { get; set; } = true;
|
||||||
public bool WPFSoftwareRender { get; set; } = false;
|
public bool WPFSoftwareRender { get; set; } = false;
|
||||||
public bool EnableAnalytics { get; set; } = true;
|
public bool EnableAnalytics { get; set; } = true;
|
||||||
|
public bool DebugDisableVersionPackageCleanup { get; set; } = false;
|
||||||
public string? SelectedCustomTheme { get; set; } = null;
|
public string? SelectedCustomTheme { get; set; } = null;
|
||||||
|
|
||||||
// integration configuration
|
// integration configuration
|
||||||
|
Loading…
Reference in New Issue
Block a user