Add update migrations

This commit is contained in:
pizzaboxer 2024-06-14 21:29:49 +01:00
parent 13f2690084
commit e0596716ce
No known key found for this signature in database
GPG Key ID: 59D4A1DBAD0F2BA8

View File

@ -227,6 +227,27 @@ namespace Bloxstrap
App.FastFlags.Save();
}
else if (currentVersionInfo.ProductVersion == "2.6.0")
{
if (App.Settings.Prop.UseDisableAppPatch)
{
try
{
File.Delete(Path.Combine(Paths.Modifications, "ExtraContent\\places\\Mobile.rbxl"));
}
catch (Exception ex)
{
App.Logger.WriteException(LOG_IDENT, ex);
}
App.Settings.Prop.EnableActivityTracking = true;
}
if (App.Settings.Prop.BootstrapperStyle == BootstrapperStyle.ClassicFluentDialog)
App.Settings.Prop.BootstrapperStyle = BootstrapperStyle.FluentDialog;
App.Settings.Save();
}
}
if (isAutoUpgrade)