Updated to 1.9.5, and optimize calibration and device

This commit is contained in:
QIDI TECH
2024-09-16 16:07:29 +08:00
parent fa251e0a9a
commit d842832b25
90 changed files with 2753 additions and 998 deletions

View File

@@ -181,6 +181,10 @@ void AppConfig::set_defaults()
if (get("enable_multi_machine").empty())
set_bool("enable_multi_machine", false);
//w13
if (get("enable_seal").empty())
set_bool("enable_seal", true);
#ifdef _WIN32
@@ -336,6 +340,13 @@ void AppConfig::set_defaults()
if (get("user_token").empty())
set("user_token", "");
//y33
if(get("user_head_url").empty())
set("user_head_url", "");
if(get("user_head_name").empty())
set("user_head_name", "");
if (get("sending_interval").empty()) {
set("sending_interval", "5");
}