Changeset 29663 in osm for applications/editors/josm


Ignore:
Timestamp:
2013-06-16T17:04:03+02:00 (11 years ago)
Author:
donvip
Message:

see #josm8701 - Do not include OS details in changeset created_by tag

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

Legend:

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

    r29548 r29663  
    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="5874"/>
     6    <property name="plugin.main.version" value="5956"/>
    77
    88    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/reverter/src/reverter/ReverterUploadHook.java

    r29503 r29663  
    3131        if (created_by == null || "".equals(created_by)) {
    3232            if (hasRevertions) {
    33                 tags.put("created_by", Version.getInstance().getAgentString() + ";" + pluginString);
     33                tags.put("created_by", Version.getInstance().getAgentString(false) + ";" + pluginString);
    3434                ud.setDefaultChangesetTags(tags);
    3535            }
Note: See TracChangeset for help on using the changeset viewer.