Ignore:
Timestamp:
2013-04-15T13:50:07+02:00 (11 years ago)
Author:
donvip
Message:

[josm_reverter] update plugin to JOSM 5865 (fix #josm8608)

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

Legend:

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

    r29435 r29503  
    44    <property name="commit.message" value="Reverter: Update MultiOsmReader to support null data after redaction"/>
    55    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    6     <property name="plugin.main.version" value="5775"/>
     6    <property name="plugin.main.version" value="5865"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
     
    1414    <property name="plugin.icon" value="images/revert-changeset.png"/>
    1515    <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Reverter"/>
    16     <!--<property name="plugin.early" value="..."/>-->
    17     <!--<property name="plugin.requires" value="..."/>-->
    1816    <property name="plugin.stage" value="5"/>
    1917
  • applications/editors/josm/plugins/reverter/src/reverter/ReverterUploadHook.java

    r24887 r29503  
    77import org.openstreetmap.josm.command.Command;
    88import org.openstreetmap.josm.data.APIDataSet;
    9 import org.openstreetmap.josm.gui.io.TagSettingsPanel;
     9import org.openstreetmap.josm.data.Version;
    1010import org.openstreetmap.josm.gui.io.UploadDialog;
    1111
     
    3131        if (created_by == null || "".equals(created_by)) {
    3232            if (hasRevertions) {
    33                 tags.put("created_by", TagSettingsPanel.getDefaultCreatedBy() + ";" + pluginString);
     33                tags.put("created_by", Version.getInstance().getAgentString() + ";" + pluginString);
    3434                ud.setDefaultChangesetTags(tags);
    3535            }
Note: See TracChangeset for help on using the changeset viewer.