From b0f460c538055d3ddd7b6de6038bf119b87502f5 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 25 Jun 2014 11:58:16 +0300 Subject: [PATCH 1/3] fixed jira bug 89 --- OsmAnd/res/layout/open_bug.xml | 65 +++++++++++++++++++++------------- 1 file changed, 41 insertions(+), 24 deletions(-) diff --git a/OsmAnd/res/layout/open_bug.xml b/OsmAnd/res/layout/open_bug.xml index f492ffdf05..d2af1fb61d 100644 --- a/OsmAnd/res/layout/open_bug.xml +++ b/OsmAnd/res/layout/open_bug.xml @@ -1,27 +1,44 @@ - - - - - - - - - - - - - - + + + - + + + + + + + + + From 62ac935c7a00ede5b01c5ef3619eac0404b61149 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 24 Jun 2014 19:07:33 +0300 Subject: [PATCH 2/3] fixed issue with geo targeting on string geo:59.5,29.5?z=18&q=59.5,29.5. Jira bug 107 --- .../net/osmand/plus/activities/search/GeoIntentActivity.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java b/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java index f38e6096ec..4113c21362 100644 --- a/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java @@ -105,6 +105,8 @@ public class GeoIntentActivity extends OsmandListActivity { { Thread.sleep(200); } + String scheme = intent.getScheme(); + Uri data = intent.getData(); return extract(intent.getScheme(), intent.getData()).execute(); } catch (Exception e) From 969b0c30318d5e4e3246d875ff12d68636f36a39 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 25 Jun 2014 12:01:14 +0300 Subject: [PATCH 3/3] hotfix --- .../net/osmand/plus/activities/search/GeoIntentActivity.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java b/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java index 4113c21362..f38e6096ec 100644 --- a/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java +++ b/OsmAnd/src/net/osmand/plus/activities/search/GeoIntentActivity.java @@ -105,8 +105,6 @@ public class GeoIntentActivity extends OsmandListActivity { { Thread.sleep(200); } - String scheme = intent.getScheme(); - Uri data = intent.getData(); return extract(intent.getScheme(), intent.getData()).execute(); } catch (Exception e)