aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching
Commit message (Collapse)AuthorAgeFilesLines
* init might be called (indirectly) from different threads,Florian Moesch2011-08-111-1/+1
| | | | databases might be opened multiple times
* Merge remote-tracking branch 'upstream/master'Florian Moesch2011-08-113-12/+3
|\
| * Merge branch 'master' of github.com:cgeo/c-geo-opensourcemucek42011-08-1149-759/+568
| |\
| * | Manual and new send2cgeomucek42011-08-113-12/+3
| | |
* | | resource leak (file input stream did not get closed in case of exceptions ↵Florian Moesch2011-08-111-8/+22
| | | | | | | | | | | | during parsing)
* | | resource leaks (files did not get closed in case of io exceptions during flush)Florian Moesch2011-08-113-3/+3
| |/ |/|
* | Note result as initialized when it isSamuel Tardieu2011-08-101-0/+1
| | | | | | | | This was forgotten during the e53f4b refactoring.
* | fix #142Bananeweizen2011-08-102-0/+6
| |
* | * remove duplicated app, settings, pref, res, base fields in allBananeweizen2011-08-1048-760/+557
| | | | | | | | | | | | | | | | | | activies * remove cgWarning class, it is no longer needed * convert many non static methods to static methods, to ease removing the no longer needed fields afterwards If you have trouble merging after you fetch these changes, I'm happy to help.
* | correction to resource leak fixFlorian Moesch2011-08-101-0/+3
| |
* | removed resource leak (db cursor)Florian Moesch2011-08-101-0/+2
|/
* fix #130mucek42011-08-101-1/+1
|
* Personal note displaymucek42011-08-104-12/+69
|
* * have common base classes for cgeo related activities to encapsulateBananeweizen2011-08-1030-990/+692
| | | | | | | | | the related code * move several methods from base to the activities classes * remove all duplicated goHome(), goManual() methods * remove instance variable "activity", which is only a this-pointer (all triggered by issue #98) If you have trouble merging afterwards, I'm happy to help.
* Fixing incorrect forwarding of map activity lifecycle callsRainer2011-08-094-3/+27
|
* some cleanup of settings code, this is only preparation for making it aBananeweizen2011-08-089-243/+240
| | | singleton afterwards
* Drastically reduce memory usage by avoiding Java to create (sub)copiesBananeweizen2011-08-082-50/+60
| | | | | | | | | | of very large Strings during regular expression matching in cache parsing. The added String copy constructor must remain in code, even if it looks superfluous on first look! remove circular reference to cache in private static (non final) class to avoid getting additional garbage collector root objects fix #100
* Merge pull request #121 from rahu/masterc:geo2011-08-081-2/+6
|\ | | | | fix for issue #88
| * fix issue #88Ralf Hubert2011-08-081-2/+6
| |
* | fix #117, turn-by-turn not working.Bananeweizen2011-08-082-51/+68
|/ | | additionally remove some superfluous null checks in locus app interface
* cache overlay on map was wrong since my application refactoringBananeweizen2011-08-071-4/+4
|
* fix issue #72Ralf Hubert2011-08-071-2/+11
|
* Merge branch 'master' of github.com:cgeo/c-geo-opensourceRalf Hubert2011-08-0717-196/+294
|\
| * avoid creating backups from an empty databaseBananeweizen2011-08-071-2/+7
| |
| * fix #113: refresh missing after circles setting has been changed,Bananeweizen2011-08-072-0/+4
| | | | | | paint circles dashed, so they look more "virtual" on the map
| * fix #105: Manual waypoint modifications are lost by RefreshBananeweizen2011-08-073-39/+101
| | | | | | | | | | | | * implement merging for waypoints * prefer non empty fields on merge * prefer old waypoint note if it is longer * always merge cache, if it was already stored
| * move Android compatibility code into a new package, clean upBananeweizen2011-08-075-60/+91
| |
| * * replace collection.clone() by copy constructorBananeweizen2011-08-075-21/+16
| | | | | | | | | | * have automatic "organize imports" on save fixes #108
| * add half star voting, fixes #107Bananeweizen2011-08-072-72/+70
| |
| * parse guid from owner link, fixes #112bananeweizen2011-08-071-2/+2
| |
| * RuntimeException in map file name on new devicesBananeweizen2011-08-061-0/+3
| |
* | open images in default viewerRalf Hubert2011-08-041-6/+26
|/
* Set GC-code as title because name is normally to long, see #83SammysHP2011-08-041-6/+3
|
* Merge pull request #95 from rahu/404ebebed57481aed0c801a49013dec82243af5dSven Karsten Greiner2011-08-031-0/+3
|\ | | | | fix offline cache + not stored images, fix #40
| * fix not stored logimagesRalf Hubert2011-08-031-0/+3
| |
* | Field Notes export is only available if there are caches with logs, closes #89SammysHP2011-08-021-0/+13
| |
* | Merge pull request #91 from rsudev/mastermucek42011-08-0237-240/+24
|\ \ | | | | | | Remove Google Analytics
| * | Post merge fixesRainer2011-08-021-2/+0
| | |
| * | Merge branch 'master' of https://github.com/cgeo/c-geo-opensourceRainer2011-08-0215-330/+470
| |\ \ | | |/ | | | | | | | | | Conflicts: src/cgeo/geocaching/cgeospoilers.java
| * | Removed google analyticsRainer2011-08-0237-241/+24
| | |
* | | Add button for all trackables if there are more than 20 (fixes #56)SammysHP2011-08-021-1/+1
| |/ |/|
* | Merge pull request #84 from rahu/masterc:geo2011-08-0111-94/+326
|\ \ | | | | | | Display images for logs
| * | some changes after code-discussionRalf Hubert2011-08-017-30/+17
| | |
| * | Display Images from Logs (Issue #40)Ralf Hubert2011-08-0111-93/+338
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - changed db-version to 54 (need table for logimages) - renamed cgSpoiler to cgImage - renamed cgeospoilers to cgeoimages - added setting to store/not store logimages TODO: - draw a pretty icon - maybe translate the new strings
* | | cleanupBananeweizen2011-08-018-239/+144
| |/ |/| | | | | | | | | * make potentially static methods static * remove unused constants * remove unused imports * move a cache related (otherwise static base) method to the cache class
* | Implemented map view switch in map activityRainer2011-08-017-110/+198
| |
* | Merge branch 'master' of https://github.com/cgeo/c-geo-opensourceRainer2011-08-012-3/+9
|\ \ | |/
| * Fix 2x FC, fix #43mucek42011-08-012-3/+9
| |
* | Merge branch 'master' of https://github.com/cgeo/c-geo-opensourceRainer2011-07-3139-1136/+1795
|\ \ | |/
| * Merge remote branch 'origin/master'Bananeweizen2011-07-314-17/+56
| |\