Index: /applications/editors/josm/plugins/imagery-xml-bounds/build.xml
===================================================================
--- /applications/editors/josm/plugins/imagery-xml-bounds/build.xml	(revision 29709)
+++ /applications/editors/josm/plugins/imagery-xml-bounds/build.xml	(revision 29710)
@@ -4,5 +4,5 @@
     <property name="commit.message" value="Commit message"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="5821"/>
+    <property name="plugin.main.version" value="6031"/>
 	
     <!-- Configure these properties (replace "..." accordingly).
Index: /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java
===================================================================
--- /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java	(revision 29709)
+++ /applications/editors/josm/plugins/imagery-xml-bounds/src/org/openstreetmap/josm/plugins/imageryxmlbounds/actions/downloadtask/DownloadXmlBoundsTask.java	(revision 29710)
@@ -15,4 +15,6 @@
 //    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 package org.openstreetmap.josm.plugins.imageryxmlbounds.actions.downloadtask;
+
+import static org.openstreetmap.josm.tools.I18n.tr;
 
 import java.util.concurrent.Future;
@@ -48,6 +50,14 @@
 
     @Override
-    public boolean acceptsUrl(String url) {
-        return url != null && (url.equals(XML_LOCATION) || url.matches("http://.*\\."+EXTENSION.replace(".", "\\.")));
+    public String[] getPatterns() {
+        return new String[]{
+                XML_LOCATION.replace(".", "\\."),
+                "http://.*\\."+EXTENSION.replace(".", "\\.")
+        };
+    }
+
+    @Override
+    public String getTitle() {
+        return tr("Download imagery XML bounds");
     }
 
