mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add the ability to set a nickname for a dive computer
We maintain a list of dive computers that we know about (by deviceid) and their nicknames in our config. If the user downloads dive from a dive computer that we haven't seen before, we give them the option to set a nickname for that dive computer. That nickname is displayed in the profile (and stored in the XML file, assuming it is not the same as the model). This implementation attempts to make sure that it correctly deals with utf8 nicknames. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
aba65736eb
commit
713a4fcff6
6 changed files with 158 additions and 2 deletions
4
dive.h
4
dive.h
|
|
@ -266,6 +266,7 @@ struct event {
|
|||
struct divecomputer {
|
||||
timestamp_t when;
|
||||
const char *model;
|
||||
const char *nickname;
|
||||
uint32_t deviceid, diveid;
|
||||
int samples, alloc_samples;
|
||||
struct sample *sample;
|
||||
|
|
@ -524,6 +525,9 @@ extern int edit_multi_dive_info(struct dive *single_dive);
|
|||
extern void dive_list_update_dives(void);
|
||||
extern void flush_divelist(struct dive *dive);
|
||||
|
||||
extern void set_dc_nickname(struct dive *dive);
|
||||
extern void remember_dc(uint32_t deviceid, const char *nickname, gboolean change_conf);
|
||||
|
||||
#define DIVE_ERROR_PARSE 1
|
||||
|
||||
const char *weekday(int wday);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue