Skip to content

Commit 9a667c9

Browse files
committed
Show AlertWindow if plugin updates are available
1 parent 80d04c7 commit 9a667c9

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

Source/UI/PluginInstaller.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -481,6 +481,16 @@ void PluginInstallerComponent::run()
481481

482482
checkForUpdates = false;
483483
}
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+
}
484494
}
485495

486496
void PluginInstallerComponent::buttonClicked(Button* button)

0 commit comments

Comments
 (0)