aboutsummaryrefslogtreecommitdiffstats
path: root/main
Commit message (Collapse)AuthorAgeFilesLines
* Fix #1751: set language to EnglishSamuel Tardieu2012-06-172-6/+22
| | | | | Using a simpler page and putting a referer seems to make the process more reliable.
* Translation change #1784 also for release branchLars2012-06-151-3/+3
|
* Change log update for release branchLars2012-06-101-0/+4
|
* Fix #1735: safely uppercase string even if it is nullSamuel Tardieu2012-06-071-1/+1
| | | | | Since we check for the null string once if has been uppercased, it makes sense to use a method which allows null in and out.
* Fix #1736: some caches can be nullSamuel Tardieu2012-06-071-2/+2
| | | | | Due to the fragile concurrent updates, some caches can be null. Check against it, and do the same thing for waypoints.
* Fix #1738: enable "store selected" operation on search resultsSamuel Tardieu2012-06-061-1/+1
| | | | | | The check was erroneous and was checking for a concrete list, while it should check for either a concrete list or a non-offline one, such as a search result.
* Merge branch 'issue-1722' into releaseSamuel Tardieu2012-06-067-295/+299
|\
| * Fix #1722: do not use BigDecimal in computationsSamuel Tardieu2012-06-057-295/+299
| |
* | Version infomucek42012-06-062-2/+2
| |
* | Added known limitation for #1727Lars2012-06-061-0/+1
| |
* | Fix German stringsSamuel Tardieu2012-06-051-4/+3
| |
* | Add plurals as a source of acceptable referenceSamuel Tardieu2012-06-051-1/+1
| |
* | Do not special case attribute_*_no anymoreSamuel Tardieu2012-06-051-4/+1
| | | | | | | | We do not generate them dynamically in the code any more.
* | Exclude status_* messages from usage checkSamuel Tardieu2012-06-051-0/+5
| |
* | Added all missing german translationsLars2012-06-061-2/+21
| |
* | Update French translation: shorter login stringsSamuel Tardieu2012-06-051-3/+3
| |
* | Shorter login information (more likely to fit screen)Lars2012-06-051-3/+3
| |
* | Shorter login information (more likely to fit screen)Lars2012-06-051-3/+3
| |
* | Fix #1698: show live map warning only once per sessionSamuel Tardieu2012-06-052-1/+11
| |
* | Make method staticSamuel Tardieu2012-06-051-1/+1
| |
* | Modify menu items visibility in prepare phase onlySamuel Tardieu2012-06-051-41/+34
| | | | | | | | | | Since the list id can change, we must keep the same option menu created all the time.
* | Move caches from the ALL_CACHES list to the default listSamuel Tardieu2012-06-051-1/+12
| | | | | | | | This fixes the aftermath of issues #1702 and #1711.
* | Do not try to hide a menu item that is not displayedSamuel Tardieu2012-06-051-1/+1
| |
* | New bugfixes descriptionSamuel Tardieu2012-06-051-1/+3
|/
* Prevent NPE by checking for null coordinatesSamuel Tardieu2012-06-051-2/+6
| | | | The bug was reported several times through the Google Play console.
* Fix #1711: disable more operations on non-concrete listsSamuel Tardieu2012-06-041-13/+20
|
* Make the cache cache synchronizedSamuel Tardieu2012-06-041-7/+13
| | | | | | | Concurrent modifications could occur, especially on very large displays where we may have to draw a lot of caches at the same time while fetching others. This could lead to ConcurrentModificationException errors, as described in #1706.
* updated localization-itRomNexus62012-06-041-3/+6
|
* fix #1704: Filter applied to single cache requestBananeweizen2012-06-045-14/+15
|
* Update bugfixes descriptionSamuel Tardieu2012-06-011-0/+4
|
* Add French translation for issue #1699 fixSamuel Tardieu2012-06-011-0/+3
|
* Fix #1699: give resources to the "unknown" attributeOndřej Kunc2012-06-012-1/+4
|
* Fix #1702: do not allow refreshing the "all caches" listSamuel Tardieu2012-06-011-4/+10
| | | | | | Not only refreshing the "all caches" list may cause performance problems if the list is large, but also it moves the cache to a real (non-virtual) list with the same id as the "all caches" list.
* Update base version code in manifestSamuel Tardieu2012-06-011-1/+1
| | | | | This will help us identify better base version for developer builds in logs.
* version Stringmucek42012-06-011-2/+2
|
* fix #1694: crash on import from mailBananeweizen2012-06-011-8/+14
|
* Merge pull request #1687 from samueltardieu/proposed-compass-updatesBananeweizen2012-05-313-28/+23
|\ | | | | Proposed compass updates
| * Ensure that we stay in the [0, 360[ rangeSamuel Tardieu2012-05-311-6/+6
| | | | | | | | | | | | | | We have to ensure that the direction stays within the right range when computing a smooth update. Related to issues #1680 and #1685.
| * Add a function to compute a normalized angle differenceSamuel Tardieu2012-05-312-1/+14
| |
| * Simplify previous fix due to root cause fixingSamuel Tardieu2012-05-312-13/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The fix for #1680 introduced in ad93745d42f9aaf5bc4925075987ef64c13b2f71 had to account for the possibility of angles being outside the [0, 360[ range. Commit 0034e358668d5911639628468be7409b2696d6c5 fixed #1685 and now ensures that the returned orientation is within the right domain range even after the phone rotation has been added to the sensor angle. It is now possible to simplify the computation because we now that the difference of two angle values will always be in the ]-360; 720[ range, and can this fixed by adding 360 and taking the module with 360 to enter back the [0, 360[ range.
| * fix #1680: compass gets stuck after some rotationsBananeweizen2012-05-312-11/+5
| |
| * new: make compass spin fast for large angles, slower for small anglesBananeweizen2012-05-311-4/+2
| |
* | Change log updateLars2012-05-311-0/+3
| |
* | Fix an infinite loop in map activity creationSamuel Tardieu2012-05-311-0/+10
| | | | | | | | | | | | | | | | If, for any reason, an invalid map source was requested, the CGeoMap activity would attempt to restart itself with this new map source. Since of course the good provider could never be used, the activity was restarting itself until the application or the device crash, whatever comes first.
* | Make the version a bold stringSamuel Tardieu2012-05-311-0/+1
| | | | | | | | Part of #1686.
* | Fix #1686: better visible version numberSamuel Tardieu2012-05-311-0/+6
|/
* Fix #1685: make sure the compass range fits within boundsSamuel Tardieu2012-05-312-5/+19
|
* Fix #1682: fix cache merge for not-detailed cachesrsudev2012-05-311-8/+6
|
* Change log updateLars2012-05-311-0/+4
|
* Save detailed cache changes to database not just CacheCache.rsudev2012-05-301-1/+2
| | | | fixes #1440, closes #1625 Adapted from @campbeb