aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/mapsforge
Commit message (Collapse)AuthorAgeFilesLines
* avoid useless initializations in layout preview modeBananeweizen2014-05-252-0/+14
|
* fix #3871: provide up navigationBananeweizen2014-05-242-6/+6
|
* #3818: remove further GC blocking referencesBananeweizen2014-05-174-12/+8
|
* Merge remote-tracking branch 'origin/release'Michael Keppler2014-04-281-5/+9
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/DataStore.java
| * fix #3750: gracefully handle file system access restrictionsMichael Keppler2014-04-281-5/+9
| |
* | Add more @NonNull annotations for overriden methodsSamuel Tardieu2014-04-242-2/+4
|/
* remove some nullness warnings in EclipseBananeweizen2014-01-271-0/+2
|
* refactoring: remove unused codeBananeweizen2014-01-114-22/+0
|
* revert some nonnull annotationsBananeweizen2014-01-114-8/+4
| | | | | Eclipse requires that the super implementation of overridden methods with nonnull arguments also declares the arguments nonnull and stops compilation otherwise. Seems there is no option to change that.
* Add extra NonNull annotationsSamuel Tardieu2014-01-114-4/+8
|
* refactoring: typo, imports, stringutilsBananeweizen2014-01-111-1/+1
|
* Revert "experimental single overlay for maps"Samuel Tardieu2013-12-274-10/+8
| | | | | This reverts commit 74b7b59e0eac6ec09c032baa6e9d9d27f0ec2f95 which had been merged by mistake.
* experimental single overlay for mapsBananeweizen2013-12-274-8/+10
|
* findbugs casts and dereference warningsMichael Keppler2013-12-252-4/+14
|
* refactoring: reduce mapsforge memory usageBananeweizen2013-12-184-57/+17
| | | | | | | | | This puts scale and position into one overlay, instead of using 2 overlays. That reduces memory usage by 2 times a full screen bitmap due to double buffering in mapsforge. The only downside is that scale and position now have to be drawn at the same depth-level (below or on top of the caches), but they were both on top previously anyway.
* fix crash in map directory settingsBananeweizen2013-10-191-2/+5
|
* Merge branch 'release' into master_devrsudev2013-10-181-15/+14
|\
| * Fixes part of #2976, allow to manually select map directoryrsudev2013-10-181-15/+14
| | | | | | | | | | | | Add a directory selection button to map selection. Fix issues with updating map sources preference after selecting a map file. Fix issues with listing map source if only a directory was defined.
* | refactoring: findbugs cleanupsBananeweizen2013-10-022-1/+4
| |
* | refactoring: cgeoapplication -> CgeoApplicationSamuel Tardieu2013-09-131-3/+3
| |
* | Implements #3220, Feature request: Show mapsforge-map "bigger" on ↵rsudev2013-09-131-1/+4
|/ | | | | | high-res-displays Made the mapsforge textscale setting follow the device dpi, if so wanted, default true.
* fixes #3248 - select map file first to get offline map choiceMarco Jacob2013-09-131-5/+1
|
* Fixes #3188, NPE with map menu (mapsforge 024)rsudev2013-08-251-4/+1
| | | | Move menu inflation from resource to mapBase (AbstractMap)
* refactoring: findbugs cleanupBananeweizen2013-08-114-8/+8
|
* Implements #750, use preference activitykoem2013-07-093-3/+3
|
* Correct log messages to account for refactoringcampbeb2013-06-052-3/+3
|
* fix #2817: OSM:Offline map name won't fit the boxBananeweizen2013-06-011-1/+1
|
* refactoring: clean compiler warnings about static callsBananeweizen2013-05-272-4/+4
|
* fix #2725: Circles on the map only around physical stagesBananeweizen2013-05-254-22/+18
|
* refactoring: use menu resources instead of codeBananeweizen2013-05-101-1/+4
|
* fix #1781: Remove help functionBananeweizen2013-05-092-12/+0
|
* refactoring: use exception object in logggingBananeweizen2013-01-122-4/+4
|
* Merge branch 'release' into upstreamSamuel Tardieu2013-01-011-1/+1
|\
| * fix #1737: do not try to open a null filenameSamuel Tardieu2013-01-011-1/+1
| | | | | | | | The settings may initially contain a null filename.
* | code cleanup: remove debug codeBananeweizen2012-12-262-5/+8
| | | | | | * fixed some more issues of Findbugs and CodePro
* | fix #2217: Click on filter bar crashes c:geoBananeweizen2012-12-042-2/+14
| |
* | #2215 sort offline mapsBananeweizen2012-11-301-0/+1
|/
* fix #1940: Quicker change of OSM offline mapsBananeweizen2012-11-043-40/+75
|
* Correction of coding issuesrsudev2012-11-031-1/+1
|
* Implements #1676, custom themesrsudev2012-11-032-2/+41
| | | | | | - Adds the selection of a base folder for map themes to settings - Reworks the map menu to allow selection of a custom theme - Implements a reusable version of listDir to get a list of files
* fix #1893: remove go4cacheBananeweizen2012-08-268-339/+0
|
* Toast for missing mapfilePortree-Kid2012-05-241-0/+8
|
* Merge remote-tracking branch 'campbeb/fix1485' into upstreamSamuel Tardieu2012-05-234-12/+52
|\
| * Fix offline zoom issue and document zoom level differencescampbeb2012-05-224-12/+52
| | | | | | | | | | | | Google Maps and OSM Maps use different zoom levels for the same view ranges. This is better documented. Additionally, this change fixes zooming out causing zoom in (Issue #1485).
* | Refactoring: add missing override annotationsSamuel Tardieu2012-05-236-0/+10
|/ | | | This was requested by SammysHP.
* Refactoring: remove redundant field mapController in CGeoMapSamuel Tardieu2012-05-212-2/+4
|
* Ensure zoom doesn't exceed max zoom when changing map sourcescampbeb2012-05-191-0/+7
|
* Refactoring: remove redundant local variablesSamuel Tardieu2012-05-062-8/+4
| | | | | Redundant local variables are assigned once and only used to return the value. Returning the value directly is as readable and more concise.
* refactoring: remove publicly shared constants in map implementationBananeweizen2012-05-033-24/+37
|
* fix #1488: Disable OSM:Offline if no file is selectedBananeweizen2012-05-031-10/+24
|