From 0f94ec673a36fa0eb0884b7e68bba3c4593e2192 Mon Sep 17 00:00:00 2001 From: DB P Date: Wed, 11 Jun 2025 15:54:38 +0900 Subject: [PATCH] Skip release notes notification for developer builds --- Flow.Launcher/MainWindow.xaml.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Flow.Launcher/MainWindow.xaml.cs b/Flow.Launcher/MainWindow.xaml.cs index e527ab57b..f4d7ad8eb 100644 --- a/Flow.Launcher/MainWindow.xaml.cs +++ b/Flow.Launcher/MainWindow.xaml.cs @@ -137,12 +137,11 @@ namespace Flow.Launcher 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"),