Changeset 30962 in osm for applications/editors/josm/plugins
- Timestamp:
- 2015-02-09T22:10:10+01:00 (10 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/OpeningHoursEditor/build.xml
r30416 r30962 11 11 <property name="plugin.icon" value="images/opening_hours.png"/> 12 12 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/OpeningHoursEditor"/> 13 <property name="plugin.canloadatruntime" value="true"/> 13 14 14 15 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/mirrored_download/build.xml
r30664 r30962 15 15 <property name="plugin.icon" value="images/download_mirror.png"/> 16 16 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/mirrored_download"/> 17 <property name="plugin.canloadatruntime" value="true"/> 17 18 18 19 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/photo_geotagging/build.xml
r30416 r30962 12 12 <property name="plugin.icon" value="images/geotagging.png"/> 13 13 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Photo_Geotagging"/> 14 <property name="plugin.canloadatruntime" value="true"/> 14 15 15 16 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/photoadjust/build.xml
r30904 r30962 18 18 <!--<property name="plugin.requires" value="..."/>--> 19 19 <!--<property name="plugin.stage" value="..."/>--> 20 <property name="plugin.canloadatruntime" value="true"/> 20 21 21 22 <property name="josm" location="../../core/dist/josm-custom.jar"/> -
applications/editors/josm/plugins/photoadjust/src/org/openstreetmap/josm/plugins/photoadjust/PhotoAdjustPlugin.java
r30936 r30962 69 69 public void mapFrameInitialized(MapFrame oldFrame, MapFrame newFrame) { 70 70 if (oldFrame == null && newFrame != null) { 71 MapView.addLayerChangeListener(this); 71 MapView.addLayerChangeListener(this, true); 72 72 PhotoAdjustMapMode adjustMode = new PhotoAdjustMapMode(newFrame, worker); 73 73 adjustMode.installMapMode(newFrame); -
applications/editors/josm/plugins/piclayer/build.xml
r30547 r30962 13 13 <property name="plugin.icon" value="images/layericon.png"/> 14 14 <property name="plugin.link" value="http://josm.openstreetmap.de/wiki/Help/Plugin/PicLayer"/> 15 <property name="plugin.canloadatruntime" value="true"/> 15 16 16 17 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/piclayer/src/org/openstreetmap/josm/plugins/piclayer/PicLayerPlugin.java
r30737 r30962 75 75 MainMenu.add(Main.main.menu.imagerySubMenu, newLayerFromFileAction); 76 76 MainMenu.add(Main.main.menu.imagerySubMenu, newLayerFromClipboardAction); 77 newLayerFromFileAction.setEnabled(false); 78 newLayerFromClipboardAction.setEnabled(false); 77 layerRemoved(null); // update enabled status 79 78 // Listen to layers 80 79 MapView.addLayerChangeListener(this); -
applications/editors/josm/plugins/roadsigns/build.xml
r30940 r30962 50 50 <attribute name="Plugin-Mainversion" value="${plugin.main.version}"/> 51 51 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 52 <attribute name="Plugin-Canloadatruntime" value="true"/> 52 53 </manifest> 53 54 </jar> -
applications/editors/josm/plugins/roadsigns/src/org/openstreetmap/josm/plugins/roadsigns/RoadSignsPlugin.java
r30940 r30962 72 72 PropertiesDialog.pluginHook.add(btn); 73 73 PropertiesDialog.pluginHook.setLayout(new FlowLayout(FlowLayout.CENTER, 0, 0)); 74 PropertiesDialog.pluginHook.revalidate(); 74 75 } 75 76 -
applications/editors/josm/plugins/simplifyarea/build.xml
r30416 r30962 14 14 <property name="plugin.icon" value="images/preferences/simplifyArea.png"/> 15 15 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/SimplifyArea"/> 16 <property name="plugin.canloadatruntime" value="true"/> 16 17 17 18 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/tag2link/build.xml
r30416 r30962 12 12 <property name="plugin.icon" value="images/tag2linkv2_24x24.png"/> 13 13 <property name="plugin.link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/Tag2Link"/> 14 <property name="plugin.canloadatruntime" value="true"/> 14 15 15 16 <!-- ** include targets that all plugins have in common ** --> -
applications/editors/josm/plugins/turnrestrictions/build.xml
r30938 r30962 14 14 <property name="plugin.icon" value="images/preferences/turnrestrictions.png"/> 15 15 <property name="plugin.link" value="https://josm.openstreetmap.de/wiki/Help/Plugin/TurnRestrictions"/> 16 <property name="plugin.canloadatruntime" value="true"/> 16 17 17 18 <!-- ** include targets that all plugins have in common ** -->
Note:
See TracChangeset
for help on using the changeset viewer.