aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Remove never-used actualMemberStatusSamuel Tardieu2012-04-111-11/+0
| | |
* | | Remove the never used error_code field of StatusCodeSamuel Tardieu2012-04-111-25/+19
| | |
* | | Remove Task type, whose name field is never usedSamuel Tardieu2012-04-112-18/+1
| | | | | | | | | | | | | | | Task is only a Runnable with a name field, whose value is never consulted.
* | | Simplify IAbstractActivity interfaceSamuel Tardieu2012-04-111-11/+0
| | |
* | | Remove unused methodsSamuel Tardieu2012-04-1112-234/+0
| | | | | | | | | | | | Those methods have been flagged as unused by proguard.
* | | Merge pull request #1392 from Lineflyer/masterLars2012-04-112-5/+5
|\ \ \ | | | | | | | | Fixes #1387
| * | | Replaced "phone" by "device"Lars2012-04-111-1/+1
| | | |
| * | | Replaced "Handy" from german translationLars2012-04-111-4/+4
| |/ /
* | | Ignore KDE directoy settingsrsudev2012-04-111-1/+2
| |/ |/|
* | fix #1038: use shared preferences with correct typesBananeweizen2012-04-112-41/+124
| | | | | | Everyone please don't store boolean options as integer anymore!
* | Move two methods into the testsSamuel Tardieu2012-04-112-16/+5
| | | | | | | | | | Those two methods were only used in the tests. They can be rewritten more concisely while testing the same thing.
* | Some methods are only used internallySamuel Tardieu2012-04-112-18/+3
| | | | | | | | | | Those three methods do not need to be bounced from cgeoapplication as they are only used internally from cgData.
* | Cache order is only used internallySamuel Tardieu2012-04-111-8/+0
| |
* | Make cgDestination an immutable typeSamuel Tardieu2012-04-114-82/+35
| | | | | | | | | | | | | | Also, savedSearchedDestination() result is always ignored, so make it void. The side-effects previously done in savedSearchDestination() are also ignored as they only apply to a temporary value that is never returned, so making the type immutable does not harm.
* | Implement equals() and hashCode() for GeopointSamuel Tardieu2012-04-119-27/+32
| |
* | Waypoint and caches both have coordinates, add ICoordinates interfaceSamuel Tardieu2012-04-119-45/+21
| | | | | | | | | | Geopoint obviously implements ICoordinates. Also, getLongitude() and getLatitude() were only used in tests, remove them.
* | Use an array with in-place constructor instead of a ListSamuel Tardieu2012-04-112-7/+2
|/
* fix cache attribute from 08d132878d4e8818c8090169e6f0ece257ac4732Bananeweizen2012-04-104-8/+27
|
* update Eclipse components P2 file for easier IDE setupBananeweizen2012-04-091-29/+64
|
* Extend GPX export.SammysHP2012-04-093-9/+75
| | | Waypoints and attributes added to export, better description handling. Also few small fixes in Field Notes export.
* Add enum for cache attributes.SammysHP2012-04-091-0/+136
| | | Should replace currently used attribute strings in the future.
* Export package: Documentation and make activity optionalSammysHP2012-04-095-22/+110
|
* #1384: FC when apply a filterBananeweizen2012-04-092-9/+6
|
* Merge branch 'release' into upstreamSamuel Tardieu2012-04-091-28/+17
|\
| * Work on #1367: cleanup cgCache.isEqualToSamuel Tardieu2012-04-081-28/+17
| | | | | | | | | | | | | | - make method private - argument cannot be null, this has been checked by the caller already - do not use if (test) return true; else return false; - use StringUtils.equalsIgnoreCase() when a field could be null
| * Revert "Cleanup changelog"Samuel Tardieu2012-04-051-4/+33
| | | | | | | | | | This reverts commit 74ad1c7081733afa1eb14dfb3f942184bc2f9d17 as per the discussion on issue #1369.
| * Cleanup changelogLars2012-04-041-33/+4
| |
| * StaticMaps for waypoints default now offMarco Jacob2012-04-031-1/+1
| |
* | missing file in merge request #1362Bananeweizen2012-04-091-0/+20
| |
* | Changelog update acc. latest commitsLars2012-04-091-5/+6
| |
* | Merge branch 'master' of ↵Bananeweizen2012-04-083-33/+33
|\ \ | | | | | | | | | https://Bananeweizen@github.com/cgeo/c-geo-opensource.git
| * | Upgrade to Proguard 4.7Samuel Tardieu2012-04-071-0/+0
| | |
| * | Merge pull request #1381 from serenity182/masterSammysHP2012-04-071-1/+1
| |\ \ | | | | | | | | Changed contributers. Me did parts of the german l10n, not french.
| | * | Changed contributers. Me did parts of the german l10n, not french.Marc2012-04-071-1/+1
| | | |
| * | | Merge pull request #1380 from serenity182/patch-1SammysHP2012-04-071-32/+32
| |\ \ \ | | |/ / | |/| | Removed "du" and "man" to make it less personal.
| | * | Removed "du" and "man" to make it less personal.serenity1822012-04-071-32/+32
| |/ /
* | | Merge remote-tracking branch 'teschi/issue#1304'Bananeweizen2012-04-0810-80/+426
|\ \ \ | |/ / |/| | | | | | | | Conflicts: main/src/cgeo/geocaching/maps/CGeoMap.java
| * | Support different modes of operation on LastRecentlyUsedMapteschi2012-04-035-6/+402
| | | | | | | | | | | | Added a Set interface for the LastRecentlyUsedMap Changed CGeoMap to use the LastRecentlyUsedSet as its caches-cache
| * | renamed LeastRecentlyUsedCache to LeastRecentlyUsedMapteschi2012-04-034-9/+9
| | |
* | | updates for SDK v17Bananeweizen2012-04-074-1/+3
| | | | | | | | | | | | * changed classpath with android libs * new version of android support lib
* | | more unit test for cache filtersBananeweizen2012-04-0713-27/+266
| | | | | | | | | | | | * also fix cache equality for caches with empty geocodes (as used in some tests)
* | | Merge pull request #1372 from SammysHP/exporterSammysHP2012-04-069-205/+615
|\ \ \ | | | | | | | | New: Export feature
| * | | New: Export featureSammysHP2012-04-069-205/+615
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Generic export framework for caches - Refactored Field Notes export and moved to export framework - Created experimental GPX exporter TODO: - GPX export: Logs, Waypoints, Attributes, correct type/size strings - Field Notes: upload, only new logs
* | | | Merge pull request #1378 from scrool/L10nrsudev2012-04-061-1/+1
|\ \ \ \ | | | | | | | | | | Updated Slovak translation
| * | | | Corrected: feet has abbreviation ft in Slovak tooPavol Babincak2012-04-051-1/+1
| | | | |
* | | | | Merge pull request #1373 from scrool/L10nSammysHP2012-04-051-1/+19
|\ \ \ \ \ | |/ / / / | | / / / | |/ / / |/| | | Updated Slovak translation
| * | | Updated Slovak translationPavol Babincak2012-04-051-1/+19
|/ / /
* | | Changelog updateLars2012-04-041-1/+1
| | |
* | | Merge pull request #1369 from marco-jacob/wpStaticMapsDefaultOffrsudev2012-04-031-1/+1
|\ \ \ | | | | | | | | StaticMaps for waypoints default now off
| * | | StaticMaps for waypoints default now offMarco Jacob2012-04-031-1/+1
|/ / /