aboutsummaryrefslogtreecommitdiffstats
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* fixes #3615 - restrict display image size to 800x800 to prevent OOMMarco Jacob2014-04-071-2/+4
|
* fix #3729: compass deviation -90° in landscape mode (GPS)Samuel Tardieu2014-04-065-12/+36
| | | | | | Conflicts: main/src/cgeo/geocaching/sensors/DirectionProvider.java tests/src/cgeo/geocaching/compatibility/CompatibilityTest.java
* fix #3733: mini-compass deviation in cache listSamuel Tardieu2014-04-051-1/+2
|
* fix #3729: compass deviation -90° in landscape modeSamuel Tardieu2014-04-051-1/+2
|
* fix #2729: crash on GPX exportSamuel Tardieu2014-04-021-1/+7
|
* fix #3716: NPE in getCachedMissingFromSearchSamuel Tardieu2014-04-021-11/+8
|
* fix #3714: NPE in deleteDirectory()Samuel Tardieu2014-04-021-4/+9
|
* fix #3722: NPE in SpeechServiceSamuel Tardieu2014-04-021-1/+2
| | | | It looks like `onDestroy` might be called before completion of `onInit`.
* fix #3721: NPE in Geocache.hashCode()Samuel Tardieu2014-04-021-8/+3
| | | | | | Also, hash codes must be equal when the objects compare equal. Since equality compares only geocodes, the hash codes must also only take geocodes into consideration.
* Typo correctionLars2014-04-011-1/+1
|
* Version code and changelogLars2014-04-011-3/+8
|
* crowdin: New translationsrsudev2014-04-012-9/+9
|
* Remove now useless changes to RxJavaSamuel Tardieu2014-03-313-0/+0
|
* Partially revert < 2.3 compatibility modeSamuel Tardieu2014-03-311-29/+16
| | | | | This reverts part of 46675dfdcb4c7b511b4c35e4a2242e47d4678fd4. However, since this commit did some cleanup and simplifications, we keep them.
* Restrict this version to Android >= 2.3Samuel Tardieu2014-03-311-2/+2
|
* fix #3709: NPE in auto-completeSamuel Tardieu2014-03-311-1/+2
| | | | | It looks like at least on Android 3.1 the `getCount()` method may be called before results are published.
* fix #3708: NPE in database cleaningSamuel Tardieu2014-03-311-5/+5
| | | | | This happens only when the database is in bad shape, but prevents from seeing the error message.
* fix #3707: missing method in Android < 2.3Samuel Tardieu2014-03-313-41/+34
|
* Update changelog for releaseSamuel Tardieu2014-03-311-0/+6
|
* fix #3704: NPE while attempting to download preview mapSamuel Tardieu2014-03-311-1/+1
|
* fix #3703: NoSuchMethodError in Android < 2.3Samuel Tardieu2014-03-313-0/+0
|
* Another typo correctionLars2014-03-301-2/+2
| | | Sorry again :(
* Typo in version codeLars2014-03-301-1/+1
|
* Version codeLars2014-03-301-1/+1
| | | This time on release branch
* Add reference to crowdin translatorsLars2014-03-301-0/+2
|
* crowdin: New translationsrsudev2014-03-302-3/+3
|
* Update changelog_master.xmlLars2014-03-291-4/+0
| | | Changelog_master needs to be completely empty on release branch
* crowdin: New translationsrsudev2014-03-291-6/+6
|
* fix #3690: NPE while exporting GPXSamuel Tardieu2014-03-291-5/+8
|
* Update changelog_release.xmlLars2014-03-291-69/+3
| | | | Removed outdated changes from list (i.e. they are included in the last releases) and added some missing changes. I will crosscheck later if anything important is still missing, but on the first look it looks complete.
* Transfer changelog_master content into changelog_releaseSamuel Tardieu2014-03-292-22/+22
|
* crowdin: New translationsrsudev2014-03-282-8/+9
|
* crowdin: New translationsrsudev2014-03-283-87/+382
|
* fix #3041: gcvote not merge from map popupSamuel Tardieu2014-03-271-0/+1
|
* fix #2906: newly loaded found caches are added to the historySamuel Tardieu2014-03-271-11/+0
| | | | | | The `visitedDate` field indicates that a cache has been recently logged. It was previously set from the found date when loading a cache from geocaching.com, which caused the extra insertion.
* Fix lint warning: mark the handler as non-leakedSamuel Tardieu2014-03-271-0/+3
|
* Handle history list differently than other listsSamuel Tardieu2014-03-274-31/+30
| | | | | History list cannot be sorted. Using the same comparator as other lists will make us lose the chosen sorting order (see #3519).
* Use a synchronized method to please FindBugsSamuel Tardieu2014-03-261-10/+7
|
* Allow subscription to either location or direction dataSamuel Tardieu2014-03-2611-58/+137
| | | | | | | | 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.
* crowdin: New translationsrsudev2014-03-263-11/+165
|
* Put out as much sensor work as possible onto background threadsSamuel Tardieu2014-03-265-49/+145
| | | | | | | | The sensors signals and merging are now delivered on background handler threads instead of the UI thread. While this might not change a lot of things in practice, it may help with #3680.
* Update changelog_master.xmlLars2014-03-251-0/+5
|
* crowdin: New translationsrsudev2014-03-254-84/+1105
| | | | Added Romanian as well
* reduce null analysis warningsBananeweizen2014-03-254-4/+1
| | | | | | This change allows unchecked conversion from non annotated expressions to nonnull expressions. Those are needed whenever we call a framework method (where we cannot add annotations ourselfes) and cause more warnings in Eclipse than they actually help.
* Fixes #3518, Online log on OC without authentication not prohibitedrsudev2014-03-251-0/+13
| | | | Checks logged in status before allowing log
* crowdin: New translationsrsudev2014-03-252-1/+200
|
* crowdin: New translationsrsudev2014-03-242-39/+366
|
* Clean obsolete log images information as a temporary measureSamuel Tardieu2014-03-241-0/+5
| | | | | For about one year, log images information will be removed at every start. See issue #3514.
* fix #3514: log images table should be cleanedSamuel Tardieu2014-03-241-1/+1
|
* Make static method call reference the class nameSamuel Tardieu2014-03-241-1/+1
|