Changeset 28014 in osm for applications/editors/josm
- Timestamp:
- 2012-03-08T10:48:43+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/DirectUpload/build.xml
r27852 r28014 27 27 <project name="DirectUpload" default="dist" basedir="."> 28 28 <property name="commit.message" value="applied JOSM Ticket 4498 (patch by ax) - oauth support for gpx upload (I accidentally committed parts of the path in [24236])"/> 29 <property name="plugin.main.version" value=" 4980"/>29 <property name="plugin.main.version" value="5053"/> 30 30 <property name="josm" location="../../core/dist/josm-custom.jar"/> 31 31 <property name="plugin.dist.dir" value="../../dist"/> -
applications/editors/josm/plugins/DirectUpload/src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java
r26509 r28014 132 132 } 133 133 visibilityCombo.setSelectedItem(visibility.valueOf(Main.pref.get("directupload.visibility.last-used", visibility.PRIVATE.name())).description); 134 UrlLabel visiUrl = new UrlLabel(tr("http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"), tr("(What does that mean?)")); 134 UrlLabel visiUrl = new UrlLabel(tr("http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"), tr("(What does that mean?)"), 2); 135 135 136 136 // description … … 168 168 169 169 p.add(visibilityLabel, GBC.std().insets(0,10,0,0)); 170 p.add(visiUrl, GBC.eol().insets( 0,10,0,0));170 p.add(visiUrl, GBC.eol().insets(5,10,0,0)); 171 171 p.add(visibilityCombo, GBC.eol()); 172 172 -
applications/editors/josm/plugins/addrinterpolation/build.xml
r27852 r28014 23 23 <project name="AddrInterpolation" default="dist" basedir="."> 24 24 <property name="commit.message" value="Impoved Icon"/> 25 <property name="plugin.main.version" value=" 4980"/>25 <property name="plugin.main.version" value="5053"/> 26 26 <!-- 27 27 ************************************************ -
applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java
r23420 r28014 312 312 313 313 editControlsPane.add(new UrlLabel("http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation", 314 tr("More information about this feature")), c); 314 tr("More information about this feature"),2), c); 315 315 316 316 -
applications/editors/josm/plugins/public_transport/build.xml
r27886 r28014 21 21 ** should not be necessary to change the following properties 22 22 --> 23 <property name="plugin.main.version" value="5053"/> 23 24 <property name="josm" location="${josm.basedir}/core/dist/josm-custom.jar"/> 24 25 <property name="plugin.build.dir" value="build"/> -
applications/editors/josm/plugins/public_transport/src/public_transport/RoutePatternAction.java
r27842 r28014 57 57 import org.openstreetmap.josm.tools.GBC; 58 58 import org.openstreetmap.josm.tools.Shortcut; 59 import org.openstreetmap.josm.tools.UrlLabel;60 59 61 60 public class RoutePatternAction extends JosmAction {
Note:
See TracChangeset
for help on using the changeset viewer.