mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
Add update migrations
This commit is contained in:
parent
13f2690084
commit
e0596716ce
@ -227,6 +227,27 @@ namespace Bloxstrap
|
|||||||
|
|
||||||
App.FastFlags.Save();
|
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)
|
if (isAutoUpgrade)
|
||||||
|
Loading…
Reference in New Issue
Block a user