Skip to content

Commit

Permalink
Update v3.0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunaretic committed Jul 18, 2024
2 parents 6ac6096 + 59f93c8 commit bb5211f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
6 changes: 3 additions & 3 deletions FFXIV_TexTools/FFXIV_TexTools.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<Product>FFXIV_TexTools</Product>
<Copyright>Copyright © 2024</Copyright>

<ApplicationVersion>3.0.7.3</ApplicationVersion>
<AssemblyVersion>3.0.7.3</AssemblyVersion>
<FileVersion>3.0.7.3</FileVersion>
<ApplicationVersion>3.0.7.4</ApplicationVersion>
<AssemblyVersion>3.0.7.4</AssemblyVersion>
<FileVersion>3.0.7.4</FileVersion>

<LangVersion>9.0</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
3 changes: 2 additions & 1 deletion FFXIV_TexTools/Views/Item/ItemViewControl.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,8 @@ private async Task GetMaterials(ModTransaction tx)
}

HashSet<string> foundMaterials = new HashSet<string>();
if (Root != null && Root.Info.PrimaryType == XivItemType.human && Root.Info.SecondaryType == XivItemType.body)
if (Root != null && ((Root.Info.PrimaryType == XivItemType.human && Root.Info.SecondaryType == XivItemType.body)
|| Root.Info.IsHumanMaterialVersionException()))
{
// Exceptions class.
var materials = await Root.GetMaterialFiles(-1, tx, false);
Expand Down
8 changes: 8 additions & 0 deletions FFXIV_TexTools/Views/OnboardingWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,14 @@ private static string SetDefault(string value, string def)

public static string GetDefaultInstallDirectory()
{
var qlDir = PenumbraAPI.GetQuickLauncherGameDirectory();

// If the user has the quick launcher configured, use that.
if (!string.IsNullOrWhiteSpace(qlDir))
{
return qlDir;
}

var resourceManager = CommonInstallDirectories.ResourceManager;
var resourceSet = resourceManager.GetResourceSet(CultureInfo.CurrentCulture, true, true);

Expand Down

0 comments on commit bb5211f

Please sign in to comment.