| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Refactoring: remove redundant variable | Samuel Tardieu | 2012-12-16 | 1 | -2/+1 |
| | | |||||
| * | code cleanup: fix Lint warnings about Locales | Bananeweizen | 2012-11-22 | 1 | -1/+1 |
| | | |||||
| * | Refactoring: make some fields local | Samuel Tardieu | 2012-09-04 | 1 | -4/+2 |
| | | | | | | Some fields are only used in one method and can be transformed into local variables. | ||||
| * | fix #1893: remove go4cache | Bananeweizen | 2012-08-26 | 1 | -12/+0 |
| | | |||||
| * | Merge remote-tracking branch 'campbeb/fix315' into upstream | Samuel Tardieu | 2012-06-11 | 1 | -1/+24 |
| |\ | |||||
| | * | Display cache and waypoint information on compass | campbeb | 2012-06-08 | 1 | -1/+24 |
| | | | | | | | | | | | | | | | | | | | For caches: displays difficulty, terrain, and size. For waypoints: displays waypoint type. For direct navigation: displays nothing. Also includes some refactoring in the code used do display information about caches and waypoints. | ||||
| * | | refactoring: have more physical units code in one place | Bananeweizen | 2012-06-03 | 1 | -17/+9 |
| |/ | |||||
| * | Do not send direction updates more often than needed | Samuel Tardieu | 2012-05-20 | 1 | -26/+8 |
| | | | | | This will help with issue #1604. | ||||
| * | Always start GeoData provider from UI thread | Samuel Tardieu | 2012-05-14 | 1 | -64/+55 |
| | | |||||
| * | Merge remote-tracking branch 'SammysHP/icons' | Bananeweizen | 2012-04-30 | 1 | -5/+5 |
| |\ | | | | | | | | | Conflicts: main/src/cgeo/geocaching/apps/cachelist/CacheListAppFactory.java | ||||
| | * | Import Android drawables (from API version 8) | SammysHP | 2012-04-27 | 1 | -5/+5 |
| | | | | | | | See #852 for reason. This will increase the apk size by 82 KiB. | ||||
| * | | Make direction an observable property | Samuel Tardieu | 2012-04-30 | 1 | -47/+18 |
| | | | |||||
| * | | Refactoring: remove redundant initializers | Samuel Tardieu | 2012-04-28 | 1 | -1/+1 |
| | | | | | | | | | | | The initial values were never used as the variables are set in any case before being used. | ||||
| * | | Remove Now from methods of IGeoData | Samuel Tardieu | 2012-04-27 | 1 | -14/+14 |
| | | | |||||
| * | | Use the IGeoData interface and Observer pattern to update location | Samuel Tardieu | 2012-04-27 | 1 | -73/+49 |
| |/ | |||||
| * | Refactoring: cleanup control flow | Samuel Tardieu | 2012-04-20 | 1 | -21/+6 |
| | | |||||
| * | Refactoring: now that Geopoint is parcelable, use it in bundles | Samuel Tardieu | 2012-04-16 | 1 | -5/+3 |
| | | |||||
| * | refactoring: remove the logging tag from settings | Bananeweizen | 2012-04-12 | 1 | -2/+2 |
| | | |||||
| * | Remove unused methods | Samuel Tardieu | 2012-04-11 | 1 | -17/+0 |
| | | | | | Those methods have been flagged as unused by proguard. | ||||
| * | Refactoring: use IWaypoint and cgCache instead of cgCoord object | Samuel Tardieu | 2012-04-01 | 1 | -4/+4 |
| | | | | | | | | | | | | | | | Most of the time, the cgCoord is built from an existing cache or from an existing waypoint. And most of the time, using the IWaypoint interface is fine. We can see a cache as being a waypoint as well, so by making it implement IWaypoint we can manipulate IWaypoint objects every time we were manipulating cgCoord ones without copying. After this refactoring, cgCoord was only used to hold some partial cache information. cgCache can be used instead, and cgCoord is not needed anymore. | ||||
| * | Proxy all logs through cgeo.geocaching.utils.Log | Samuel Tardieu | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | | | The behaviour is unchanged, but altering Settings.isDebug() to return false will prevent verbose, debug and info levels messages from being logged. Part of work on #1301. | ||||
| * | Fix #828: do not use an extra thread to update the data | Samuel Tardieu | 2012-03-24 | 1 | -44/+13 |
| | | | | | | There is no need to create an extra thread just to signal a handler. The handler can signal itself periodically by using delayed messages. | ||||
| * | performance refactorings | Bananeweizen | 2012-03-04 | 1 | -1/+1 |
| | | | | | | | * avoid creating message objects, there is a pool * only get GCVotes for filtered caches, not for all * don't use GepointParser in LocParser, we know those are pure floats * String concatenation | ||||
| * | refactoring: move constants and classes to the packages they belong to | Bananeweizen | 2012-03-04 | 1 | -1/+2 |
| | | |||||
| * | Refactoring to use common constant for ft per meter and usage of StringUtils | Torsten Keil | 2012-03-03 | 1 | -1/+1 |
| | | |||||
| * | refactoring: code cleanup | Bananeweizen | 2012-02-21 | 1 | -2/+3 |
| | | | | | | * move human distance code to own class * remove warning suppression * fix several compiler warnings | ||||
| * | fix #1110: onPrepareOptionsMenu compatible with Android 3.0 | Bananeweizen | 2012-02-17 | 1 | -2/+2 |
| | | |||||
| * | fix #368: turn off stand-by mode in list view | Bananeweizen | 2012-01-24 | 1 | -4/+1 |
| | | |||||
| * | refactoring: move more widget related classes into own package | Bananeweizen | 2012-01-14 | 1 | -2/+3 |
| | | |||||
| * | Implementation for #868 | Torsten Keil | 2012-01-01 | 1 | -1/+3 |
| | | |||||
| * | performance: faster opening of lists (~20%), better scrolling | Bananeweizen | 2011-12-18 | 1 | -3/+3 |
| | | | | | | | | * avoid duplicate distance calculation in distance sorter * avoid String.format() wherever possible * avoid lookups with constant values in database * avoid reinitializing database all the time | ||||
| * | refactoring: minor cleanups using CodePro Analytix | Bananeweizen | 2011-12-07 | 1 | -1/+1 |
| | | |||||
| * | refactoring: more boxing/unboxing cleanup | Bananeweizen | 2011-12-04 | 1 | -7/+3 |
| | | |||||
| * | refactoring: reduce boxing/unboxing craziness | Bananeweizen | 2011-12-03 | 1 | -1/+1 |
| | | |||||
| * | refactoring of cgGeo.java, see #355 | Bananeweizen | 2011-11-30 | 1 | -10/+10 |
| | | | | | * pure refactoring, no functional changes (even if the code looks very different now) | ||||
| * | first refactoring of cgGeo, see #355 | Bananeweizen | 2011-11-29 | 1 | -2/+2 |
| | | | | | | * removes mainly unnecessary variables and methods of cgGeo * next refactoring will remove all cgGeo/cgDirection instances in activies | ||||
| * | use an enum instead of magic constants for location providers | bananeweizen | 2011-11-26 | 1 | -8/+1 |
| | | |||||
| * | fix: delay forced compass update until bearing is available, see #355 | bananeweizen | 2011-11-26 | 1 | -15/+17 |
| | | | | | * most changes are pure refactorings (rename, move) to make it more easy to debug | ||||
| * | Use of CacheType instead of String | blafoo | 2011-11-18 | 1 | -1/+1 |
| | | |||||
| * | Remove Format.LAT_LON_DECMINUTE_PIPE | SammysHP | 2011-11-17 | 1 | -6/+4 |
| | | | | This format is used often in c:geo, but is not very common outside of it. Usually coordinates are written without the pipe. | ||||
| * | wrong code send to Go4Cache API when using compass | Bananeweizen | 2011-11-13 | 1 | -12/+13 |
| | | |||||
| * | String.format needs no Locale argument to get the default one | Samuel Tardieu | 2011-11-09 | 1 | -4/+3 |
| | | |||||
| * | Use GeopointFormatter instead of String.format when coordinates are around | Samuel Tardieu | 2011-11-09 | 1 | -3/+2 |
| | | | | | | | Some predefined formats have been added to fill the needs. This closes issue #769. | ||||
| * | Use a separate and unique thread for Go4Cache | Samuel Tardieu | 2011-11-07 | 1 | -2/+2 |
| | | | | | | | | This change creates a new Go4Cache thread which is started only when the user opts in in sending their position to go4cache.com. Instead of creating a new thread for every update, the same thread is reused and orders are given through a one-position queue. | ||||
| * | Get rid of deprecated methods related to coordinates | Samuel Tardieu | 2011-11-07 | 1 | -3/+4 |
| | | |||||
| * | Use existing method to render altitude | Samuel Tardieu | 2011-11-07 | 1 | -6/+1 |
| | | |||||
| * | Merge remote branch 'remotes/blafoo692/issue692' | rsudev | 2011-10-31 | 1 | -3/+3 |
| |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java main/src/cgeo/geocaching/cgBase.java main/src/cgeo/geocaching/cgCache.java main/src/cgeo/geocaching/cgData.java main/src/cgeo/geocaching/cgeoapplication.java main/src/cgeo/geocaching/cgeodetail.java main/src/cgeo/geocaching/maps/CGeoMap.java | ||||
| | * | No direct access to fields | blafoo | 2011-10-26 | 1 | -3/+3 |
| | | | |||||
| * | | show waypoint name as map title when navigating to waypoint | bananeweizen | 2011-10-28 | 1 | -1/+1 |
| |/ | |||||
| * | fix #703: exception in show on map | Bananeweizen | 2011-10-23 | 1 | -4/+23 |
| | | | | | | * includes fixes for some other exceptions * refactored navigation activity invocation * icon is still not correct (generic instead of correct type) | ||||
