Skip to content

Commit

Permalink
Beta v2.3.5.3b
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunaretic committed Apr 13, 2021
2 parents 12a80ae + 64e1e2a commit 5d4fe35
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions FFXIV_TexTools/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1349,6 +1349,13 @@ private async void Menu_LoadSets_Click(object sender, RoutedEventArgs e)
/// </summary>
private async void Menu_StartOver_Click(object sender, RoutedEventArgs e)
{
if(XivCache.GameInfo.UseLumina)
{
FlexibleMessageBox.Show("Cannot perform Start Over while Lumina Mode is active.", "Lumina Mode Error", MessageBoxButtons.OK, MessageBoxIcon.Error);

return;
}

var gameDirectory = new DirectoryInfo(Settings.Default.FFXIV_Directory);

var index = new Index(gameDirectory);
Expand Down
4 changes: 2 additions & 2 deletions FFXIV_TexTools/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.3.5.2")]
[assembly: AssemblyFileVersion("2.3.5.2")]
[assembly: AssemblyVersion("2.3.5.3")]
[assembly: AssemblyFileVersion("2.3.5.3")]
3 changes: 2 additions & 1 deletion FFXIV_TexTools/ViewModels/CustomizeViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ public void SetLuminaExports(bool value)
Settings.Default.Save();
}

private void LuminaSettingsUpdated()
private static void LuminaSettingsUpdated()
{
var gi = XivCache.GameInfo;

Expand Down Expand Up @@ -990,6 +990,7 @@ public static void UpdateFrameworkColors()

public static void UpdateCacheSettings()
{
LuminaSettingsUpdated();
XivCache.SetMetaValue(TTModel._SETTINGS_KEY_EXPORT_ALL_BONES, Settings.Default.ExportAllBones);
}

Expand Down

0 comments on commit 5d4fe35

Please sign in to comment.