We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80d04c7 commit 9a667c9Copy full SHA for 9a667c9
1 file changed
Source/UI/PluginInstaller.cpp
@@ -481,6 +481,16 @@ void PluginInstallerComponent::run()
481
482
checkForUpdates = false;
483
}
484
+
485
+ if(updatablePlugins.size() > 0)
486
+ {
487
+ const String updatemsg = "Some of your plugins have updates available! "
488
+ "Please update them to get the latest features and bug-fixes.";
489
490
+ AlertWindow::showMessageBoxAsync(AlertWindow::AlertIconType::InfoIcon,
491
+ "Updates Available",
492
+ updatemsg, "OK", this);
493
+ }
494
495
496
void PluginInstallerComponent::buttonClicked(Button* button)
0 commit comments