mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-08-05 01:02:08 +00:00
Compare commits
12 Commits
feat/print
...
nightly-bu
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6312caaf13 | ||
|
|
0051768206 | ||
|
|
1d078e005a | ||
|
|
82759d3899 | ||
|
|
59155f26ac | ||
|
|
40eab797c6 | ||
|
|
ca7fbfb007 | ||
|
|
7b404596e9 | ||
|
|
06ef58bad8 | ||
|
|
74c4a7e450 | ||
|
|
dbb991bf07 | ||
|
|
66d3f3f9c3 |
@@ -465,6 +465,57 @@ static void stb_textedit_click(STB_TEXTEDIT_STRING *str, STB_TexteditState *stat
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the click still land at a valid location if the mouse is slightly
|
||||||
|
// above or below the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
{
|
||||||
|
state->cursor = 0;
|
||||||
|
state->select_start = state->cursor;
|
||||||
|
state->select_end = state->cursor;
|
||||||
|
state->has_preferred_x = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
state->cursor = stb_text_locate_coord(str, x, y);
|
state->cursor = stb_text_locate_coord(str, x, y);
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
@@ -485,6 +536,50 @@ static void stb_textedit_drag(STB_TEXTEDIT_STRING *str, STB_TexteditState *state
|
|||||||
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
y = r.ymin;
|
y = r.ymin;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// In multi-line mode, clamp y to stay within the text vertical bounds.
|
||||||
|
// This lets the drag keep working if the mouse goes off the top or bottom of the text.
|
||||||
|
StbTexteditRow r;
|
||||||
|
int n = STB_TEXTEDIT_STRINGLEN(str);
|
||||||
|
int i = 0;
|
||||||
|
float base_y = 0, y_min, y_max;
|
||||||
|
|
||||||
|
// Get the first row to establish y_min and start the iteration
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, 0);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
return;
|
||||||
|
y_min = r.ymin;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i = r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
|
||||||
|
// Walk the remaining rows to find the bottom of the last row
|
||||||
|
while (i < n)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, i);
|
||||||
|
if (r.num_chars <= 0)
|
||||||
|
break;
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
i += r.num_chars;
|
||||||
|
base_y += r.baseline_y_delta;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If the text ends with a newline, account for the empty trailing line
|
||||||
|
// so the cursor can be placed on it
|
||||||
|
if (n > 0 && STB_TEXTEDIT_GETCHAR(str, n - 1) == STB_TEXTEDIT_NEWLINE)
|
||||||
|
{
|
||||||
|
STB_TEXTEDIT_LAYOUTROW(&r, str, n);
|
||||||
|
y_max = base_y + r.ymax;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtract half the last line height to avoid rounding issues when the mouse
|
||||||
|
// is just barely below the last line (keep cursor on the last line, not after the text)
|
||||||
|
y_max -= (r.ymax - r.ymin) * 0.5f;
|
||||||
|
|
||||||
|
if (y < y_min) y = y_min;
|
||||||
|
if (y > y_max) y = y_max;
|
||||||
|
}
|
||||||
|
|
||||||
if (state->select_start == state->select_end)
|
if (state->select_start == state->select_end)
|
||||||
state->select_start = state->cursor;
|
state->select_start = state->cursor;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Custom Printer",
|
"name": "Custom Printer",
|
||||||
"version": "02.04.00.01",
|
"version": "02.04.00.02",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "My configurations",
|
"description": "My configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,12 +24,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -25,12 +25,6 @@
|
|||||||
"filament_loading_speed_start": [
|
"filament_loading_speed_start": [
|
||||||
"50"
|
"50"
|
||||||
],
|
],
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"1"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"40"
|
|
||||||
],
|
|
||||||
"filament_stamping_distance": [
|
"filament_stamping_distance": [
|
||||||
"45"
|
"45"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -118,7 +118,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
"deretraction_speed": [
|
"deretraction_speed": [
|
||||||
"30"
|
"30"
|
||||||
],
|
],
|
||||||
"z_hop_types": "Normal Lift",
|
"z_hop_types": "Slope Lift",
|
||||||
"silent_mode": "0",
|
"silent_mode": "0",
|
||||||
"single_extruder_multi_material": "1",
|
"single_extruder_multi_material": "1",
|
||||||
"change_filament_gcode": "",
|
"change_filament_gcode": "",
|
||||||
|
|||||||
@@ -172,11 +172,11 @@
|
|||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
"z_hop_types": [
|
"z_hop_types": [
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift",
|
"Slope Lift",
|
||||||
"Normal Lift"
|
"Slope Lift"
|
||||||
],
|
],
|
||||||
"purge_in_prime_tower": "0",
|
"purge_in_prime_tower": "0",
|
||||||
"machine_pause_gcode": "M601",
|
"machine_pause_gcode": "M601",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "OrcaFilamentLibrary",
|
"name": "OrcaFilamentLibrary",
|
||||||
"version": "02.04.00.03",
|
"version": "02.04.00.04",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Orca Filament Library",
|
"description": "Orca Filament Library",
|
||||||
"filament_list": [
|
"filament_list": [
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PET-CF"
|
"PET-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -39,6 +39,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PLA-AERO"
|
"PLA-AERO"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -27,6 +27,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Bambu Lab"
|
"Bambu Lab"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -36,6 +36,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
"filament_retraction_minimum_travel": [
|
"filament_retraction_minimum_travel": [
|
||||||
"3"
|
"3"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -72,15 +72,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"599"
|
"599"
|
||||||
],
|
],
|
||||||
@@ -99,30 +90,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -165,21 +138,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -42,15 +42,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"445"
|
"445"
|
||||||
],
|
],
|
||||||
@@ -69,30 +60,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -135,21 +108,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_wipe": [
|
"filament_wipe": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"60"
|
"60"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"449.5"
|
"449.5"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"25"
|
"25"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -71,15 +71,6 @@
|
|||||||
"fan_min_speed": [
|
"fan_min_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
"filament_cooling_final_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_initial_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cooling_moves": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_cost": [
|
"filament_cost": [
|
||||||
"500"
|
"500"
|
||||||
],
|
],
|
||||||
@@ -98,30 +89,12 @@
|
|||||||
"filament_is_support": [
|
"filament_is_support": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_loading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_long_retractions_when_cut": [
|
"filament_long_retractions_when_cut": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
"filament_minimal_purge_on_wipe_tower": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_flow": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_multitool_ramming_volume": [
|
|
||||||
"10"
|
|
||||||
],
|
|
||||||
"filament_notes": [
|
"filament_notes": [
|
||||||
""
|
""
|
||||||
],
|
],
|
||||||
@@ -164,21 +137,6 @@
|
|||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"filament_stamping_distance": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_stamping_loading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_toolchange_delay": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_unloading_speed_start": [
|
|
||||||
"0"
|
|
||||||
],
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elas"
|
"Elas"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -24,6 +24,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"290"
|
"290"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -35,6 +35,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Elegoo"
|
"Elegoo"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"nozzle_temperature": [
|
"nozzle_temperature": [
|
||||||
"220"
|
"220"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,5 +44,8 @@
|
|||||||
],
|
],
|
||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,5 +10,8 @@
|
|||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PA-CF"
|
"PA-CF"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,5 +8,8 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"20"
|
"20"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"compatible_printers": []
|
"compatible_printers": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"11.5"
|
"11.5"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"13"
|
||||||
|
],
|
||||||
"overhang_fan_speed": [
|
"overhang_fan_speed": [
|
||||||
"100"
|
"100"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -12,6 +12,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"18"
|
"18"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"25"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"11"
|
"11"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"11"
|
||||||
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.8"
|
"0.8"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -15,6 +15,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP-CF"
|
"PP-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -15,6 +15,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP-GF"
|
"PP-GF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Overture"
|
"Overture"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -23,6 +23,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"7.5"
|
"7.5"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"7.5"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Valment"
|
"Valment"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,12 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"ABS"
|
"ABS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,12 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"ASA"
|
"ASA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"BVOH"
|
"BVOH"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -66,6 +66,12 @@
|
|||||||
"filament_minimal_purge_on_wipe_tower": [
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
"filament_retract_before_wipe": [
|
"filament_retract_before_wipe": [
|
||||||
"nil"
|
"nil"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"16"
|
"16"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,6 +8,9 @@
|
|||||||
"filament_type": [
|
"filament_type": [
|
||||||
"EVA"
|
"EVA"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"supertack_plate_temp": [
|
"supertack_plate_temp": [
|
||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -41,6 +41,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"HIPS"
|
"HIPS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -44,6 +44,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PA"
|
"PA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -7,6 +7,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PAHT"
|
"PAHT"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -86,6 +86,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"16"
|
||||||
|
],
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.94"
|
"0.94"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -26,6 +26,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PCTG"
|
"PCTG"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PE"
|
"PE"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -26,6 +26,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"10"
|
"10"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PETG"
|
"PETG"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PHA"
|
"PHA"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
"filament_scarf_seam_type": [
|
"filament_scarf_seam_type": [
|
||||||
"none"
|
"none"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -9,6 +9,9 @@
|
|||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.98"
|
"0.98"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
"slow_down_layer_time": [
|
"slow_down_layer_time": [
|
||||||
"8"
|
"8"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -38,6 +38,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PP"
|
"PP"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -47,6 +47,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PPA-CF"
|
"PPA-CF"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"4"
|
"4"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PPS"
|
"PPS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -40,6 +40,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_soluble": [
|
"filament_soluble": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -11,6 +11,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"12"
|
"12"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"SBS"
|
"SBS"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -43,6 +43,15 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"3.2"
|
"3.2"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"3.2"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"0.1"
|
||||||
|
],
|
||||||
"filament_retraction_length": [
|
"filament_retraction_length": [
|
||||||
"0.4"
|
"0.4"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,6 +17,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"8"
|
"8"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"8"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -21,6 +21,9 @@
|
|||||||
"filament_max_volumetric_speed": [
|
"filament_max_volumetric_speed": [
|
||||||
"6"
|
"6"
|
||||||
],
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"eSUN"
|
"eSUN"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "Snapmaker",
|
"name": "Snapmaker",
|
||||||
"version": "02.04.00.07",
|
"version": "02.04.00.08",
|
||||||
"force_update": "0",
|
"force_update": "0",
|
||||||
"description": "Snapmaker configurations",
|
"description": "Snapmaker configurations",
|
||||||
"machine_model_list": [
|
"machine_model_list": [
|
||||||
@@ -426,10 +426,6 @@
|
|||||||
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle)",
|
|
||||||
"sub_path": "process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
"name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)",
|
||||||
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
"sub_path": "process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json"
|
||||||
@@ -486,6 +482,66 @@
|
|||||||
"name": "fdm_process_U1_0.8_common",
|
"name": "fdm_process_U1_0.8_common",
|
||||||
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
"sub_path": "process/fdm_process_U1_0.8_common.json"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.06_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.06_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.08_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.08_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.10_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.10_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.12_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.12_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.14_nozzle_0.2",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.14_nozzle_0.2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.18_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.18_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.24_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.24_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.30_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.30_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.32_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.32_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.36_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.36_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.40_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.40_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.42_nozzle_0.6",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.42_nozzle_0.6.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.48_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.48_nozzle_0.8.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fdm_process_U1_0.56_nozzle_0.8",
|
||||||
|
"sub_path": "process/fdm_process_U1_0.56_nozzle_0.8.json"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
"name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)",
|
||||||
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
"sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json"
|
||||||
@@ -1508,10 +1564,6 @@
|
|||||||
"name": "Snapmaker PLA Metal @U1",
|
"name": "Snapmaker PLA Metal @U1",
|
||||||
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
"sub_path": "filament/Snapmaker PLA Metal @U1.json"
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"name": "Snapmaker PLA Silk @U1",
|
|
||||||
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Silk",
|
"name": "Snapmaker PLA Silk",
|
||||||
"sub_path": "filament/Snapmaker PLA Silk.json"
|
"sub_path": "filament/Snapmaker PLA Silk.json"
|
||||||
@@ -1671,6 +1723,214 @@
|
|||||||
{
|
{
|
||||||
"name": "Snapmaker PLA Matte @U1 base",
|
"name": "Snapmaker PLA Matte @U1 base",
|
||||||
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker PLA @U1 base",
|
||||||
|
"sub_path": "filament/Polymaker PLA @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Silk PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Silk PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker Tough PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker Tough PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker Breakaway Support For PLA @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Full Spectrum @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Full Spectrum @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 base2",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 base2.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 base",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 base.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Wood @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Wood @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA-CF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA-CF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PVA @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PVA @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 90A @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 90A @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker TPU 95A HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker TPU 95A HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Silk @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Silk @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Polymaker General PLA Family @U1",
|
||||||
|
"sub_path": "filament/Polymaker General PLA Family @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG HF @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PETG Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PETG Translucent @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Basic @U1",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Basic @U1.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Glow @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Glow @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Matte @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Matte @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA SnapSpeed @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA SnapSpeed @U1 0.8 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.2 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.2 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.4 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.4 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.6 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.6 nozzle.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Snapmaker PLA Translucent @U1 0.8 nozzle",
|
||||||
|
"sub_path": "filament/Snapmaker PLA Translucent @U1 0.8 nozzle.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"machine_list": [
|
"machine_list": [
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker General PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "thXfSaUkOAKJ50ey",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"62"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,107 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker PLA @U1 base",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"filament_id": "OGFL99",
|
||||||
|
"instantiation": "false",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"activate_air_filtration": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"chamber_temperatures": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"cool_plate_temp": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"cool_plate_temp_initial_layer": [
|
||||||
|
"35"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_long_retractions_when_cut": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"12"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_retraction_distances_when_cut": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Generic"
|
||||||
|
],
|
||||||
|
"filament_scarf_seam_type": [
|
||||||
|
"none"
|
||||||
|
],
|
||||||
|
"filament_scarf_height": [
|
||||||
|
"10%"
|
||||||
|
],
|
||||||
|
"filament_scarf_gap": [
|
||||||
|
"15%"
|
||||||
|
],
|
||||||
|
"filament_scarf_length": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_shrink": [
|
||||||
|
"100%"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"220"
|
||||||
|
],
|
||||||
|
"overhang_fan_threshold": [
|
||||||
|
"50%"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"45"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
"; Filament gcode\n"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"; filament end gcode\n"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker Silk PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "h8vIYpXbxFtHPV6e",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.34"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_high": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker Tough PLA Family @U1",
|
||||||
|
"inherits": "Polymaker PLA @U1 base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "d6CC81Es2hp46bto",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.23"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.96"
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Polymaker"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"6"
|
||||||
|
],
|
||||||
|
"temperature_vitrification": [
|
||||||
|
"55"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -11,7 +11,6 @@
|
|||||||
"filament_minimal_purge_on_wipe_tower": [
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
"15"
|
"15"
|
||||||
],
|
],
|
||||||
|
|
||||||
"pressure_advance": [
|
"pressure_advance": [
|
||||||
"0.05"
|
"0.05"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"filament_z_hop": [
|
"filament_z_hop": [
|
||||||
"0.0"
|
"0.0"
|
||||||
],
|
],
|
||||||
|
|
||||||
"enable_pressure_advance": [
|
"enable_pressure_advance": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"filament_z_hop": [
|
"filament_z_hop": [
|
||||||
"0.0"
|
"0.0"
|
||||||
],
|
],
|
||||||
|
|
||||||
"enable_pressure_advance": [
|
"enable_pressure_advance": [
|
||||||
"1"
|
"1"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"supertack_plate_temp_initial_layer": [
|
"supertack_plate_temp_initial_layer": [
|
||||||
"70"
|
"70"
|
||||||
],
|
],
|
||||||
|
|
||||||
"pressure_advance": [
|
"pressure_advance": [
|
||||||
"0.04"
|
"0.04"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyLite Dual PLA @0.2 nozzle",
|
"name": "PolyLite Dual PLA @0.2 nozzle",
|
||||||
"setting_id": "jhmy4YHi9MuL0DWu",
|
|
||||||
"inherits": "PolyLite PLA @0.2 nozzle",
|
"inherits": "PolyLite PLA @0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "jhmy4YHi9MuL0DWu",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker A250 Dual (0.2 nozzle)",
|
"Snapmaker A250 Dual (0.2 nozzle)",
|
||||||
"Snapmaker A250 Dual BKit (0.2 nozzle)",
|
"Snapmaker A250 Dual BKit (0.2 nozzle)",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyLite J1 PLA @0.2 nozzle",
|
"name": "PolyLite J1 PLA @0.2 nozzle",
|
||||||
"setting_id": "jFlRSxx0KvN3BOUu",
|
|
||||||
"inherits": "PolyLite PLA @0.2 nozzle",
|
"inherits": "PolyLite PLA @0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "jFlRSxx0KvN3BOUu",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker J1 (0.2 nozzle)"
|
"Snapmaker J1 (0.2 nozzle)"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyLite J1 PLA",
|
"name": "PolyLite J1 PLA",
|
||||||
"setting_id": "wcpOTTMyZNPFKyXr",
|
|
||||||
"inherits": "PolyLite PLA @base",
|
"inherits": "PolyLite PLA @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "wcpOTTMyZNPFKyXr",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker J1 (0.4 nozzle)",
|
"Snapmaker J1 (0.4 nozzle)",
|
||||||
"Snapmaker J1 (0.6 nozzle)",
|
"Snapmaker J1 (0.6 nozzle)",
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "PolyLite PETG @Base",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.25"
|
"1.25"
|
||||||
],
|
],
|
||||||
@@ -18,11 +23,6 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
"inherits": "fdm_filament_petg",
|
|
||||||
"name": "PolyLite PETG @Base",
|
|
||||||
"type": "filament",
|
|
||||||
"instantiation": "false",
|
|
||||||
"from": "system",
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Polymaker"
|
"Polymaker"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"supertack_plate_temp_initial_layer": [
|
"supertack_plate_temp_initial_layer": [
|
||||||
"70"
|
"70"
|
||||||
],
|
],
|
||||||
|
|
||||||
"pressure_advance": [
|
"pressure_advance": [
|
||||||
"0.05"
|
"0.05"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,7 +17,6 @@
|
|||||||
"supertack_plate_temp_initial_layer": [
|
"supertack_plate_temp_initial_layer": [
|
||||||
"70"
|
"70"
|
||||||
],
|
],
|
||||||
|
|
||||||
"pressure_advance": [
|
"pressure_advance": [
|
||||||
"0.05"
|
"0.05"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyLite PLA @0.2 nozzle",
|
"name": "PolyLite PLA @0.2 nozzle",
|
||||||
"setting_id": "s9mdMaFca8SHfji9",
|
|
||||||
"inherits": "PolyLite PLA @base",
|
"inherits": "PolyLite PLA @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "s9mdMaFca8SHfji9",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker A250 (0.2 nozzle)",
|
"Snapmaker A250 (0.2 nozzle)",
|
||||||
"Snapmaker A250 BKit (0.2 nozzle)",
|
"Snapmaker A250 BKit (0.2 nozzle)",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "false",
|
|
||||||
"name": "PolyLite PLA @base",
|
"name": "PolyLite PLA @base",
|
||||||
"filament_id": "1393866034",
|
|
||||||
"inherits": "fdm_filament_pla",
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"filament_id": "1393866034",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_flow_ratio": [
|
"filament_flow_ratio": [
|
||||||
"0.95"
|
"0.95"
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyTerra Dual PLA @0.2 nozzle",
|
"name": "PolyTerra Dual PLA @0.2 nozzle",
|
||||||
"setting_id": "UQYgjH1uVxf3d2Nv",
|
|
||||||
"inherits": "PolyTerra PLA @0.2 nozzle",
|
"inherits": "PolyTerra PLA @0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "UQYgjH1uVxf3d2Nv",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker A250 Dual (0.2 nozzle)",
|
"Snapmaker A250 Dual (0.2 nozzle)",
|
||||||
"Snapmaker A250 Dual BKit (0.2 nozzle)",
|
"Snapmaker A250 Dual BKit (0.2 nozzle)",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyTerra J1 PLA @0.2 nozzle",
|
"name": "PolyTerra J1 PLA @0.2 nozzle",
|
||||||
"setting_id": "mxKHxGmBZzPLS82O",
|
|
||||||
"inherits": "PolyTerra PLA @0.2 nozzle",
|
"inherits": "PolyTerra PLA @0.2 nozzle",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "mxKHxGmBZzPLS82O",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker J1 (0.2 nozzle)"
|
"Snapmaker J1 (0.2 nozzle)"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyTerra J1 PLA",
|
"name": "PolyTerra J1 PLA",
|
||||||
"setting_id": "4MZWZX7QPBzxdEGj",
|
|
||||||
"inherits": "PolyTerra PLA @base",
|
"inherits": "PolyTerra PLA @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "4MZWZX7QPBzxdEGj",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker J1 (0.4 nozzle)",
|
"Snapmaker J1 (0.4 nozzle)",
|
||||||
"Snapmaker J1 (0.6 nozzle)",
|
"Snapmaker J1 (0.6 nozzle)",
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
{
|
{
|
||||||
"type": "filament",
|
"type": "filament",
|
||||||
"from": "system",
|
|
||||||
"instantiation": "true",
|
|
||||||
"name": "PolyTerra PLA @0.2 nozzle",
|
"name": "PolyTerra PLA @0.2 nozzle",
|
||||||
"setting_id": "6W1ygT08NordBdIW",
|
|
||||||
"inherits": "PolyTerra PLA @base",
|
"inherits": "PolyTerra PLA @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "6W1ygT08NordBdIW",
|
||||||
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker A250 (0.2 nozzle)",
|
"Snapmaker A250 (0.2 nozzle)",
|
||||||
"Snapmaker A250 BKit (0.2 nozzle)",
|
"Snapmaker A250 BKit (0.2 nozzle)",
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker HT-PLA @Base",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.28"
|
"1.28"
|
||||||
],
|
],
|
||||||
@@ -18,11 +23,6 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"name": "Polymaker HT-PLA @Base",
|
|
||||||
"type": "filament",
|
|
||||||
"instantiation": "false",
|
|
||||||
"from": "system",
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Polymaker"
|
"Polymaker"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker HT-PLA-GF @Base",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.34"
|
"1.34"
|
||||||
],
|
],
|
||||||
@@ -18,11 +23,6 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"name": "Polymaker HT-PLA-GF @Base",
|
|
||||||
"type": "filament",
|
|
||||||
"instantiation": "false",
|
|
||||||
"from": "system",
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Polymaker"
|
"Polymaker"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker PETG @Base",
|
||||||
|
"inherits": "fdm_filament_petg",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.3"
|
"1.3"
|
||||||
],
|
],
|
||||||
@@ -18,11 +23,6 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
"inherits": "fdm_filament_petg",
|
|
||||||
"name": "Polymaker PETG @Base",
|
|
||||||
"type": "filament",
|
|
||||||
"instantiation": "false",
|
|
||||||
"from": "system",
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Polymaker"
|
"Polymaker"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -1,4 +1,9 @@
|
|||||||
{
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Polymaker PLA Pro @Base",
|
||||||
|
"inherits": "fdm_filament_pla",
|
||||||
|
"from": "system",
|
||||||
|
"instantiation": "false",
|
||||||
"filament_density": [
|
"filament_density": [
|
||||||
"1.23"
|
"1.23"
|
||||||
],
|
],
|
||||||
@@ -18,11 +23,6 @@
|
|||||||
"0"
|
"0"
|
||||||
],
|
],
|
||||||
"description": "",
|
"description": "",
|
||||||
"inherits": "fdm_filament_pla",
|
|
||||||
"name": "Polymaker PLA Pro @Base",
|
|
||||||
"type": "filament",
|
|
||||||
"instantiation": "false",
|
|
||||||
"from": "system",
|
|
||||||
"filament_vendor": [
|
"filament_vendor": [
|
||||||
"Polymaker"
|
"Polymaker"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,5 +7,8 @@
|
|||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker U1 (0.4 nozzle)"
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,5 +7,8 @@
|
|||||||
"instantiation": "true",
|
"instantiation": "true",
|
||||||
"compatible_printers": [
|
"compatible_printers": [
|
||||||
"Snapmaker U1 (0.4 nozzle)"
|
"Snapmaker U1 (0.4 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,104 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.2 nozzle",
|
||||||
|
"inherits": "Snapmaker Breakaway Support @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "mJoaud6wulT4p8SA",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.2 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"69.98"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.3"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"0.5"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"240"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.2"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"filament_cooling_moves": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"filament_loading_speed": [
|
||||||
|
"28"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed_start": [
|
||||||
|
"100"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.6 nozzle",
|
||||||
|
"inherits": "Snapmaker Breakaway Support @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "rKUUREJNhstIU0I2",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.6 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"69.98"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.3"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.95"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.02"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_retraction_minimum_travel": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_cooling_moves": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"filament_loading_speed": [
|
||||||
|
"28"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed_start": [
|
||||||
|
"100"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker Breakaway Support For PLA @U1 0.8 nozzle",
|
||||||
|
"inherits": "Snapmaker Breakaway Support @base",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "hQ8jQ5GKQKGKuPew",
|
||||||
|
"instantiation": "true",
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.8 nozzle)"
|
||||||
|
],
|
||||||
|
"filament_type": [
|
||||||
|
"PLA"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"filament_cost": [
|
||||||
|
"69.98"
|
||||||
|
],
|
||||||
|
"filament_density": [
|
||||||
|
"1.3"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"0.93"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.015"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"filament_cooling_moves": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"filament_loading_speed": [
|
||||||
|
"28"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"15"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed_start": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -10,5 +10,83 @@
|
|||||||
],
|
],
|
||||||
"filament_type": [
|
"filament_type": [
|
||||||
"PLA"
|
"PLA"
|
||||||
|
],
|
||||||
|
"enable_pressure_advance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"close_fan_the_first_x_layers": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"complete_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"during_print_exhaust_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"filament_cooling_moves": [
|
||||||
|
"4"
|
||||||
|
],
|
||||||
|
"filament_deretraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_flow_ratio": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_loading_speed": [
|
||||||
|
"28"
|
||||||
|
],
|
||||||
|
"filament_minimal_purge_on_wipe_tower": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_retraction_speed": [
|
||||||
|
"nil"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed": [
|
||||||
|
"90"
|
||||||
|
],
|
||||||
|
"filament_unloading_speed_start": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"210"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"190"
|
||||||
|
],
|
||||||
|
"pressure_advance": [
|
||||||
|
"0.03"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"65"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"65"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.2 nozzle",
|
||||||
|
"inherits": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "Ujul2YTBwfldFiFd",
|
||||||
|
"instantiation": "true",
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"1",
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.2 nozzle)"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"\n\n"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"3"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1.5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Snapmaker"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.6 nozzle",
|
||||||
|
"inherits": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "2FfQZdp5xunngnF0",
|
||||||
|
"instantiation": "true",
|
||||||
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.6 nozzle)"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_end_gcode": [
|
||||||
|
"\n"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"2.5"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Snapmaker"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
]
|
||||||
|
}
|
||||||
@@ -0,0 +1,110 @@
|
|||||||
|
{
|
||||||
|
"type": "filament",
|
||||||
|
"name": "Snapmaker PETG HF @U1 0.8 nozzle",
|
||||||
|
"inherits": "Snapmaker PETG HF @U1 base2",
|
||||||
|
"from": "system",
|
||||||
|
"setting_id": "ebANa67V4B2nwUaX",
|
||||||
|
"instantiation": "true",
|
||||||
|
"filament_ramming_travel_time": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"long_retractions_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"retraction_distances_when_ec": [
|
||||||
|
"0",
|
||||||
|
"0"
|
||||||
|
],
|
||||||
|
"compatible_printers": [
|
||||||
|
"Snapmaker U1 (0.8 nozzle)"
|
||||||
|
],
|
||||||
|
"additional_cooling_fan_speed": [
|
||||||
|
"70"
|
||||||
|
],
|
||||||
|
"eng_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"eng_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"fan_cooling_layer_time": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"fan_max_speed": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"fan_min_speed": [
|
||||||
|
"30"
|
||||||
|
],
|
||||||
|
"filament_max_volumetric_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_flow": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"filament_multitool_ramming_volume": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retract_length_toolchange": [
|
||||||
|
"5"
|
||||||
|
],
|
||||||
|
"filament_retraction_length": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_start_gcode": [
|
||||||
|
""
|
||||||
|
],
|
||||||
|
"filament_vendor": [
|
||||||
|
"Snapmaker"
|
||||||
|
],
|
||||||
|
"filament_wipe": [
|
||||||
|
"1"
|
||||||
|
],
|
||||||
|
"filament_wipe_distance": [
|
||||||
|
"2"
|
||||||
|
],
|
||||||
|
"filament_z_hop_types": [
|
||||||
|
"Slope Lift"
|
||||||
|
],
|
||||||
|
"hot_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"hot_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"nozzle_temperature": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_initial_layer": [
|
||||||
|
"245"
|
||||||
|
],
|
||||||
|
"nozzle_temperature_range_low": [
|
||||||
|
"230"
|
||||||
|
],
|
||||||
|
"overhang_fan_speed": [
|
||||||
|
"100"
|
||||||
|
],
|
||||||
|
"slow_down_layer_time": [
|
||||||
|
"10"
|
||||||
|
],
|
||||||
|
"slow_down_min_speed": [
|
||||||
|
"20"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"supertack_plate_temp_initial_layer": [
|
||||||
|
"60"
|
||||||
|
],
|
||||||
|
"textured_plate_temp": [
|
||||||
|
"80"
|
||||||
|
],
|
||||||
|
"textured_plate_temp_initial_layer": [
|
||||||
|
"80"
|
||||||
|
]
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user