Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/20/08 11:26:49 (16 years ago)
Author:
gkronber
Message:

added a statusbar for the plugin-manager and display the number of installed, available, and upgradeable plugins. (ticket #32)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.PluginInfrastructure.GUI/ManagerForm.cs

    r91 r140  
    116116        availableNode.ImageIndex = 0;
    117117        availablePlugins.Nodes.Add(availableNode);
    118 
    119118      });
    120119      upgrades.ForEach(delegate(PluginDescription upgrade) {
     
    136135        currentPlugin.PluginDescription = overridingPlugin;
    137136      });
     137      toolStripStatusLabel.Text = "Installed: " + installedPlugins.Nodes.Count + " Updates: " + upgrades.Count + " Available: " + availablePlugins.Nodes.Count;
    138138      RebuildActionHulls();
    139139      pluginTreeView.Sort();
     
    238238      dialog.Show();
    239239      worker.RunWorkerAsync();
    240 
    241       // NOTE: ignore version conflicts
    242240    }
    243241
Note: See TracChangeset for help on using the changeset viewer.