Changeset 18404 in osm for applications/editors/josm/plugins/walkingpapers
- Timestamp:
- 2009-11-01T13:19:59+01:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/walkingpapers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/walkingpapers/build.xml
r17822 r18404 26 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 <attribute name="Plugin-Mainversion" value="2 196"/>28 <attribute name="Plugin-Mainversion" value="2323"/> 29 29 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 30 30 </manifest> -
applications/editors/josm/plugins/walkingpapers/src/org/openstreetmap/josm/plugins/walkingpapers/WalkingPapersPlugin.java
r18198 r18404 1 1 package org.openstreetmap.josm.plugins.walkingpapers; 2 2 3 import static org.openstreetmap.josm.gui.help.HelpUtil.ht; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 4 5 … … 20 21 public class WalkingPapersPlugin extends Plugin 21 22 { 22 23 23 static JMenu walkingPapersMenu; 24 24 25 public WalkingPapersPlugin() 25 26 { 26 27 MainMenu menu = Main.main.menu; 27 walkingPapersMenu = menu.addMenu(tr("Walking Papers"), KeyEvent.VK_K, menu.defaultMenuPos); 28 walkingPapersMenu = menu.addMenu(tr("Walking Papers"), KeyEvent.VK_K, menu.defaultMenuPos, ht("/Plugin/WalkingPapers")); 28 29 walkingPapersMenu.add(new JMenuItem(new WalkingPapersAddLayerAction())); 29 30 } 30 31 31 }
Note:
See TracChangeset
for help on using the changeset viewer.