[App] Send diagnostics on server connection

Took 32 seconds

Took 22 seconds
This commit is contained in:
Lukas Brübach 2026-01-02 18:25:47 +01:00
parent bbd8671e6e
commit b9198d99e9
13 changed files with 258 additions and 9 deletions

View file

@ -55,6 +55,22 @@ message Command_Login {
optional string hashed_password = 6;
}
message FeatureFlag {
optional string name = 1;
optional string value = 2;
}
message Command_ClientDiagnostics {
extend SessionCommand {
optional Command_ClientDiagnostics ext = 1051;
}
optional string clientver = 1;
repeated FeatureFlag feature_flags = 2;
optional string os = 3;
optional string arch = 4;
}
message Command_Message {
extend SessionCommand {
optional Command_Message ext = 1002;