Changeset 27803 in osm for applications
- Timestamp:
- 2012-02-16T20:34:40+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/undelete/build.xml
r27395 r27803 32 32 <property name="commit.message" value="adapt to core changes (backwards compatible)"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 734"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/undelete/src/org/openstreetmap/josm/plugins/undelete/Undelete.java
r27395 r27803 68 68 public UndeleteAction() { 69 69 super(tr("Undelete object..."), "undelete", tr("Undelete object by id"), Shortcut.registerShortcut("tools:undelete", tr("File: {0}", tr("Undelete object...")), 70 KeyEvent.VK_U, Shortcut.GROUP_EDIT , KeyEvent.SHIFT_DOWN_MASK|KeyEvent.ALT_DOWN_MASK), true);70 KeyEvent.VK_U, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT2), true); 71 71 } 72 72 -
applications/editors/josm/plugins/waydownloader/build.xml
r27019 r27803 26 26 --> 27 27 <property name="commit.message" value="Changed the constructor signature of the plugin main class"/> 28 <property name="plugin.main.version" value="4 549"/>28 <property name="plugin.main.version" value="4928"/> 29 29 <!-- 30 30 ************************************************ -
applications/editors/josm/plugins/waydownloader/src/org/openstreetmap/josm/plugins/waydownloader/WayDownloaderPlugin.java
r26509 r27803 57 57 "way-download", 58 58 tr("Download map data on the end of selected way"), 59 Shortcut.registerShortcut("waydownloader:waydownload", tr("Way Download"), KeyEvent.VK_W, Shortcut.GROUP_MENU , Shortcut.SHIFT_DEFAULT),59 Shortcut.registerShortcut("waydownloader:waydownload", tr("Way Download"), KeyEvent.VK_W, Shortcut.GROUP_MENU+Shortcut.GROUPS_ALT1), 60 60 true); 61 61 } -
applications/editors/josm/plugins/wayselector/build.xml
r27019 r27803 32 32 <property name="commit.message" value="recompile due to core change"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 549"/>34 <property name="plugin.main.version" value="4928"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/wayselector/src/org/openstreetmap/josm/plugins/wayselector/WaySelectorPlugin.java
r23189 r27803 45 45 "way-select", 46 46 tr("Select non-branching sequences of ways"), 47 Shortcut.registerShortcut("wayselector:wayselect", tr("Way Select"), KeyEvent.VK_W, Shortcut.GROUP_EDIT , Shortcut.SHIFT_DEFAULT),47 Shortcut.registerShortcut("wayselector:wayselect", tr("Way Select"), KeyEvent.VK_W, Shortcut.GROUP_EDIT+Shortcut.GROUPS_ALT1), 48 48 true); 49 49 }
Note:
See TracChangeset
for help on using the changeset viewer.