Changeset 27852 in osm for applications/editors/josm/plugins/mirrored_download
- Timestamp:
- 2012-02-18T13:40:52+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/mirrored_download
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mirrored_download/build.xml
r27678 r27852 86 86 <attribute name="Plugin-Description" value="Simplifies download from different read-only APIs."/> 87 87 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/mirrored_download"/> 88 <attribute name="Plugin-Mainversion" value="4 549"/>88 <attribute name="Plugin-Mainversion" value="4980"/> 89 89 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 90 90 </manifest> -
applications/editors/josm/plugins/mirrored_download/src/mirrored_download/DownloadAction2.java
r27843 r27852 29 29 public DownloadAction2() { 30 30 super(tr("Download from OSM mirror..."), null, tr("Download map data from the OSM server."), 31 Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut. GROUPS_ALT1+Shortcut.GROUP_DIRECT2), true);31 Shortcut.registerShortcut("mirror:download", tr("File: {0}", tr("Download from OSM mirror...")), KeyEvent.VK_DOWN, Shortcut.ALT_SHIFT), true); 32 32 putValue("help", ht("/Action/MirroredDownload")); 33 33 } -
applications/editors/josm/plugins/mirrored_download/src/mirrored_download/UrlSelectionAction.java
r27691 r27852 25 25 public UrlSelectionAction() { 26 26 super(tr("Select URL..."), null, tr("Select URL to download from."), 27 Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut. GROUPS_ALT1+Shortcut.GROUP_HOTKEY), true);27 Shortcut.registerShortcut("file:selecturl", tr("File: {0}", tr("Select URL...")), KeyEvent.VK_D, Shortcut.CTRL_SHIFT), true); 28 28 putValue("help", ht("/Action/SelectUrl")); 29 29 }
Note:
See TracChangeset
for help on using the changeset viewer.