Changeset 30659 in osm for applications
- Timestamp:
- 2014-09-19T02:46:51+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/pbf
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pbf/build.xml
r30656 r30659 3 3 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value="7 248"/>5 <property name="plugin.main.version" value="7562"/> 6 6 7 7 <property name="plugin.author" value="Don-vip"/> -
applications/editors/josm/plugins/pbf/src/org/openstreetmap/josm/plugins/pbf/PbfPlugin.java
r30341 r30659 7 7 import org.openstreetmap.josm.plugins.PluginInformation; 8 8 import org.openstreetmap.josm.plugins.pbf.action.DownloadPbfTask; 9 import org.openstreetmap.josm.plugins.pbf.io.PbfExporter; 9 10 import org.openstreetmap.josm.plugins.pbf.io.PbfImporter; 10 11 … … 21 22 ExtensionFileFilter.importers.add(new PbfImporter()); 22 23 // Allow JOSM to export *.osm.pbf files 23 //ExtensionFileFilter.exporters.add(new PbfExporter());// TODO: PBF export24 ExtensionFileFilter.exporters.add(new PbfExporter()); 24 25 // Allow JOSM to download remote *.osm.pbf files 25 26 Main.main.menu.openLocation.addDownloadTaskClass(DownloadPbfTask.class);
Note:
See TracChangeset
for help on using the changeset viewer.