From 519723b1eeecca834824695146ca0a0a3716bbfc Mon Sep 17 00:00:00 2001 From: Jerker Dahlblom Date: Sat, 2 Dec 2023 14:55:34 +0200 Subject: [PATCH] compile and messagebox title (#53) --- src/client/DCSInsight/DCSInsight.csproj | 2 +- src/client/DCSInsight/MainWindow.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client/DCSInsight/DCSInsight.csproj b/src/client/DCSInsight/DCSInsight.csproj index dca6797..0625e39 100644 --- a/src/client/DCSInsight/DCSInsight.csproj +++ b/src/client/DCSInsight/DCSInsight.csproj @@ -6,7 +6,7 @@ true dcs-insight 1.0.0 - 1.8.0 + 1.8.1 Images\Magnifier_icon.ico diff --git a/src/client/DCSInsight/MainWindow.xaml.cs b/src/client/DCSInsight/MainWindow.xaml.cs index 9c35302..c8693ea 100644 --- a/src/client/DCSInsight/MainWindow.xaml.cs +++ b/src/client/DCSInsight/MainWindow.xaml.cs @@ -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)