diff options
| author | Ralf Hubert <_rahu_@web.de> | 2011-08-01 15:03:32 +0200 |
|---|---|---|
| committer | Ralf Hubert <_rahu_@web.de> | 2011-08-01 15:03:32 +0200 |
| commit | 46a3be19f33bc07aa129bc83407bda8befc50e08 (patch) | |
| tree | 02ea5cd668d467058cd4c0864f6b755201abc2bc /src/cgeo/geocaching/cgSettings.java | |
| parent | c58671a896f6cea081c2244203031885b82d33f2 (diff) | |
| download | cgeo-46a3be19f33bc07aa129bc83407bda8befc50e08.zip cgeo-46a3be19f33bc07aa129bc83407bda8befc50e08.tar.gz cgeo-46a3be19f33bc07aa129bc83407bda8befc50e08.tar.bz2 | |
Display Images from Logs (Issue #40)
- changed db-version to 54 (need table for logimages)
- renamed cgSpoiler to cgImage
- renamed cgeospoilers to cgeoimages
- added setting to store/not store logimages
TODO: - draw a pretty icon
- maybe translate the new strings
Diffstat (limited to 'src/cgeo/geocaching/cgSettings.java')
| -rw-r--r-- | src/cgeo/geocaching/cgSettings.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/cgSettings.java b/src/cgeo/geocaching/cgSettings.java index 5c99108..f832468 100644 --- a/src/cgeo/geocaching/cgSettings.java +++ b/src/cgeo/geocaching/cgSettings.java @@ -73,6 +73,7 @@ public class cgSettings { public int excludeMine = 0; public int excludeDisabled = 0; public int storeOfflineMaps = 0; + public int storeLogImg = 0; public int asBrowser = 1; public int useCompass = 1; public int useGNavigation = 1; @@ -140,6 +141,7 @@ public class cgSettings { excludeMine = prefs.getInt("excludemine", 0); excludeDisabled = prefs.getInt("excludedisabled", 0); storeOfflineMaps = prefs.getInt("offlinemaps", 1); + storeLogImg = prefs.getInt("logimages", 0); asBrowser = prefs.getInt("asbrowser", 1); useCompass = prefs.getInt("usecompass", 1); useGNavigation = prefs.getInt("usegnav", 1); |
