Skip to content

Commit

Permalink
compile and messagebox title (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlblom authored Dec 2, 2023
1 parent 656d606 commit 519723b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/DCSInsight/DCSInsight.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<UseWPF>true</UseWPF>
<AssemblyName>dcs-insight</AssemblyName>
<Version>1.0.0</Version>
<AssemblyVersion>1.8.0</AssemblyVersion>
<AssemblyVersion>1.8.1</AssemblyVersion>
<ApplicationIcon>Images\Magnifier_icon.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/client/DCSInsight/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ private async Task CheckForNewVersion()
}
else if (githubVersion.CompareTo(thisVersion) == 0)
{
MessageBox.Show(this, $"You have the latest version.", "", MessageBoxButton.OK, MessageBoxImage.Information);
MessageBox.Show(this, $"You have the latest version.", "All Set", MessageBoxButton.OK, MessageBoxImage.Information);
}
}
catch (Exception ex)
Expand Down

0 comments on commit 519723b

Please sign in to comment.