Ignore:
Timestamp:
2010-03-03T19:20:28+01:00 (14 years ago)
Author:
bastiK
Message:

fixed: plugin version in status report is wrong. It should show the version from plugin manifest, but instead it displays the version that would be loaded in case of a plugin update. Cause: local version of plugin is overridden by the version of plugin that is already present, but instead of 'localversion' it uses 'version'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r3054 r3073  
    379379            Class<?> klass = plugin.loadClass(pluginClassLoader);
    380380            if (klass != null) {
    381                 System.out.println(tr("loading plugin ''{0}''", plugin.name));
     381                System.out.println(tr("loading plugin ''{0}'' ({1})", plugin.name, plugin.localversion));
    382382                pluginList.add(plugin.load(klass));
    383383            }
Note: See TracChangeset for help on using the changeset viewer.