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/globalsat
Files:
2 edited

Legend:

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

    r19681 r20431  
    3333        <property name="commit.message" value="Changed constructor signature of plugin main class" />
    3434        <!-- 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" />
    3636
    3737        <property name="josm"                   location="../../core/dist/josm-custom.jar"/>
     
    9797
    9898        <!--
    99                 ************************** Publishing the plugin *********************************** 
     99                ************************** Publishing the plugin ***********************************
    100100                -->
    101101        <!--
    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
    103103                        ** property ${coreversion.info.entry.revision}
    104104                        **
     
    149149
    150150        <!--
    151                         ** commits the plugin.jar 
     151                        ** commits the plugin.jar
    152152                        -->
    153153        <target name="commit-dist">
    154154                <echo>
    155155                ***** Properties of published ${plugin.jar} *****
    156                 Commit message    : '${commit.message}'                                 
     156                Commit message    : '${commit.message}'
    157157                Plugin-Mainversion: ${plugin.main.version}
    158158                JOSM build version: ${coreversion.info.entry.revision}
    159159                Plugin-Version    : ${version.entry.commit.revision}
    160                 ***** / Properties of published ${plugin.jar} *****                                     
    161                                                        
     160                ***** / Properties of published ${plugin.jar} *****
     161
    162162                Now commiting ${plugin.jar} ...
    163163                </echo>
  • applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/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.