aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Silence warning introduced by #3449 debug changeSamuel Tardieu2013-12-281-0/+1
| | | | | This must be reverted as well if commit 8a4a97f46ac02d7475a4a9532cb3b80800dcda90 is reverted.
* fix #3480: quasi-systematic concurrent loginsSamuel Tardieu2013-12-285-34/+43
| | | | | | | | | | The login procedure was initiated in both `onCreate()` and `onResume()`. It has been limited to `onResume()` and refactored as to not manipulate a global variable. Also, the previous code prevented cgeo from retrying a failed login to one of the cache providers if another had succeeded, as every provider cleared `setLogin()` in case of success. This has been fixed as well.
* #3449: debug changeBananeweizen2013-12-282-6/+4
| | | | This change needs to be reverted after it has been tested by the affected users, as it disables the fix for #2057.
* Merge remote-tracking branch 'rel00p/newlogin'Bananeweizen2013-12-283-79/+58
|\ | | | | | | * moved common api request parameters into the central apiRequest method * added return to retry
| * reworked EC loginrel00p2013-12-273-75/+50
| |
* | refactoring: remove redundant testSamuel Tardieu2013-12-281-3/+1
| |
* | Remove unused string resource `list_dialog_cancel`Samuel Tardieu2013-12-2814-14/+0
| | | | | | | | | | | | Refactoring in 120b2a27fb68831fbabbcd5b13c31695337f0fdb replaced the use of `list_dialog_cancel` by the standard Android cancel message.
* | Revert "experimental single overlay for maps"Samuel Tardieu2013-12-2710-114/+102
| | | | | | | | | | This reverts commit 74b7b59e0eac6ec09c032baa6e9d9d27f0ec2f95 which had been merged by mistake.
* | fix #3488: NPE in Pebble watch navigationSamuel Tardieu2013-12-271-0/+5
| | | | | | | | Fix suggested by GitHub user WebMajstr-.
* | experimental single overlay for mapsBananeweizen2013-12-2710-102/+114
| |
* | new: support geokrety imagesBananeweizen2013-12-271-12/+17
| |
* | refactoring: extract input dialog as reusable codeBananeweizen2013-12-272-44/+81
| |
* | prohibit empty list name inputBananeweizen2013-12-272-21/+34
| |
* | Fixes #3238, Attributes on opencaching.plrsudev2013-12-2727-14/+1364
|/ | | | - Added the last missing icons
* refactoring: some nullness cleanupsMichael Keppler2013-12-264-7/+15
|
* findbugs: synchronize lazy initialized objectsMichael Keppler2013-12-263-6/+3
|
* Revert "fixes #3446 - added progress indicator for download on nav menu"Michael Keppler2013-12-251-37/+28
| | | | This reverts commit 9efbd611f11a36278f55e42e8675f3916ea8057a.
* findbugs casts and dereference warningsMichael Keppler2013-12-257-8/+39
|
* Merge pull request #3453 from marco-dev/addLoadStaticMapsProgressMarco Jacob2013-12-251-28/+37
|\ | | | | fixes #3446 - added progress dialog on nav download static maps
| * fixes #3446 - added progress indicator for download on nav menuMarco Jacob2013-12-101-28/+37
| |
* | findbugs: prohibit access to internal collectionsMichael Keppler2013-12-252-17/+20
| |
* | fix findbugs issueMichael Keppler2013-12-2512-18/+53
| | | | | | | | * refactor map tokens to be a concrete type, as we already had a bad null check in there
* | fix #3481: new navigation menu for Pebble applicationMichael Keppler2013-12-255-1/+49
| |
* | fix #3479: IllegalStateExceptions due to wrong waitingMichael Keppler2013-12-251-1/+1
| |
* | fix #3477: NPE in view state managementMichael Keppler2013-12-253-4/+13
| |
* | fix #3469: "More" search not working after connector refactoringMichael Keppler2013-12-255-24/+41
| |
* | fix #3468: ask for installation of qr code readerMichael Keppler2013-12-252-3/+6
| |
* | fix #3473: GCVote on non GC cachesMichael Keppler2013-12-251-9/+22
| |
* | fix #3471: avoid null being possible in the interfaceMichael Keppler2013-12-253-5/+12
| | | | | | | | | | This change also prohibits the same error to occur again in another implementation of the same interface and should therefore be preferred to just checking for null in the current interface implementation.
* | Fixes #3471, NPE when leaving cache detailsrsudev2013-12-241-2/+2
| | | | | | | | Check for not stored view state on restoring
* | Fixes #3462, Wrong attribute icon in OC.de cachersudev2013-12-2412-8/+282
| | | | | | | | Additionally some new icons for oc attributes
* | fix some findbugs findingsMichael Keppler2013-12-234-9/+8
| |
* | fix broken buildMichael Keppler2013-12-221-11/+5
| |
* | build: have only one resource file with keysMichael Keppler2013-12-226-20/+19
| |
* | build: have calendar build with same API as main appMichael Keppler2013-12-221-1/+1
| | | | | | * removes the need to have API 4 installed
* | refactoring: simplify confirmation dialogs, remove duplicate codeBananeweizen2013-12-1918-216/+362
| |
* | refactoring: remove duplicate codeBananeweizen2013-12-194-23/+21
| |
* | fix broken testBananeweizen2013-12-191-1/+1
| |
* | fix #3464, terrain filter up to 7Bananeweizen2013-12-191-1/+1
| | | | | | | | This is just an increase of the global filter range. The available filters do not depend on which connectors are active.
* | Update changelog_master.xmlLars2013-12-191-1/+3
| |
* | refactoring: remove duplicated codeBananeweizen2013-12-194-75/+70
| |
* | fix #3398: have options menu for pocket queriesBananeweizen2013-12-186-21/+20
| |
* | refactoring: reduce mapsforge memory usageBananeweizen2013-12-1812-188/+141
| | | | | | | | | | | | | | | | | | This puts scale and position into one overlay, instead of using 2 overlays. That reduces memory usage by 2 times a full screen bitmap due to double buffering in mapsforge. The only downside is that scale and position now have to be drawn at the same depth-level (below or on top of the caches), but they were both on top previously anyway.
* | new: have waypoint name in waypoint context menuBananeweizen2013-12-181-1/+1
| |
* | update librariesBananeweizen2013-12-184-1/+1
| |
* | refactoring: remove duplicated codeBananeweizen2013-12-1814-58/+96
| |
* | build: exclude third party code from coverage measurementBananeweizen2013-12-181-0/+1
| |
* | refactoring: generalize GCConnector capabilities implementationBananeweizen2013-12-1814-85/+73
| |
* | fix lint warningBananeweizen2013-12-171-3/+1
| |
* | new: make connectors report their features to the userBananeweizen2013-12-1714-79/+302
| |