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
10
main.c
10
main.c
|
|
@ -124,6 +124,16 @@ void report_dives(gboolean is_imported, gboolean prefer_imported)
|
|||
int preexisting = dive_table.preexisting;
|
||||
struct dive *last;
|
||||
|
||||
/* set the nickname for the divecomputer for newly downloaded dives */
|
||||
for (i = dive_table.preexisting; i < dive_table.nr; i++)
|
||||
if (dive_table.dives[i]->downloaded) {
|
||||
set_dc_nickname(dive_table.dives[i]);
|
||||
} else {
|
||||
struct divecomputer *dc = &dive_table.dives[i]->dc;
|
||||
if (dc->nickname && *dc->nickname)
|
||||
remember_dc(dc->deviceid, dc->nickname, TRUE);
|
||||
}
|
||||
|
||||
/* This does the right thing for -1: NULL */
|
||||
last = get_dive(preexisting-1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue