Changeset 29784 in osm
- Timestamp:
- 2013-07-26T21:06:52+02:00 (11 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 1 added
- 18 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/build.xml
r29780 r29784 4 4 <property name="commit.message" value="JOSM/CommandLine: fix exception after JOSM update"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 5960"/>6 <property name="plugin.main.version" value="6088"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r29771 r29784 190 190 191 191 if ( Main.main.menu != null ) { 192 commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_O, Main.main.menu. defaultMenuPos, ht("/Plugin/CommandLine"));192 commandMenu = Main.main.menu.addMenu(marktr("Commands") , KeyEvent.VK_O, Main.main.menu.getDefaultMenuPos(), ht("/Plugin/CommandLine")); 193 193 MainMenu.add(commandMenu, new CommandLineAction(this)); 194 194 } -
applications/editors/josm/plugins/cadastre-fr/build.xml
r29734 r29784 4 4 <property name="commit.message" value="Changed constructor for Plugin"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 5960"/>6 <property name="plugin.main.version" value="6088"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/CadastrePlugin.java
r29714 r29784 210 210 211 211 if (cadastreJMenu == null) { 212 cadastreJMenu = menu.addMenu(marktr("Cadastre"), KeyEvent.VK_C, menu. defaultMenuPos, ht("/Plugin/CadastreFr"));212 cadastreJMenu = menu.addMenu(marktr("Cadastre"), KeyEvent.VK_C, menu.getDefaultMenuPos(), ht("/Plugin/CadastreFr")); 213 213 JosmAction grab = new MenuActionGrab(); 214 214 JMenuItem menuGrab = new JMenuItem(grab); -
applications/editors/josm/plugins/czechaddress/build.xml
r29778 r29784 33 33 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/CS:JOSM/Plugins/CzechAddress"/> 34 34 <attribute name="Plugin-Icon" value="images/preferences/czech_flag.png"/> 35 <attribute name="Plugin-Mainversion" value="608 2"/>35 <attribute name="Plugin-Mainversion" value="6088"/> 36 36 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 37 37 </manifest> -
applications/editors/josm/plugins/czechaddress/src/org/openstreetmap/josm/plugins/czechaddress/CzechAddressPlugin.java
r29778 r29784 188 188 GuiHelper.runInEDTAndWait(new Runnable() { 189 189 @Override public void run() { 190 czechMenu = Main.main.menu.addMenu(marktr("Adress"), KeyEvent.VK_Z, 4, ht("/Plugin/CzechAddress"));190 czechMenu = Main.main.menu.addMenu(marktr("Adress"), KeyEvent.VK_Z, Main.main.menu.getDefaultMenuPos(), ht("/Plugin/CzechAddress")); 191 191 menuItems.add(MainMenu.add(czechMenu, new PointManipulatorAction())); 192 192 menuItems.add(MainMenu.add(czechMenu, new GroupManipulatorAction())); -
applications/editors/josm/plugins/piclayer/build.xml
r29601 r29784 3 3 <property name="commit.message" value="PicLayer - #8743 - fixed NPE when removing last layer"/> 4 4 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 5 <property name="plugin.main.version" value=" 5960"/>5 <property name="plugin.main.version" value="6088"/> 6 6 7 7 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/PicLayerPlugin.java
r29601 r29784 74 74 // Create menu entry 75 75 if ( Main.main.menu != null ) { 76 menu = Main.main.menu.addMenu(marktr("PicLayer") , KeyEvent.VK_L, Main.main.menu. defaultMenuPos, ht("/Plugin/PicLayer"));76 menu = Main.main.menu.addMenu(marktr("PicLayer") , KeyEvent.VK_L, Main.main.menu.getDefaultMenuPos(), ht("/Plugin/PicLayer")); 77 77 } 78 78 -
applications/editors/josm/plugins/public_transport/build.xml
r29661 r29784 5 5 <property name="commit.message" value="Commit message"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="60 10"/>7 <property name="plugin.main.version" value="6088"/> 8 8 9 9 <property name="plugin.author" value="Roland M. Olbricht"/> -
applications/editors/josm/plugins/public_transport/src/public_transport/PublicTransportPlugin.java
r27877 r29784 36 36 37 37 if (jMenu == null) 38 jMenu = menu.addMenu(marktr("Public Transport"), KeyEvent.VK_COMMA, menu. defaultMenuPos, "help");38 jMenu = menu.addMenu(marktr("Public Transport"), KeyEvent.VK_COMMA, menu.getDefaultMenuPos(), "help"); 39 39 else 40 40 jMenu.removeAll(); -
applications/editors/josm/plugins/routing/build.xml
r29596 r29784 5 5 <property name="commit.message" value="added one-way support in roundabouts"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value=" 5960"/>7 <property name="plugin.main.version" value="6088"/> 8 8 9 9 <!-- -
applications/editors/josm/plugins/routing/src/com/innovant/josm/plugin/routing/gui/RoutingMenu.java
r28568 r29784 75 75 public RoutingMenu() { 76 76 MainMenu mm = Main.main.menu; 77 menu = mm.addMenu(marktr("Routing"), KeyEvent.VK_O, mm. defaultMenuPos, ht("/Plugin/Routing"));77 menu = mm.addMenu(marktr("Routing"), KeyEvent.VK_O, mm.getDefaultMenuPos(), ht("/Plugin/Routing")); 78 78 79 79 startMI = new JMenuItem(tr("Add routing layer")); -
applications/editors/josm/plugins/sds/build.xml
r29684 r29784 5 5 <property name="commit.message" value=""/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="60 10"/>7 <property name="plugin.main.version" value="6088"/> 8 8 9 9 <!-- -
applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SdsMenu.java
r28160 r29784 40 40 public SdsMenu(final SeparateDataStorePlugin thePlugin) { 41 41 MainMenu mm = Main.main.menu; 42 menu = mm.addMenu(marktr("SDS"), KeyEvent.VK_S, mm. defaultMenuPos, null);42 menu = mm.addMenu(marktr("SDS"), KeyEvent.VK_S, mm.getDefaultMenuPos(), null); 43 43 saveItem = new JMenuItem(new SdsSaveAction()); 44 44 menu.add(saveItem); -
applications/editors/josm/plugins/trustosm/build.xml
r29435 r29784 32 32 <property name="commit.message" value="New plugin for digital signing osm data"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value=" 4980"/>34 <property name="plugin.main.version" value="6088"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/TrustOSMplugin.java
r27829 r29784 250 250 251 251 if (gpgJMenu == null) { 252 gpgJMenu = menu.addMenu(marktr("GPG"), KeyEvent.VK_B, menu. defaultMenuPos, ht("/Plugin/TrustOSM"));252 gpgJMenu = menu.addMenu(marktr("GPG"), KeyEvent.VK_B, menu.getDefaultMenuPos(), ht("/Plugin/TrustOSM")); 253 253 gpgJMenu.add(new JMenuItem(new ExportSigsAction())); 254 254 } -
applications/editors/josm/plugins/videomapping/build.xml
r29782 r29784 33 33 <property name="commit.message" value="fix after JOSM update"/> 34 34 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 35 <property name="plugin.main.version" value=" 4980"/>35 <property name="plugin.main.version" value="6088"/> 36 36 37 37 <!-- -
applications/editors/josm/plugins/videomapping/src/org/openstreetmap/josm/plugins/videomapping/VideoPlugin.java
r29771 r29784 78 78 79 79 private void createMenusAndShortCuts() { 80 VMenu = Main.main.menu.addMenu(marktr("Video"), KeyEvent.VK_Q, Main.main.menu. defaultMenuPos,ht("/Plugin/Videomapping"));80 VMenu = Main.main.menu.addMenu(marktr("Video"), KeyEvent.VK_Q, Main.main.menu.getDefaultMenuPos(),ht("/Plugin/Videomapping")); 81 81 VMenu.setEnabled(false); 82 82 VAdd= new JosmAction(tr("Import Video"),"videomapping",tr("Sync a video against this GPS track"),null,false) {
Note:
See TracChangeset
for help on using the changeset viewer.