Skip to content

Commit

Permalink
Update v3.0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Lunaretic committed Jul 14, 2024
2 parents aae0aed + 6338ab6 commit 4eb0320
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 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.6.0</ApplicationVersion>
<AssemblyVersion>3.0.6.0</AssemblyVersion>
<FileVersion>3.0.5.6</FileVersion>
<ApplicationVersion>3.0.6.1</ApplicationVersion>
<AssemblyVersion>3.0.6.1</AssemblyVersion>
<FileVersion>3.0.6.1</FileVersion>

<LangVersion>9.0</LangVersion>
<UseWPF>true</UseWPF>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
</Grid.ColumnDefinitions>
<Label Grid.Column="0" Grid.Row="5" HorizontalAlignment="Right">Body/Scale-Tail Textures:</Label>
<Label Grid.Column="1" Grid.Row="5" HorizontalAlignment="Left" Foreground="Red">25%</Label>
<Label Grid.Column="2" Grid.Row="5" HorizontalAlignment="Left" Foreground="Red" FontStyle="Italic">Tattoos and Normal Maps are upgraded, but may have seams.</Label>
<Label Grid.Column="2" Grid.Row="5" HorizontalAlignment="Left" Foreground="Red" FontStyle="Italic">Only Tattoos/Diffuse Textures upgraded.</Label>

</Grid>
</Border>
Expand Down
9 changes: 8 additions & 1 deletion FFXIV_TexTools/Views/ModListView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,14 @@ private void CopyPath_Click(object sender, RoutedEventArgs e)
if (ml == null) return;


System.Windows.Clipboard.SetText(ml.FilePath);
try
{
System.Windows.Clipboard.SetText(ml.FilePath);
}
catch
{
// No-Op
}

}

Expand Down

0 comments on commit 4eb0320

Please sign in to comment.