Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix #2624: coordinates display is wrong near a confluence point | Samuel Tardieu | 2013-04-02 | 2 | -15/+40 |
| | | | | | The coordinates need to be rounded differently depending on the precision which will be used for the output. | ||||
* | code cleanup | Bananeweizen | 2013-02-24 | 3 | -24/+13 |
| | | | | | | * rename several lower case classes * more strict visibility modifiers * Lint warnings * style warnings | ||||
* | fix #2404: Remove spaces when editing coordinates | Bananeweizen | 2013-01-17 | 1 | -17/+17 |
| | |||||
* | Merge remote-tracking branch 'origin/release' | Bananeweizen | 2013-01-13 | 1 | -21/+14 |
|\ | | | | | | | | | Conflicts: main/src/cgeo/geocaching/geopoint/Geopoint.java | ||||
| * | fix #2389: Parse errors in cgeocoords | Bananeweizen | 2013-01-13 | 1 | -19/+12 |
| | | |||||
* | | refactoring: use exception object in loggging | Bananeweizen | 2013-01-12 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request #2311 from rsudev/OCde2 | Bananeweizen | 2013-01-05 | 1 | -0/+2 |
|\ \ | | | | | | | Opencaching integration with oc11xml api | ||||
| * | | Opencaching integration with oc11xml api | rsudev | 2012-12-31 | 1 | -0/+2 |
| | | | | | | | | | | | | Implements load of cache details, coordinate search and viewport search for opencaching.de based on oc11xml api | ||||
* | | | fix #2328: Have a wrapper around Matcher to avoid String related memory | Bananeweizen | 2013-01-05 | 2 | -4/+6 |
|/ / | | | | | issues | ||||
* | | code cleanup: remove debug code | Bananeweizen | 2012-12-26 | 2 | -22/+13 |
| | | | | | | * fixed some more issues of Findbugs and CodePro | ||||
* | | Fix: do not use String#isEmpty() | Samuel Tardieu | 2012-12-19 | 1 | -1/+3 |
| | | | | | | | | | | String#isEmpty() has been introduced on SDK API 9 only. For earlier versions of Android, StringUtils.isEmpty/isNotEmpty can be used instead. | ||||
* | | Refactoring: remove unnecessary enum qualifiers | Samuel Tardieu | 2012-12-18 | 1 | -1/+1 |
| | | |||||
* | | Refactoring: remove pointless null checks | Samuel Tardieu | 2012-12-18 | 1 | -1/+1 |
| | | |||||
* | | Refactoring: use isEmpty() where appropriate | Samuel Tardieu | 2012-12-18 | 1 | -1/+1 |
| | | |||||
* | | code cleanup | Bananeweizen | 2012-12-15 | 1 | -1/+4 |
| | | | | | | * some CodePro Analytix findings | ||||
* | | code cleanup: fix Lint warnings about Locales | Bananeweizen | 2012-11-22 | 2 | -8/+9 |
|/ | |||||
* | Add extra documentation for null parameter | Samuel Tardieu | 2012-09-03 | 1 | -1/+1 |
| | | | | See #1957 for discussion. | ||||
* | Fix for null coords | runehl | 2012-08-14 | 1 | -2/+3 |
| | |||||
* | fix #1828: Coords conversion to DMS not working correct | Bananeweizen | 2012-07-01 | 2 | -2/+2 |
| | |||||
* | Revert "Merge branch 'issue-374' into upstream" | Samuel Tardieu | 2012-06-07 | 1 | -6/+0 |
| | | | | | This reverts commit 8f265e5057f255352784643e10b44e69744a4cf2, reversing changes made to 79a0ad18f555acf4deb26f15eea739a64e11669b. | ||||
* | Merge branch 'issue-374' into upstream | Samuel Tardieu | 2012-06-07 | 1 | -0/+6 |
|\ | |||||
| * | New format: LAT_LON_DECDEGREE_RAW | Samuel Tardieu | 2012-06-07 | 1 | -0/+6 |
| | | | | | | | | | | | | | | This is the simplest unambiguous form to store a latitude/longitude data even if the locale changes. Part of work on issue #374. | ||||
* | | Merge branch 'issue-1722' into upstream | Samuel Tardieu | 2012-06-05 | 6 | -264/+276 |
|\ \ | |/ | |||||
| * | Fix #1722: do not use BigDecimal in computations | Samuel Tardieu | 2012-06-05 | 6 | -264/+276 |
| | | |||||
* | | refactoring: have more physical units code in one place | Bananeweizen | 2012-06-03 | 2 | -49/+73 |
|/ | |||||
* | Refactoring: add missing override annotations | Samuel Tardieu | 2012-05-23 | 1 | -0/+2 |
| | | | | This was requested by SammysHP. | ||||
* | refactoring: remove some of the TODOs | Bananeweizen | 2012-05-06 | 1 | -2/+0 |
| | |||||
* | fix #1459: Refactoring navigation menu | Bananeweizen | 2012-05-05 | 1 | -2/+2 |
| | |||||
* | Display distance immediately in cache details | Samuel Tardieu | 2012-05-01 | 1 | -6/+6 |
| | | | | | | | The distance initially displayed only used the cache getDistance() which might not be available. The real distance is now computed if needed. See issue #1468. | ||||
* | Fix: check that coordinates are not null | Samuel Tardieu | 2012-04-25 | 1 | -1/+1 |
| | | | | | | Do as the comment says and accept (and skip) points with null coordinates. Bug found by chance during a test run while the website was down. | ||||
* | Refactoring: fix Javadoc for Geopoint | Samuel Tardieu | 2012-04-22 | 2 | -5/+5 |
| | |||||
* | Refactoring: keep GeopointParser private to its package | Samuel Tardieu | 2012-04-21 | 2 | -27/+27 |
| | | | | | | | Geopoint exposes everything GeopointParser can do. By calling a Geopoint constructor instead of a GeopointParser method returning a Geopoint, Eclipse can do more null checks for free (a constuctor can never return a null object). | ||||
* | Add more tests for getHumanDistance() | Samuel Tardieu | 2012-04-20 | 1 | -30/+34 |
| | |||||
* | Fix small distances handling in imperial units | Samuel Tardieu | 2012-04-20 | 1 | -8/+11 |
| | | | | | Before this change, 123.45 meters translate to "0.08 mi" instead of the more readable "450 ft" which it now uses for human consumption. | ||||
* | Refactoring: cleanup control flow | Samuel Tardieu | 2012-04-20 | 2 | -21/+20 |
| | |||||
* | Refactoring: do not get through an extra Geopoint when not required | Samuel Tardieu | 2012-04-20 | 1 | -4/+4 |
| | |||||
* | Refactoring: remove unused Viewport constructor | Samuel Tardieu | 2012-04-20 | 1 | -4/+0 |
| | |||||
* | Refactoring: move Direction out of Geopoint | Samuel Tardieu | 2012-04-20 | 6 | -179/+200 |
| | | | | Directions deserve their own package to make it clearer of who use them. | ||||
* | Refactoring: use viewports where appropriate | Samuel Tardieu | 2012-04-20 | 1 | -47/+0 |
| | |||||
* | Add optional table parameter to Viewport#sqlWhere() | Samuel Tardieu | 2012-04-20 | 1 | -6/+9 |
| | |||||
* | Make Geopoint parcelable | Samuel Tardieu | 2012-04-16 | 1 | -2/+36 |
| | |||||
* | A viewport contains points, not coordinates | Samuel Tardieu | 2012-04-14 | 1 | -12/+16 |
| | | | | Make the methods accept ICoordinates instances. | ||||
* | Add new Viewport method and builder | Samuel Tardieu | 2012-04-14 | 1 | -0/+47 |
| | |||||
* | Refactoring: rename isInViewport() to contains() | Samuel Tardieu | 2012-04-14 | 1 | -4/+10 |
| | | | | This is a better name from the point of a viewport. | ||||
* | Revert "refactoring: use locale free format method for numbers" | Bananeweizen | 2012-04-14 | 1 | -2/+2 |
| | | | | This reverts commit 5c535e5d1841d78334f6a3d15ac6edb85449a18f. | ||||
* | refactoring: use locale free format method for numbers | Bananeweizen | 2012-04-14 | 1 | -2/+2 |
| | |||||
* | refactoring: remove the logging tag from settings | Bananeweizen | 2012-04-12 | 1 | -2/+1 |
| | |||||
* | Refactoring: temporarily rewrite redundant code waiting for it to disappear | Samuel Tardieu | 2012-04-12 | 1 | -34/+9 |
| | | | | | | This code which manipulates viewports as separate int coordinates should disappear and use the proper types. This requires a large rewrite of CGeoMap. | ||||
* | Refactoring: cleanup and add methods to Viewport | Samuel Tardieu | 2012-04-12 | 1 | -9/+67 |
| | |||||
* | Refactoring: remove int based Geopoint and Viewport constructors | Samuel Tardieu | 2012-04-12 | 2 | -16/+2 |
| | | | | | Those were source of errors, and have no legitimate reason to be used in our current code base as this changeset shows. |