Index: /applications/editors/josm/plugins/pointInfo/README.md
===================================================================
--- /applications/editors/josm/plugins/pointInfo/README.md	(revision 32131)
+++ /applications/editors/josm/plugins/pointInfo/README.md	(revision 32132)
@@ -34,4 +34,5 @@
     * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-addr.png)] Create an address point on position where was clicked
     * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-addr-ruian.png)] Create an address point on position defined in RUIAN
+    * [![](https://raw.githubusercontent.com/mkyral/josm-pointInfo/master/images/dialogs/create-bug-report.png)] Report an issue with building
 
 ---
Index: /applications/editors/josm/plugins/pointInfo/build.xml
===================================================================
--- /applications/editors/josm/plugins/pointInfo/build.xml	(revision 32131)
+++ /applications/editors/josm/plugins/pointInfo/build.xml	(revision 32132)
@@ -3,7 +3,7 @@
 
     <!-- enter the SVN commit message -->
-    <property name="commit.message" value="PointInfo: can load at runtime."/>
+    <property name="commit.message" value="PointInfo: Fix breakage caused by API cleaning."/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="7001"/>
+    <property name="plugin.main.version" value="10060"/>
 
     <!-- plugin can load at runtime -->
Index: /applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruianModule.java
===================================================================
--- /applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruianModule.java	(revision 32131)
+++ /applications/editors/josm/plugins/pointInfo/src/org/openstreetmap/josm/plugins/pointinfo/ruianModule.java	(revision 32132)
@@ -707,6 +707,6 @@
             JsonArray node = adresniMisto.getJsonArray("pozice");
             am.setPosition(new LatLon(
-              LatLon.roundToOsmPrecisionStrict(node.getJsonNumber(1).doubleValue()),
-              LatLon.roundToOsmPrecisionStrict(node.getJsonNumber(0).doubleValue()))
+              LatLon.roundToOsmPrecision(node.getJsonNumber(1).doubleValue()),
+              LatLon.roundToOsmPrecision(node.getJsonNumber(0).doubleValue()))
             );
           } catch (Exception e) {
