diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index e527ab57b9b..f4d7ad8eb29 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -137,12 +137,11 @@ private void OnLoaded(object sender, RoutedEventArgs _) welcomeWindow.Show(); } - if (_settings.ReleaseNotesVersion != Constant.Version) + if (Constant.Version != "1.0.0" && _settings.ReleaseNotesVersion != Constant.Version) // Skip release notes notification for developer builds (version 1.0.0) { // Update release notes version _settings.ReleaseNotesVersion = Constant.Version; - - // Display message box with button + // Show release note popup with button App.API.ShowMsgWithButton( string.Format(App.API.GetTranslation("appUpdateTitle"), Constant.Version), App.API.GetTranslation("appUpdateButtonContent"),