576 self.SAServer = E5SingleApplicationServer() |
576 self.SAServer = E5SingleApplicationServer() |
577 else: |
577 else: |
578 self.SAServer = None |
578 self.SAServer = None |
579 |
579 |
580 # now finalize the plugin manager setup |
580 # now finalize the plugin manager setup |
|
581 splash.showMessage(self.tr("Initializing Plugins...")) |
581 self.pluginManager.finalizeSetup() |
582 self.pluginManager.finalizeSetup() |
582 # now activate plugins having autoload set to True |
583 # now activate plugins having autoload set to True |
583 splash.showMessage(self.tr("Activating Plugins...")) |
584 splash.showMessage(self.tr("Activating Plugins...")) |
584 self.pluginManager.activatePlugins() |
585 self.pluginManager.activatePlugins() |
585 splash.showMessage(self.tr("Generating Plugins Toolbars...")) |
586 splash.showMessage(self.tr("Generating Plugins Toolbars...")) |
586 self.pluginManager.initPluginToolbars(self.toolbarManager) |
587 self.pluginManager.initPluginToolbars(self.toolbarManager) |
|
588 if Preferences.getPluginManager("StartupCleanup"): |
|
589 splash.showMessage(self.tr("Cleaning Plugins Download Area...")) |
|
590 from PluginManager.PluginRepositoryDialog import \ |
|
591 PluginRepositoryDownloadCleanup |
|
592 PluginRepositoryDownloadCleanup(quiet=True) |
587 |
593 |
588 # now read the keyboard shortcuts for all the actions |
594 # now read the keyboard shortcuts for all the actions |
589 from Preferences import Shortcuts |
595 from Preferences import Shortcuts |
590 Shortcuts.readShortcuts() |
596 Shortcuts.readShortcuts() |
591 |
597 |