Ignore:
Timestamp:
2007-07-06T00:38:51+02:00 (17 years ago)
Author:
imi
Message:
  • added Plugin Manager to download new plugins from within JOSM
File:
1 edited

Legend:

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

    r267 r277  
    3232        public final String author;
    3333        public final int stage;
     34        public final String version;
    3435        public final List<URL> libraries = new ArrayList<URL>();
    3536
     
    6465                        String stageStr = attr.getValue("Plugin-Stage");
    6566                        stage = stageStr == null ? 50 : Integer.parseInt(stageStr);
     67                        version = attr.getValue("Plugin-Version");
    6668                        author = attr.getValue("Author");
    6769                        if (file != null)
     
    118120        }
    119121
    120         private String getURLString(String fileName) {
     122        public static String getURLString(String fileName) {
    121123                if (System.getProperty("os.name").startsWith("Windows"))
    122124                        return "file:/"+fileName;
Note: See TracChangeset for help on using the changeset viewer.