[PATCH 2/6] Populate the plot info with tts information

2014-12-28 Thread Anton Lundin
Signed-off-by: Anton Lundin gla...@acc.umu.se --- profile.c | 1 + 1 file changed, 1 insertion(+) diff --git a/profile.c b/profile.c index 6c47545..79de828 100644 --- a/profile.c +++ b/profile.c @@ -603,6 +603,7 @@ struct plot_data *populate_plot_entries(struct dive *dive, struct divecomputer *

[PATCH 4/6] Parse time on only one place in DLF import

2014-12-28 Thread Anton Lundin
Signed-off-by: Anton Lundin gla...@acc.umu.se --- parse-xml.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/parse-xml.c b/parse-xml.c index a14c3e7..e8589fa 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -2535,6 +2535,7 @@ int parse_dlf_buffer(unsigned char

[PATCH 6/6] Add the dive start DLF event type

2014-12-28 Thread Anton Lundin
Signed-off-by: Anton Lundin gla...@acc.umu.se --- parse-xml.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/parse-xml.c b/parse-xml.c index df24263..7393429 100644 --- a/parse-xml.c +++ b/parse-xml.c @@ -2604,6 +2604,12 @@ int parse_dlf_buffer(unsigned char *buffer, size_t size)

website redesign

2014-12-28 Thread Dirk Hohndel
Not sure how often you guys look at our website… I paid a consultant to turn this from a moron induced design disaster (i.e., my work) into something that’s actually quite attractive, I think. Of course I managed to botch the migration to the production site (nothing ever works the way it’s

[PATCH 2/7] Lift code out to write_suunto_vyper_settings

2014-12-28 Thread Anton Lundin
This lifts the writing of settings out of the run() method and introduces better error handling when libdivecomputer returns a error. Signed-off-by: Anton Lundin gla...@acc.umu.se --- configuredivecomputerthreads.cpp | 113 ++- 1 file changed, 76

[PATCH 3/7] Lift code out to read_ostc3_settings

2014-12-28 Thread Anton Lundin
This lifts the reading of settings out of the run() method and introduces better error handling when libdivecomputer returns a error. Signed-off-by: Anton Lundin gla...@acc.umu.se --- configuredivecomputerthreads.cpp | 451 +++ 1 file changed, 222