version update

This commit is contained in:
QIDI TECH
2025-08-18 11:08:15 +08:00
parent dab82d0248
commit 87acaa14f7
5 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "Q Series",
"version": "02.02.00.60",
"version": "02.02.00.61",
"force_update": "0",
"description": "Q Series configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "X-3-Series",
"version": "02.02.00.60",
"version": "02.02.00.61",
"force_update": "0",
"description": "X-3-Series configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "X-4-Series",
"version": "02.02.00.60",
"version": "02.02.00.61",
"force_update": "0",
"description": "X-4-Series configurations",
"machine_model_list": [

View File

@@ -1103,7 +1103,7 @@ public:
if (speed == 0)
m_gcode += "M107\n";
else
m_gcode += "M106 S" + std::to_string(unsigned(255.0 * speed / 100.0)) + "\n";
m_gcode += "M106 S" + Slic3r::float_to_string_decimal_point(unsigned(255.0 * speed / 100.0)) + "\n"; //y70
m_last_fan_speed = speed;
return *this;
}

View File

@@ -13,7 +13,7 @@ endif()
# The build_version should start from 50 in master branch
set(SLIC3R_VERSION "02.02.00.60")
set(SLIC3R_VERSION "02.02.00.61")
string(REPLACE "." "," SLIC3R_COMMA_SEPARATED_VERSION ${SLIC3R_VERSION})
set(SLIC3R_COMMA_SEPARATED_VERSION "${SLIC3R_COMMA_SEPARATED_VERSION}")