aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/utils/GeoDirHandler.java
Commit message (Collapse)AuthorAgeFilesLines
* refactoring: create cgeo.geocaching.sensors packageSamuel Tardieu2014-03-061-129/+0
|
* Update to RxJava 0.17.0-RC2Samuel Tardieu2014-02-181-1/+1
|
* Update for RxJava 0.17.0-RC1Samuel Tardieu2014-02-161-3/+3
| | | | | | | | | This is the release candidate version, which is being currently tested at Netflix. In a few days, I'll update with the final version. This release cleans up some bits of RxJava by integrating the subscription inside a subscriber (which is an observer holding a subscription) and fixes a leak with recurring tasks.
* remove some nullness warnings in EclipseBananeweizen2014-01-271-1/+0
|
* refactoring: use Scheduler.schedule for distant actionSamuel Tardieu2014-01-261-3/+5
|
* fix deprecationsBananeweizen2014-01-191-1/+1
| | | | * remove rxjava deprecations * silence commons lang deprecations
* Use RxJava for direction and geodata updates rather than own observersSamuel Tardieu2014-01-081-55/+52
|
* refactoring: cgeoapplication -> CgeoApplicationSamuel Tardieu2013-09-131-2/+2
|
* fix #3185: NPE in GeoDirHandlerSamuel Tardieu2013-08-251-5/+0
| | | | | | | One must not unconditionnally update geolocation and direction data as it may be null. This is a more correct fix for #2717.
* Fixes #2717 - Compass Speech stops on Rotationkoem2013-07-161-1/+6
|
* Implements #750, use preference activitykoem2013-07-091-1/+1
|
* refactoring: make handler abstractBananeweizen2013-05-101-6/+16
| | | | * needs overridden methods * add documentation
* Fix #1574: location was sent with the wrong "what" informationSamuel Tardieu2012-05-151-5/+4
| | | | | A last-minute reorganization not caught by the test suite while fixing issue #1556 led to this bug.
* Factor out geodata and direction handlerSamuel Tardieu2012-05-141-0/+122
A recurrent problem is that the geodata and direction listeners must be started on the UI thread. To ensure that this is indeed always the case, operations on the geodata object should be performed through this type.