Ignore:
Timestamp:
2010-03-12T08:21:45+01:00 (15 years ago)
Author:
jttt
Message:

Changes in GpxTrack API - return number of updates

Location:
applications/editors/josm/plugins/dataimport
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/dataimport/build.xml

    r19681 r20431  
    2828-->
    2929<project name="dataimport" default="dist" basedir=".">
    30        
     30
    3131        <!-- enter the SVN commit message -->
    3232        <property name="commit.message" value="Changed constructor signature, updated build.xml" />
    3333        <!-- 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" />
    3535
    3636        <!--
     
    159159
    160160        <!--
    161         ************************** Publishing the plugin *********************************** 
     161        ************************** Publishing the plugin ***********************************
    162162        -->
    163163        <!--
    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
    165165                ** property ${coreversion.info.entry.revision}
    166166                **
     
    211211
    212212        <!--
    213                 ** commits the plugin.jar 
     213                ** commits the plugin.jar
    214214                -->
    215215        <target name="commit-dist">
    216216                <echo>
    217217        ***** Properties of published ${plugin.jar} *****
    218         Commit message    : '${commit.message}'                                 
     218        Commit message    : '${commit.message}'
    219219        Plugin-Mainversion: ${plugin.main.version}
    220220        JOSM build version: ${coreversion.info.entry.revision}
    221221        Plugin-Version    : ${version.entry.commit.revision}
    222         ***** / Properties of published ${plugin.jar} *****                                     
    223                                                
     222        ***** / Properties of published ${plugin.jar} *****
     223
    224224        Now commiting ${plugin.jar} ...
    225225        </echo>
  • applications/editors/josm/plugins/dataimport/src/org/openstreetmap/josm/plugins/dataimport/io/SingleSegmentGpxTrack.java

    r20267 r20431  
    3636        }
    3737
     38        @Override
     39        public int getUpdateCount() {
     40                return trackSegment.getUpdateCount();
     41        }
     42
    3843}
Note: See TracChangeset for help on using the changeset viewer.