Skip release notes notification for developer builds

This commit is contained in:
DB P 2025-06-11 15:54:38 +09:00
parent 34f2b7d7f7
commit 0f94ec673a

View file

@ -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"),