Update device

This commit is contained in:
QIDI TECH
2024-07-26 14:02:02 +08:00
parent 2b8deba938
commit 5005a1df1b
79 changed files with 29198 additions and 1058 deletions

View File

@@ -211,12 +211,26 @@ void AppConfig::set_defaults()
if (get("sys_menu_enabled").empty())
set("sys_menu_enabled", "1");
#endif // _WIN32
#endif // _WIN32
// B45
if (get("machine_list_minification").empty())
set("machine_list_minification", "1");
//B64
if (get("user_token").empty())
set("user_token", "");
if (get("sending_interval").empty()) {
set("sending_interval", "5");
}
if (get("max_send").empty()) {
set("max_send", "3");
}
if (get("machine_list_net").empty())
set("machine_list_net", "0");
// Remove legacy window positions/sizes
erase("", "main_frame_maximized");
erase("", "main_frame_pos");

View File

@@ -6,4 +6,6 @@
#define SLIC3R_VERSION "@SLIC3R_VERSION@"
#define SLIC3R_BUILD_ID "@SLIC3R_BUILD_ID@"
//B64
#define QDT_RELEASE_TO_PUBLIC @QDT_RELEASE_TO_PUBLIC@
#endif /* __SLIC3R_VERSION_H */