Changeset 20431 in osm
- Timestamp:
- 2010-03-12T08:21:45+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/dataimport/build.xml
r19681 r20431 28 28 --> 29 29 <project name="dataimport" default="dist" basedir="."> 30 30 31 31 <!-- enter the SVN commit message --> 32 32 <property name="commit.message" value="Changed constructor signature, updated build.xml" /> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value=" 2907" />34 <property name="plugin.main.version" value="3119" /> 35 35 36 36 <!-- … … 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/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/SingleSegmentGpxTrack.java
r20267 r20431 36 36 } 37 37 38 @Override 39 public int getUpdateCount() { 40 return trackSegment.getUpdateCount(); 41 } 42 38 43 } -
applications/editors/josm/plugins/globalsat/build.xml
r19681 r20431 33 33 <property name="commit.message" value="Changed constructor signature of plugin main class" /> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" 2907" />35 <property name="plugin.main.version" value="3119" /> 36 36 37 37 <property name="josm" location="../../core/dist/josm-custom.jar"/> … … 97 97 98 98 <!-- 99 ************************** Publishing the plugin *********************************** 99 ************************** Publishing the plugin *********************************** 100 100 --> 101 101 <!-- 102 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 102 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 103 103 ** property ${coreversion.info.entry.revision} 104 104 ** … … 149 149 150 150 <!-- 151 ** commits the plugin.jar 151 ** commits the plugin.jar 152 152 --> 153 153 <target name="commit-dist"> 154 154 <echo> 155 155 ***** Properties of published ${plugin.jar} ***** 156 Commit message : '${commit.message}' 156 Commit message : '${commit.message}' 157 157 Plugin-Mainversion: ${plugin.main.version} 158 158 JOSM build version: ${coreversion.info.entry.revision} 159 159 Plugin-Version : ${version.entry.commit.revision} 160 ***** / Properties of published ${plugin.jar} ***** 161 160 ***** / Properties of published ${plugin.jar} ***** 161 162 162 Now commiting ${plugin.jar} ... 163 163 </echo> -
applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/SingleSegmentGpxTrack.java
r20267 r20431 36 36 } 37 37 38 @Override 39 public int getUpdateCount() { 40 return trackSegment.getUpdateCount(); 41 } 42 38 43 } -
applications/editors/josm/plugins/livegps/build.xml
r19680 r20431 18 18 ** 19 19 ** To build against the core in ../../core, create a correct manifest and deploy to 20 ** SVN, 20 ** SVN, 21 21 ** set the properties commit.message and plugin.main.version 22 22 ** and run … … 28 28 29 29 <property name="commit.message" value="Changed the constructor signature of the plugin main class" /> 30 <property name="plugin.main.version" value=" 2907" />31 30 <property name="plugin.main.version" value="3119" /> 31 32 32 33 33 <property name="josm" location="../../core/dist/josm-custom.jar"/> … … 89 89 90 90 <!-- 91 ************************** Publishing the plugin *********************************** 91 ************************** Publishing the plugin *********************************** 92 92 --> 93 93 <!-- 94 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 94 ** extracts the JOSM release for the JOSM version in ../core and saves it in the 95 95 ** property ${coreversion.info.entry.revision} 96 96 ** … … 141 141 142 142 <!-- 143 ** commits the plugin.jar 143 ** commits the plugin.jar 144 144 --> 145 145 <target name="commit-dist"> 146 146 <echo> 147 147 ***** Properties of published ${plugin.jar} ***** 148 Commit message : '${commit.message}' 148 Commit message : '${commit.message}' 149 149 Plugin-Mainversion: ${plugin.main.version} 150 150 JOSM build version: ${coreversion.info.entry.revision} 151 151 Plugin-Version : ${version.entry.commit.revision} 152 ***** / Properties of published ${plugin.jar} ***** 153 152 ***** / Properties of published ${plugin.jar} ***** 153 154 154 Now commiting ${plugin.jar} ... 155 155 </echo> -
applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java
r19680 r20431 55 55 } 56 56 57 @Override 58 public int getUpdateCount() { 59 return size; 60 } 61 57 62 } -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java
r19012 r20431 28 28 29 29 /** 30 * Constructor, initializes the configurable settings. 30 * Constructor, initializes the configurable settings. 31 31 */ 32 32 public LiveGpsAcquirer() { … … 204 204 haveFix = true; 205 205 } 206 break; 206 207 default: 207 208 // not interested -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java
r20264 r20431 30 30 float speed; 31 31 float course; 32 String status;33 32 // JLabel lbl; 34 33 boolean autocenter; -
applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java
r19448 r20431 32 32 private JMenu lgpsmenu; 33 33 private JCheckBoxMenuItem lgpscapture; 34 private JMenuItem lgpscenter;35 34 private JCheckBoxMenuItem lgpsautocenter; 36 35 private LiveGpsDialog lgpsdialog; -
applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java
r20264 r20431 36 36 } 37 37 38 @Override 39 public int getUpdateCount() { 40 return trackSegment.getUpdateCount(); 41 } 42 38 43 }
Note:
See TracChangeset
for help on using the changeset viewer.