| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | rename package | Bananeweizen | 2014-11-02 | 6 | -668/+0 |
| | | | | | The package not only contains the GeoPoint definition, but other location related classes, too. | ||||
| * | fix #4359: imperial units checkbox not always correct | Samuel Tardieu | 2014-09-15 | 1 | -3/+3 |
| | | | | | | | | | This has been fixed by initializing the key to its default value instead of just the checkbox. Also, better names have been used throughout the settings to reflect the fact that "units" meant "use imperial units". It was used in both ways, including the wrong way while migrating the settings. | ||||
| * | refactoring: reduce package cycles | Bananeweizen | 2014-07-20 | 2 | -2/+2 |
| | | |||||
| * | fix some lint warnings | Bananeweizen | 2014-06-11 | 1 | -0/+2 |
| | | |||||
| * | refactoring: more assertj instead of junit assert | Bananeweizen | 2014-06-11 | 2 | -2/+2 |
| | | |||||
| * | Fix #3899: Units.getSpeed() returns uncommon string | SammysHP | 2014-05-23 | 1 | -6/+6 |
| | | |||||
| * | #2414 convert junit statements to assertj | Michael Keppler | 2014-04-22 | 6 | -99/+106 |
| | | | | | This conversion is not complete, but the remaining statements are hard to catch with regular expressions automatically. | ||||
| * | Merge branch 'release' into upstream | Samuel Tardieu | 2014-02-28 | 1 | -1/+1 |
| |\ | |||||
| | * | fix #3594: personal note parsing is too loose | Samuel Tardieu | 2014-02-28 | 1 | -1/+1 |
| | | | |||||
| * | | refactoring: remove unused code | Bananeweizen | 2014-01-12 | 2 | -6/+12 |
| | | | |||||
| * | | enable eclipse null analysis on test project | Bananeweizen | 2014-01-12 | 1 | -1/+4 |
| | | | |||||
| * | | refactoring: remove unused code | Bananeweizen | 2014-01-11 | 1 | -10/+0 |
| |/ | |||||
| * | fix #3527: bad query string | Samuel Tardieu | 2014-01-08 | 1 | -2/+12 |
| | | | | | | | Let's hope that the bad formatting occurring for, at least, very small negative values in `String.format()` with a `null` Locale will not happen with `StringBuilder.append(double)`. | ||||
| * | fix #3321: No distance calculation and coords if cache is at equator | Bananeweizen | 2013-10-12 | 1 | -0/+15 |
| | | |||||
| * | fix #2867: Multiple distance | Bananeweizen | 2013-08-20 | 1 | -3/+12 |
| | | | | * workaround distance calculation for all 4.2.x versions | ||||
| * | Remove elevation handling | Samuel Tardieu | 2013-07-14 | 2 | -39/+2 |
| | | | | | | | | | | | | | | | | Geocaches do not contain useful elevation information. We used to get it using Google API, but the information was not very useful because our handling of altitude was inconsistent. Also, the Google elevation API usage limits states that "the Elevation API may only be used in conjunction with displaying results on a Google map; using elevation data without displaying a map for which elevation data was requested is prohibited". This removes elevation handling completely, except in the settings to avoid getting in the way of the settings rewrite. The elevation related settings should be removed there instead when both works are merged. | ||||
| * | Remove old SettingsActivity, rename new SettingsActivity | rsudev | 2013-07-09 | 1 | -9/+10 |
| | | |||||
| * | Implements #750, use preference activity | koem | 2013-07-09 | 1 | -14/+14 |
| | | |||||
| * | added test: Make sure we can parse our own geopoint formatting | Bananeweizen | 2013-06-11 | 1 | -0/+8 |
| | | | | * to assure copy paste being easy | ||||
| * | refactoring: apply android formatter to all XML files | Bananeweizen | 2013-06-02 | 2 | -6/+5 |
| | | | | * makes it easier to compare and find duplicate code | ||||
| * | fix #2624: coordinates display is wrong near a confluence point | Samuel Tardieu | 2013-04-02 | 1 | -0/+11 |
| | | | | | | The coordinates need to be rounded differently depending on the precision which will be used for the output. | ||||
| * | code cleanup | Bananeweizen | 2013-02-24 | 2 | -17/+17 |
| | | | | | | | * 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 | -4/+13 |
| | | |||||
| * | fix #2389: Parse errors in cgeocoords | Bananeweizen | 2013-01-13 | 1 | -2/+65 |
| | | |||||
| * | fix #1828: Coords conversion to DMS not working correct | Bananeweizen | 2012-07-01 | 1 | -0/+20 |
| | | |||||
| * | Merge branch 'issue-1722' into upstream | Samuel Tardieu | 2012-06-05 | 1 | -81/+65 |
| |\ | |||||
| | * | Fix #1722: do not use BigDecimal in computations | Samuel Tardieu | 2012-06-05 | 1 | -81/+65 |
| | | | |||||
| * | | refactoring: have more physical units code in one place | Bananeweizen | 2012-06-03 | 2 | -41/+103 |
| |/ | |||||
| * | Refactoring: keep GeopointParser private to its package | Samuel Tardieu | 2012-04-21 | 1 | -4/+2 |
| | | | | | | | | 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). | ||||
| * | Make sure a cgeoapplication is created before testing | Samuel Tardieu | 2012-04-21 | 1 | -3/+2 |
| | | | | | | | Some tests are using cgeoapplication without having one already setup, and may be subject to race conditions when accessing the singleton or the Settings. | ||||
| * | Add more tests for getHumanDistance() | Samuel Tardieu | 2012-04-20 | 1 | -7/+30 |
| | | |||||
| * | Refactoring: do not get through an extra Geopoint when not required | Samuel Tardieu | 2012-04-20 | 1 | -1/+1 |
| | | |||||
| * | Refactoring: remove unused Viewport constructor | Samuel Tardieu | 2012-04-20 | 1 | -1/+1 |
| | | |||||
| * | Refactoring: move Direction out of Geopoint | Samuel Tardieu | 2012-04-20 | 1 | -3/+3 |
| | | | | | Directions deserve their own package to make it clearer of who use them. | ||||
| * | Add optional table parameter to Viewport#sqlWhere() | Samuel Tardieu | 2012-04-20 | 1 | -1/+2 |
| | | |||||
| * | refactoring: rest in peace, cgBase | Bananeweizen | 2012-04-18 | 1 | -0/+4 |
| | | |||||
| * | Make Geopoint parcelable | Samuel Tardieu | 2012-04-16 | 1 | -0/+9 |
| | | |||||
| * | Add new Viewport method and builder | Samuel Tardieu | 2012-04-14 | 1 | -0/+27 |
| | | |||||
| * | Refactoring: rename isInViewport() to contains() | Samuel Tardieu | 2012-04-14 | 1 | -5/+5 |
| | | | | | This is a better name from the point of a viewport. | ||||
| * | Tests: add tests for Viewport | Samuel Tardieu | 2012-04-12 | 1 | -0/+72 |
| | | |||||
| * | Refactoring: remove int based Geopoint and Viewport constructors | Samuel Tardieu | 2012-04-12 | 1 | -6/+0 |
| | | | | | | Those were source of errors, and have no legitimate reason to be used in our current code base as this changeset shows. | ||||
| * | Implement equals() and hashCode() for Geopoint | Samuel Tardieu | 2012-04-11 | 2 | -6/+6 |
| | | |||||
| * | refactoring: code cleanup | Bananeweizen | 2012-02-21 | 1 | -0/+19 |
| | | | | | | * move human distance code to own class * remove warning suppression * fix several compiler warnings | ||||
| * | Implementation for issue #1120 | Torsten Keil | 2012-02-17 | 1 | -0/+180 |
| | | | | | | | | - see ticket for more details Conflicts: main/src/cgeo/geocaching/cgeowaypointadd.java | ||||
| * | #936: improve stability, have unit test | Bananeweizen | 2012-01-04 | 1 | -1/+11 |
| | | |||||
| * | #922: Deleting of automatic generated waypoints | Bananeweizen | 2012-01-01 | 1 | -13/+29 |
| | | |||||
| * | fix #920: WPs created from Personal Notes not correct | Bananeweizen | 2011-12-31 | 1 | -3/+12 |
| | | |||||
| * | Additional testcase | blafoo | 2011-12-06 | 1 | -0/+6 |
| | | |||||
| * | Accept any coordinate when creating a Geopoint | Samuel Tardieu | 2011-11-09 | 1 | -24/+1 |
| | | | | | | | | Google maps may return coordinates outside of our comfort zone. Also, we need to deal with viewports encompassing the 180° meridian. This fixes #771. | ||||
| * | No direct access to fields | blafoo | 2011-10-26 | 1 | -2/+0 |
| | | |||||
