aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/MainActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* fix #4641: wrong sort order in caches filterSamuel Tardieu2015-02-011-2/+3
|
* Revert "Use bindView instead of bindActivity/bindFragment where appropriate"Samuel Tardieu2015-01-081-3/+5
| | | | | | | This reverts commit d3dc2be5040ea3f4846d9b948c3a0f95b9359f71 and fixes #4604. Conflicts: main/src/cgeo/geocaching/MainActivity.java
* Use MapQuest reverse geocoder if the Android one failsSamuel Tardieu2015-01-071-23/+13
|
* Use bindView instead of bindActivity/bindFragment where appropriateSamuel Tardieu2015-01-071-3/+3
|
* Upgrade to RxAndroid 0.24.0Samuel Tardieu2015-01-071-3/+3
|
* refactoring: more null annotationsBananeweizen2015-01-021-1/+1
|
* refactoring: assert without parenthesisBananeweizen2015-01-011-1/+1
|
* Use GPS when compass is disabled or absentSamuel Tardieu2015-01-011-6/+3
| | | | Work on #4548.
* Remove used-once interface IGeoDataSamuel Tardieu2014-11-231-2/+2
| | | | | IGeoData was only implemented by the GeoData class. We can as well use it directly.
* IGeoData#getCoords() can never be nullSamuel Tardieu2014-11-231-4/+0
|
* Cleanup the database from within the DataStore classSamuel Tardieu2014-11-201-33/+2
|
* Use a scheduler instead of a thread to update bubble countSamuel Tardieu2014-11-201-47/+17
|
* remove useless semicolonBananeweizen2014-11-151-1/+1
|
* Try to relog if needed when connectivity reappearsSamuel Tardieu2014-11-081-0/+22
| | | | Part of work on #2025.
* Use network scheduler instead of threads to log inSamuel Tardieu2014-11-071-3/+4
| | | | This enforces the limit of concurrent connections.
* rename packageBananeweizen2014-11-021-2/+2
| | | | The package not only contains the GeoPoint definition, but other location related classes, too.
* Merge branch 'release' into upstreamSamuel Tardieu2014-08-301-2/+0
|\
| * fix #4278: force English does not work on main screenSamuel Tardieu2014-08-301-2/+0
| |
* | Get the initial location from Android at startup timeSamuel Tardieu2014-08-261-0/+3
| |
* | Merge remote-tracking branch 'origin/release'Bananeweizen2014-08-251-1/+1
|\ \ | |/ | | | | | | Conflicts: main/res/values/strings.xml
| * fix #4213: showcase for cache list activityBananeweizen2014-08-251-1/+1
| |
* | Merge branch 'release' into upstreamSamuel Tardieu2014-08-241-1/+10
|\ \ | |/ | | | | | | | | | | Conflicts: main/project.properties main/res/values/strings.xml main/src/cgeo/geocaching/LogCacheActivity.java
| * initial showcase implementationBananeweizen2014-08-141-1/+10
| |
* | allow more types of shortcuts from the home screenBananeweizen2014-08-231-3/+3
| |
* | Upgrade to RxJava 0.20.0Samuel Tardieu2014-08-191-1/+1
| |
* | Implement low geolocation power mode for main activity and listsSamuel Tardieu2014-08-181-1/+1
| |
* | Temporary workaround for #4143rsudev2014-08-081-6/+12
| |
* | Do not use instanceof in place of inheritanceSamuel Tardieu2014-08-041-4/+2
| |
* | Remove GPS status from location informationSamuel Tardieu2014-08-031-28/+10
|/
* refactoring: reduce package cyclesBananeweizen2014-07-201-1/+1
|
* switch to Java 1.7Bananeweizen2014-07-171-3/+3
| | | | At least since march both ADT and Android Studio support Java 7 features in Android development. Let's use them.
* Use a shared download scheduler for all network accessSamuel Tardieu2014-07-061-2/+2
|
* Implements #3894, Only show Changelog on startup if hash code changedrsudev2014-06-121-4/+5
| | | | - switched from version checking to checksum checking
* fix #3970: crash when trying to change GC-usernameSamuel Tardieu2014-06-091-0/+6
|
* Upgrade RxJava to version 0.19Samuel Tardieu2014-06-091-1/+2
|
* fix #3864: don't call search function on our ownBananeweizen2014-06-011-28/+25
| | | | | This is already handled by the search configuration. We would only need to call this ourselfes if we had not registered such a search configuration.
* fix #3871: provide up navigationBananeweizen2014-05-241-2/+1
|
* Implements #96, Change log / What's new popup on startrsudev2014-05-181-0/+12
| | | | | | - Checks the last version from preferences with current - Stores current version - switches to about - changelog on version change
* show about when clicking home in main activityBananeweizen2014-05-181-1/+2
|
* avoid application crash when clicking home buttonBananeweizen2014-05-181-0/+3
| | | | | Every activity starts the main activity when clicking the home button. We should avoid that in the main activity itself as it leads to a crash of the app.
* Implement ActionBar using AppCompat in cgeoArne Schwabe2014-05-171-11/+19
| | | | | | | | | | | | | | | | | | | | | | | This a first version of an ActionBar implementation with following properties: - The application should be usuable (there still might be bugs left from the conversation to Action) - Provides a more modern feeling on all devices - gets rid of the "dots of shame" on Android 3.0+ devices - The Maps classes MUST inherit from Activity instead of ActionBarActivity. There these classes use the old ActionBar on Android 2.3 devices and the real ActionBar on 3.0+ - This can be fixed when cgeo is ported to Google Maps API v2.0 API which usesFragment - The Dialog classes (CachePopup and WaypointPopup) have been converted to DialogFragments - The AppCombat themes provide no Theme.Dialog theme - this will later ease using these Fragment in other Activities - Use an almost empty activity which just shows the DialogFragment - Use the 'old' ActionBar but which overflow menu button to fit into Holo Design Style - Using a real ActionBar for Dialogs is not really support by Android and trying to force the frame into showing an Actionbar on a dialog leeds to strange bugs/effects - Most of the icon are still the Android 2.3 Menu Icon. These need to be replaced with Holo Style Icons - for most menu icon the ifRoom and/or withText attributes should be reviewed and set - The ActionBar of the main Activity is transparent. This is more or less by accident but looks good - Review Up Action of activities. Is going back to Main Activity always the semantically right thing to do? - Shortpress/Longpress on the Actionbars Compass Icon for primary/secondary Navigation clashes the normal ActionBar behaviour of long pressing to show the text of the action This commit contains many fixes and suggestions from rsudev
* Take advantage of RxJava's renewed Android operatorsSamuel Tardieu2014-04-201-6/+5
|
* remove unneeded suppresswarningsMichael Keppler2014-04-191-9/+11
| | | | | Eclipse does not show a warning if the parameter is documented in the JavaDoc. If your IDE shows warnings about these parameters now after the change, consider upgrading.
* Do not use AndroidObservableSamuel Tardieu2014-04-051-6/+4
| | | | This lets us return to an unmodified version of RxJava.
* Allow subscription to either location or direction dataSamuel Tardieu2014-03-261-3/+3
| | | | | | | | The forced union of both information is not appropriate in several activities where only GPS data is needed, or where direction data update less components than location data (such as cache lists). This is part of work on #3680.
* Upgrade to RxJava 0.17.1 + cgeo patchSamuel Tardieu2014-03-221-4/+4
| | | | | | | | | | There is an ongoing problem with RxJava, discussed at https://github.com/Netflix/RxJava/issues/979 This version includes a patch available at https://github.com/cgeo/RxJava/commit/9ffb27f310d9f454d10d4d03206d8b5a262f6d63 fixup! Upgrade to RxJava 0.17.1
* Automatically pair subscriptions in onResume/onPauseSamuel Tardieu2014-03-101-5/+2
|
* Always use a combined geodata and direction providerSamuel Tardieu2014-03-061-6/+6
|
* refactoring: create cgeo.geocaching.sensors packageSamuel Tardieu2014-03-061-1/+2
|
* fix #3266Darek Kay2014-03-021-1/+2
|