Changeset 30203 in osm


Ignore:
Timestamp:
2014-01-15T23:44:24+01:00 (11 years ago)
Author:
donvip
Message:

[josm_plugins] update to JOSM 6690

Location:
applications/editors/josm/plugins
Files:
2 added
4 edited

Legend:

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

    r29854 r30203  
    44    <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="6162"/>
     6    <property name="plugin.main.version" value="6690"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java

    r29819 r30203  
    335335                ImageryInfo info = ((ImageryLayer)layer).getInfo();
    336336                String url = info.getUrl();
    337                 String itype = info.getImageryType().getUrlString();
     337                String itype = info.getImageryType().getTypeString();
    338338                loadParameter((url.equals("") ? itype : url), true);
    339339                action = new DummyAction(currentMapFrame, this);
     
    484484        // redirect child process's stderr to JOSM stderr
    485485        new Thread(new Runnable() {
     486            @Override
    486487            public void run() {
    487488                try {
     
    502503        // Write stdin stream
    503504        Thread osmWriteThread = new Thread(new Runnable() {
     505            @Override
    504506            public void run() {
    505507                BBox bbox = null;
     
    571573        final CommandLine that = this;
    572574        Thread osmParseThread = new Thread(new Runnable() {
     575            @Override
    573576            public void run() {
    574577                try {
  • applications/editors/josm/plugins/imagery-xml-bounds/build.xml

    r29854 r30203  
    44    <property name="commit.message" value="Commit message"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="6162"/>
     6    <property name="plugin.main.version" value="6690"/>
    77       
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/data/XmlBoundsConverter.java

    r27015 r30203  
    128128               
    129129                safePut(osmImagery, KEY_NAME, imagery.getName());
    130                 safePut(osmImagery, KEY_TYPE, imagery.getImageryType().getUrlString());
     130                safePut(osmImagery, KEY_TYPE, imagery.getImageryType().getTypeString());
    131131                safePut(osmImagery, KEY_DEFAULT, imagery.isDefaultEntry());
    132132                safePut(osmImagery, KEY_URL, imagery.getUrl());
Note: See TracChangeset for help on using the changeset viewer.