aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo
Commit message (Collapse)AuthorAgeFilesLines
* code cleanup: remove debug codeBananeweizen2012-12-2633-111/+105
| | | * fixed some more issues of Findbugs and CodePro
* fix #2292: parse "marked missing"Bananeweizen2012-12-252-3/+4
|
* refactoring: convert trackable log view to real listBananeweizen2012-12-231-64/+100
|
* new: view pager in trackable activityBananeweizen2012-12-237-599/+667
|
* refactoring: extract view pager activity for re-useBananeweizen2012-12-223-349/+383
|
* refactoring: remove unnecessary null checkBananeweizen2012-12-221-1/+1
|
* fix #2282: change recognition of unpublished cachesBananeweizen2012-12-222-2/+3
|
* Use warning instead of error since the problem is escalatedSamuel Tardieu2012-12-191-1/+1
| | | | | At this stage, we cannot be sure that this will be treated as a real error.
* Bad fields and absence of trackable can be legitimateSamuel Tardieu2012-12-192-14/+14
|
* Absence of a tile on the server is not an errorSamuel Tardieu2012-12-191-1/+1
|
* Do not err when a cache is not in the databaseSamuel Tardieu2012-12-191-1/+1
| | | | | Fresh caches are not in the database to begin with, this is not an error, at most an information.
* Having an empty search result is not an errorSamuel Tardieu2012-12-192-2/+2
|
* Merge pull request #2279 from samueltardieu/better-attributesSamuel Tardieu2012-12-191-7/+4
|\ | | | | Use better aligned attributes in cache description
| * Use better aligned attributes in cache descriptionSamuel Tardieu2012-12-191-7/+4
| | | | | | | | | | | | | | | | This was already discussed in #82 but the solution seems not to have been fully satisfactory, especially when stars were present. This center aligns all the fields, use a relative layout to order them and use the same layout for fields with and without stars.
* | Fix NPE on database migrationSamuel Tardieu2012-12-191-4/+6
| | | | | | | | | | File#listFiles() may return null when the object it is applied to is not a directory.
* | Give full exception reports rather than exception namesSamuel Tardieu2012-12-191-16/+16
| |
* | Reclassify debug informationSamuel Tardieu2012-12-192-2/+1
| |
* | Refactoring: style issuesSamuel Tardieu2012-12-191-11/+7
| | | | | | | | | | Add missing spaces around assignment, use a if instead of a two cases switch since there are only two alternatives.
* | Merge branch 'fix_2276_dialog_forever' of ↵Samuel Tardieu2012-12-191-3/+22
|\ \ | |/ |/| | | https://github.com/triakcz/c-geo-opensource into upstream
| * Fix #2276, close dialog after both requested operations are completedtriakcz2012-12-191-3/+22
| |
* | Fix typo introduced in the latest commitSamuel Tardieu2012-12-191-1/+1
| |
* | Fix: do not use String#isEmpty()Samuel Tardieu2012-12-198-12/+13
| | | | | | | | | | String#isEmpty() has been introduced on SDK API 9 only. For earlier versions of Android, StringUtils.isEmpty/isNotEmpty can be used instead.
* | Refactoring: remove unnecessary enum qualifiersSamuel Tardieu2012-12-1814-15/+15
| |
* | Refactoring: remove useless calls to super()Samuel Tardieu2012-12-182-2/+0
| |
* | Refactoring: remove useless String.valueOf() callsSamuel Tardieu2012-12-182-2/+2
| |
* | Refactoring: remove useless constructor with same accessibility levelSamuel Tardieu2012-12-181-4/+0
| |
* | Refactoring: use Java-style array declarationSamuel Tardieu2012-12-181-1/+1
| |
* | Refactoring: clone() overrides could need CloneNotSupportedExceptionSamuel Tardieu2012-12-181-1/+1
| |
* | Refactoring: do not use protected methods in final classesSamuel Tardieu2012-12-182-4/+4
| |
* | Refactoring: narrow scope of variablesSamuel Tardieu2012-12-1825-100/+64
| |
* | Refactoring: remove pointless null checksSamuel Tardieu2012-12-182-2/+2
| |
* | Refactoring: use isEmpty() where appropriateSamuel Tardieu2012-12-1813-15/+15
| |
* | Fix crash on single cache mapSamuel Tardieu2012-12-181-6/+2
| | | | | | | | | | | | | | | | It was due to a null searchIntent after the refactoring in 6191b4e2aa3b1dea8dd8a41f5396d5e069662f3f which assumes that the copy constructor would not be called with a null value. Found and diagnosed by rsudev.
* | Merge branch 'cache_coords_wpt_ng' of ↵Samuel Tardieu2012-12-1812-45/+439
|\ \ | |/ | | | | https://github.com/triakcz/c-geo-opensource into upstream
| * Uploading of modified coords to geocaching.comtriakcz2012-12-1812-45/+439
| |
* | refactoring: reduce number of prepared statementsBananeweizen2012-12-181-8/+24
| | | | | | * for less memory usage
* | Merge branch 'release' into upstreamSamuel Tardieu2012-12-171-1/+1
|\ \ | | | | | | | | | | | | Conflicts: main/res/values/strings.xml
| * | fix #147: host markers on our own siteSamuel Tardieu2012-12-171-1/+1
| | |
* | | Refactoring: document and refactor SearchResult constructorsSamuel Tardieu2012-12-171-25/+46
| | |
* | | Refactoring: add documentation about null-nessSamuel Tardieu2012-12-172-6/+6
| | |
* | | Refactoring: simplify codeSamuel Tardieu2012-12-171-16/+4
| | |
* | | Refactoring: remove non-sensical test, this can never be nullSamuel Tardieu2012-12-171-4/+0
| | |
* | | Merge branch 'release' into upstreamSamuel Tardieu2012-12-171-1/+1
|\ \ \ | |/ / | | | | | | | | | Conflicts: main/res/values/strings.xml
| * | fix #2259: premium caches not identified in searchesSamuel Tardieu2012-12-171-1/+1
| | |
* | | fix: remove undesired space between trackable log entriesBananeweizen2012-12-161-1/+1
| | | | | | | | | | | | * caused by bad parsing * every entry had additional <div> tags
* | | Merge branch 'release' into upstreamSamuel Tardieu2012-12-161-1/+1
|\ \ \ | |/ /
| * | fix #2235: use a more lax regexp to identify found cachesSamuel Tardieu2012-12-161-1/+1
| | |
* | | Refactoring: remove unnecessary "this" qualifiersSamuel Tardieu2012-12-163-3/+3
| | |
* | | Refactoring: remove redundant elseSamuel Tardieu2012-12-161-4/+8
| | |
* | | Refactoring: remove redundant variableSamuel Tardieu2012-12-161-2/+1
| | |