aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/AndroidManifest.xml4
-rw-r--r--main/res/values/strings.xml3
-rw-r--r--main/src/cgeo/geocaching/cgBase.java2
-rw-r--r--main/src/cgeo/geocaching/cgDirectionImg.java2
4 files changed, 7 insertions, 4 deletions
diff --git a/main/AndroidManifest.xml b/main/AndroidManifest.xml
index a4307a9..dea143c 100644
--- a/main/AndroidManifest.xml
+++ b/main/AndroidManifest.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- android:versionName="30.10.2011"
- android:versionCode="20111030"
+ android:versionName="31.10.2011"
+ android:versionCode="20111031"
package="cgeo.geocaching"
name="c:geo"
android:installLocation="auto">
diff --git a/main/res/values/strings.xml b/main/res/values/strings.xml
index 57e954d..007825b 100644
--- a/main/res/values/strings.xml
+++ b/main/res/values/strings.xml
@@ -932,6 +932,9 @@
<string name="changelog">\n
<b>New release</b>\n
\n\n
+ <b>31.10.2011</b>\n
+ · fix: Store for offline from Live map\n
+ \n\n
<b>30.10.2011</b>\n
· new: cleanup the cgeo private cache directory when caches are removed from database\n
· new: display user avatar when checking login/password from geocaching.com\n
diff --git a/main/src/cgeo/geocaching/cgBase.java b/main/src/cgeo/geocaching/cgBase.java
index 0437a6a..053119f 100644
--- a/main/src/cgeo/geocaching/cgBase.java
+++ b/main/src/cgeo/geocaching/cgBase.java
@@ -710,7 +710,7 @@ public class cgBase {
final Matcher matcherDirection = patternDirection.matcher(row);
while (matcherDirection.find()) {
if (matcherDirection.groupCount() > 0) {
- cache.setDirectionImg(matcherDirection.group(1));
+ cache.setDirectionImg(URLDecoder.decode(matcherDirection.group(1)));
}
}
} catch (Exception e) {
diff --git a/main/src/cgeo/geocaching/cgDirectionImg.java b/main/src/cgeo/geocaching/cgDirectionImg.java
index 9c26b41..964af5d 100644
--- a/main/src/cgeo/geocaching/cgDirectionImg.java
+++ b/main/src/cgeo/geocaching/cgDirectionImg.java
@@ -9,7 +9,7 @@ import java.io.File;
public class cgDirectionImg {
- public static void getDrawable(String geocode, String code) {
+ public static void getDrawable(final String geocode, final String code) {
if (StringUtils.isBlank(geocode) || StringUtils.isBlank(code)) {
return;
}