Updates felix.jar to version 3.0.7 (Courtesy of Richard S. Hall).

Update check from menu on windows is ran in new thread, preventing block swing if authentication needed.
cusax-fix
Damian Minkov 15 years ago
parent cc31fd9dac
commit 8b919ddfb1

Binary file not shown.

@ -770,6 +770,9 @@ private void checkForUpdate()
{
if(isNewestVersion())
{
if(isAuthenticationCanceled)
return;
getUIService().getPopupDialog().showMessagePopupDialog(
getResources().getI18NString(
"plugin.updatechecker.DIALOG_NOUPDATE"),
@ -920,7 +923,15 @@ private class UpdateMenuButtonComponent
{
public void actionPerformed(ActionEvent e)
{
checkForUpdate();
// run outside swing thread, if password is required we
// will block the swing
new Thread()
{
public void run()
{
checkForUpdate();
}
}.start();
}
});
}

Loading…
Cancel
Save