Index: /applications/editors/josm/plugins/lakewalker/build.xml
===================================================================
--- /applications/editors/josm/plugins/lakewalker/build.xml	(revision 9875)
+++ /applications/editors/josm/plugins/lakewalker/build.xml	(revision 9876)
@@ -1,3 +1,3 @@
-<project name="Lakewalker" default="dist" basedir=".">
+<project name="lakewalker" default="dist" basedir=".">
 
   <!-- josm "user home" directory depends on the platform used (windows has a different place than unix/linux) -->
@@ -46,11 +46,20 @@
 
   <target name="dist" depends="compile">
+    <exec append="false" output="REVISION" executable="svn" failifexecutionfails="false">
+      <env key="LANG" value="C"/>
+      <arg value="info"/>
+      <arg value="--xml"/>
+      <arg value="."/>
+    </exec>
+    <xmlproperty file="REVISION" prefix="version" keepRoot="false" collapseAttributes="true"/>
+    <delete file="REVISION"/>
     <jar destfile="${plugin.jar}" basedir="build">
       <manifest>
         <attribute name="Plugin-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerPlugin" />
         <attribute name="Plugin-Description" value="Interface to Lakewalker module" />
-        <attribute name="Plugin-Version" value="0.2"/>
+        <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
+        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
         <attribute name="Author" value="Brent Easton &lt;b.easton@uws.edu.au>, Jason Reid &lt;jrreid@ucalgary.ca>"/>
-		<attribute name="Main-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerApp"/>
+        <attribute name="Main-Class" value="org.openstreetmap.josm.plugins.lakewalker.LakewalkerApp"/>
       </manifest>
     </jar>
Index: /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/DoubleConfigurer.java
===================================================================
--- /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/DoubleConfigurer.java	(revision 9875)
+++ /applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/DoubleConfigurer.java	(revision 9876)
@@ -19,6 +19,4 @@
 package org.openstreetmap.josm.plugins.lakewalker;
 
-import java.text.DecimalFormat;
-
 /**
  * A Configurer for Double values
@@ -26,6 +24,4 @@
 public class DoubleConfigurer extends StringConfigurer {
 
-  final static DecimalFormat df = new DecimalFormat("#0.0##########");
-  
   public DoubleConfigurer() {
     super();
@@ -37,5 +33,5 @@
 
   public DoubleConfigurer(String key, String name, Double val) {
-    super(key, name, val == null ? null : df.format(val));
+    super(key, name, val == null ? null : val.toString());
   }
 
@@ -50,7 +46,7 @@
     if (d != null) {
       setValue(d);
-    }
-    if (!noUpdate && nameField != null) {
-      nameField.setText(df.format(d));
+      if (!noUpdate && nameField != null) {
+        nameField.setText(d.toString());
+      }
     }
   }
@@ -58,7 +54,7 @@
   public String getValueString() {
     if (value == null || value.equals("")) {
-      return (String) value;
+      return null;
     }
-    return df.format(value);
+    return value.toString();
   }
 }
