aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/VisitCacheActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* fix #2709: select "attended" as default for past eventsBananeweizen2013-05-101-1/+5
|
* fix #2695: Different log types and order before/after log page loadingBananeweizen2013-05-091-4/+7
| | | for owned caches
* fix #1781: Remove help functionBananeweizen2013-05-091-4/+0
|
* Merge remote-tracking branch 'upstream/release' into currdevrsudev2013-05-081-1/+7
|\
| * Fixes #2627, Twitter posting (ui)rsudev2013-05-081-1/+7
| | | | | | | | Integrate UI initialization into onCreate as well
* | refactoring: simplify log types handlingBananeweizen2013-05-071-1/+0
| |
* | #2684: use view injection libraryBananeweizen2013-05-011-5/+1
| | | | | | | | * If you have compile errors after pulling, please consult the issue on github.
* | refactoring: make API of AsyncTaskWithProgress more explicitBananeweizen2013-04-071-5/+4
| |
* | fix #2585: log progress dismissed when tapping on screenSamuel Tardieu2013-04-061-81/+56
| | | | | | | | Use AsyncTaskWithProgress to factor out code at the same time.
* | refactoring: simplify data flowSamuel Tardieu2013-04-061-7/+3
| |
* | fix #2532: attach log image to log entry locallyBananeweizen2013-03-301-1/+7
| |
* | refactoring of cache logging codeBananeweizen2013-03-301-20/+12
|/ | | | * simplify control flow * move sanity checks into GCVote and twitter methods
* fix #2591: crash in logging activityBananeweizen2013-03-281-2/+11
|
* Fixes #2531 - Auto-save now works as expected.rsudev2013-03-161-1/+7
| | | | | | | | | | | Copied saveLog(false) from onStop() also into finish(). List of caches now gets refreshed, because saveLog() runs while VisitCacheActivity is still running. saveLog(false) was also left in onStop(), because in case the activity gets interrupted and finish() is not called, the log will still be auto-saved. Conflicts: main/src/cgeo/geocaching/VisitCacheActivity.java
* Fix #2519, TB can not be opened from log viewrsudev2013-02-241-1/+1
| | | | Intent extras only changed on receiving end in refactoring
* ImageUpload - fine-tuningrsudev2013-02-181-22/+23
| | | | | | Removed test code and comments Some error-handling Localizability
* Merge remote-tracking branch 'campbeb/fix6a' into 6brsudev2013-02-181-7/+78
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/connector/gc/GCParser.java
| * Fix #6 - Support uploading images with cache logscampbeb2013-01-161-7/+78
| |
* | Restrict LazyInitializedList to the List interfaceSamuel Tardieu2013-02-031-1/+1
| | | | | | | | | | This way, we can use various types of list at various places without specifically needing a LazyInitializedList.
* | Refactoring: rename cgCache into GeocacheSamuel Tardieu2013-02-031-1/+1
| |
* | refactoring: move some more dialogs into new packageBananeweizen2013-01-271-1/+1
| |
* | Remove unnecessary qualifiers to thisSamuel Tardieu2013-01-191-3/+3
|/
* refactoring: use exception object in logggingBananeweizen2013-01-121-1/+1
|
* fix #2367: more intelligent initial logtypeBananeweizen2013-01-121-56/+53
|
* refactoring: visit cache activity cleanupBananeweizen2013-01-121-191/+153
| | | | * use alert dialogs instead of context menus * simplify update logic
* Use FragmentActivity instead of Activity as baseSamuel Tardieu2013-01-081-263/+192
| | | | | Also, this requires the use of a Loader to visit a cache, since data cannot be retained accross a configuration change.
* refactoring: findbugsBananeweizen2012-12-301-9/+9
|
* new: view pager in trackable activityBananeweizen2012-12-231-1/+1
|
* Fix: do not use String#isEmpty()Samuel Tardieu2012-12-191-1/+1
| | | | | String#isEmpty() has been introduced on SDK API 9 only. For earlier versions of Android, StringUtils.isEmpty/isNotEmpty can be used instead.
* Refactoring: use isEmpty() where appropriateSamuel Tardieu2012-12-181-1/+1
|
* fix #2211: remove application-database indirectionBananeweizen2012-12-011-8/+7
|
* code cleanup: fix Lint warnings about LocalesBananeweizen2012-11-221-2/+3
|
* refactoring: lazy initialized listsBananeweizen2012-11-181-1/+1
| | | | * change more users to only take Iterable interface * return unmodifiable list only
* fix #653: Add Smilies when loggingBananeweizen2012-10-061-35/+11
|
* fix #2030: Quick signature insertionBananeweizen2012-10-041-4/+8
|
* Refactoring: remove redundant type castsSamuel Tardieu2012-09-041-3/+3
| | | | | | Those type casts were unnecessary, as the returned value was already of the target type, or the called method (after the cast) was defined by the originally returned type.
* fix #2013: Template for cache ownerBananeweizen2012-09-011-5/+7
|
* fix #1893: remove go4cacheBananeweizen2012-08-261-5/+0
|
* fix #1658: show today literallyBananeweizen2012-06-011-3/+4
|
* Refactoring: add missing override annotationsSamuel Tardieu2012-05-231-0/+7
| | | | This was requested by SammysHP.
* Refactoring: updateCache()blafoo2012-05-101-3/+1
|
* Fix: update stored caches in database when logged, too.blafoo2012-05-071-2/+1
|
* refactoring: rename log typ enums for easier code completion andBananeweizen2012-05-011-12/+12
| | | reading
* Merge remote-tracking branch 'SammysHP/icons'Bananeweizen2012-04-301-2/+2
|\ | | | | | | | | Conflicts: main/src/cgeo/geocaching/apps/cachelist/CacheListAppFactory.java
| * Import Android drawables (from API version 8)SammysHP2012-04-271-2/+2
| | | | | | See #852 for reason. This will increase the apk size by 82 KiB.
* | Refactoring: remove unnecessary else statementsSamuel Tardieu2012-04-281-15/+16
| |
* | Refactoring: remove redundant initializersSamuel Tardieu2012-04-281-1/+1
|/ | | | | The initial values were never used as the variables are set in any case before being used.
* refactoring of database accessBananeweizen2012-04-231-20/+6
| | | | | | * use only one transaction when saving a cache * rework some methods to always take a collection of objects instead of calling the database multiple times
* Refactoring: remove redundant return statementsSamuel Tardieu2012-04-221-1/+0
|
* Convert some fields to local variablesSamuel Tardieu2012-04-221-2/+1
|