Changeset 20251 in osm for applications
- Timestamp:
- 2010-03-02T21:53:32+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/tracer
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/tracer
- Property svn:ignore
-
old new 1 1 dist 2 3 build
-
- Property svn:ignore
-
applications/editors/josm/plugins/tracer/build.xml
r20027 r20251 33 33 <property name="commit.message" value="build.xml according to official template" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value="2 561" />35 <property name="plugin.main.version" value="2830" /> 36 36 37 37 … … 159 159 160 160 <!-- 161 ************************** Publishing the plugin *********************************** 161 ************************** Publishing the plugin *********************************** 162 162 --> 163 163 <!-- 164 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 164 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 165 165 ** property ${coreversion.info.entry.revision} 166 166 ** … … 211 211 212 212 <!-- 213 ** commits the plugin.jar 213 ** commits the plugin.jar 214 214 --> 215 215 <target name="commit-dist"> 216 216 <echo> 217 217 ***** Properties of published ${plugin.jar} ***** 218 Commit message : '${commit.message}' 218 Commit message : '${commit.message}' 219 219 Plugin-Mainversion: ${plugin.main.version} 220 220 JOSM build version: ${coreversion.info.entry.revision} 221 221 Plugin-Version : ${version.entry.commit.revision} 222 ***** / Properties of published ${plugin.jar} ***** 223 222 ***** / Properties of published ${plugin.jar} ***** 223 224 224 Now commiting ${plugin.jar} ... 225 225 </echo> -
applications/editors/josm/plugins/tracer/src/org/openstreetmap/josm/plugins/tracer/TracerPlugin.java
r19881 r20251 14 14 public class TracerPlugin extends Plugin { 15 15 16 public TracerPlugin() {17 MainMenu.add(Main.main.menu.toolsMenu, new TracerAction(Main.main.map));18 }19 20 /*21 22 Working only in new version.23 24 16 public TracerPlugin(PluginInformation info) { 25 17 super(info); 26 18 MainMenu.add(Main.main.menu.toolsMenu, new TracerAction(Main.map)); 27 19 } 28 29 */ 20 30 21 }
Note:
See TracChangeset
for help on using the changeset viewer.