improve mixpanel usage statistics (#2238)

Other changes:
- Always display first start dialog if privacy options are unset (e.g. if the user closed GPT4All without selecting them)
- LocalDocs scanQueue is now always deferred
- Fix a potential crash in magic_match
- LocalDocs indexing is now started after the first start dialog is dismissed so usage stats are included

Signed-off-by: Jared Van Bortel <jared@nomic.ai>
This commit is contained in:
Jared Van Bortel
2024-04-25 13:16:52 -04:00
committed by GitHub
parent 4193533154
commit c622921894
30 changed files with 520 additions and 532 deletions

View File

@@ -100,16 +100,10 @@ NOTE: By turning on this feature, you will be sending your data to the GPT4All O
}
onAccepted: {
if (MySettings.networkIsActive)
return
MySettings.networkIsActive = true;
Network.sendNetworkToggled(true);
MySettings.networkIsActive = true
}
onRejected: {
if (!MySettings.networkIsActive)
return
MySettings.networkIsActive = false;
Network.sendNetworkToggled(false);
MySettings.networkIsActive = false
}
}