Skip to content

Commit 9367dfc

Browse files
authored
Merge pull request #3703 from onesounds/250611-BlockReleaseNoteInDev
Skip release note notification for dev builds
2 parents 7784fe4 + 0f94ec6 commit 9367dfc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Flow.Launcher/MainWindow.xaml.cs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,12 +137,11 @@ private void OnLoaded(object sender, RoutedEventArgs _)
137137
welcomeWindow.Show();
138138
}
139139

140-
if (_settings.ReleaseNotesVersion != Constant.Version)
140+
if (Constant.Version != "1.0.0" && _settings.ReleaseNotesVersion != Constant.Version) // Skip release notes notification for developer builds (version 1.0.0)
141141
{
142142
// Update release notes version
143143
_settings.ReleaseNotesVersion = Constant.Version;
144-
145-
// Display message box with button
144+
// Show release note popup with button
146145
App.API.ShowMsgWithButton(
147146
string.Format(App.API.GetTranslation("appUpdateTitle"), Constant.Version),
148147
App.API.GetTranslation("appUpdateButtonContent"),

0 commit comments

Comments
 (0)