Changeset 16570 in osm for applications/editors/josm/plugins/walkingpapers
- Timestamp:
- 2009-07-18T19:53:47+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/walkingpapers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/walkingpapers/build.xml
r16556 r16570 24 24 <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.walkingpapers.WalkingPapersPlugin"/> 25 25 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 26 <attribute name="Plugin-Description" value="Supports downloading tiled, scanned maps from walking-papers.org. "/>26 <attribute name="Plugin-Description" value="Supports downloading tiled, scanned maps from walking-papers.org. This plugin is still under early development and may be buggy."/> 27 27 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/WalkingPapers"/> 28 28 <attribute name="Plugin-Mainversion" value="1725"/> -
applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersPlugin.java
r16549 r16570 7 7 import javax.swing.JMenu; 8 8 import javax.swing.JMenuItem; 9 import javax.swing.JOptionPane;10 9 11 10 import org.openstreetmap.josm.Main; … … 31 30 walkingPapersMenu = menu.addMenu("Walking Papers", KeyEvent.VK_K, menu.defaultMenuPos); 32 31 walkingPapersMenu.add(new JMenuItem(new WalkingPapersAddLayerAction())); 33 34 JOptionPane.showMessageDialog(Main.parent,tr("You are running the highly experimental Walking Papers plugin. Expect a rougher than usual ride..."));35 32 } 36 33
Note:
See TracChangeset
for help on using the changeset viewer.