Changeset 29771 in osm for applications/editors/josm/plugins/reverter
- Timestamp:
- 2013-07-24T21:45:09+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/reverter
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/build.xml
r29663 r29771 4 4 <property name="commit.message" value="Reverter: Update MultiOsmReader to support null data after redaction"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 5956"/>6 <property name="plugin.main.version" value="6082"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/reverter/nbproject
-
Property svn:ignore
set to
private
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/reverter/src/reverter/ReverterPlugin.java
r29769 r29771 19 19 public ReverterPlugin(PluginInformation info) { 20 20 super(info); 21 boolean oldMenu = org.openstreetmap.josm.data.Version.getInstance().getVersion() < 6082; 22 JMenu historyMenu = oldMenu? 23 Main.main.menu.addMenu(marktr("History"), KeyEvent.VK_Y, Main.main.menu.defaultMenuPos, ht("/Plugin/Reverter")) 24 : Main.main.menu.dataMenu; 21 JMenu historyMenu = Main.main.menu.dataMenu; 25 22 //MainMenu.add(historyMenu, new ObjectsHistoryAction()); 26 23 MainMenu.add(historyMenu, new RevertChangesetAction());
Note:
See TracChangeset
for help on using the changeset viewer.