Removed nozzle_high_temperature

This commit is contained in:
Lukas Matena 2024-08-26 16:07:20 +02:00
parent a361f78067
commit 37583da9e8
7 changed files with 6 additions and 16 deletions

View File

@ -1,8 +1,8 @@
set(LibBGCode_SOURCE_DIR "" CACHE PATH "Optionally specify local LibBGCode source directory")
set(_source_dir_line
URL https://github.com/prusa3d/libbgcode/archive/a21254e7043b9a9e8f1c89a1d702912b36ad3d4c.zip
URL_HASH SHA256=4ce42e5b3129e3cb976d19c7c14ec8c708758297b27908b62657a57ac07e7fb5)
URL https://github.com/prusa3d/libbgcode/archive/d20e3a3a6d1ee3d8026bf20c5a9ce2ad88f4b433.zip
URL_HASH SHA256=bfcba51262bdda6f0bf06b9508f4386c50145d3e97bba6c76ee1f1520dae3b93)
if (LibBGCode_SOURCE_DIR)
set(_source_dir_line "SOURCE_DIR;${LibBGCode_SOURCE_DIR};BUILD_ALWAYS;ON")

View File

@ -957,7 +957,7 @@ void GCodeGenerator::_do_export(Print& print, GCodeOutputStream &file, Thumbnail
// printer data - this section contains duplicates from the slicer metadata
// that we just created. Find and copy the entries that we want to duplicate.
const auto& slicer_metadata = binary_data.slicer_metadata.raw_data;
const std::vector<std::string> keys_to_duplicate = { "printer_model", "filament_type", "filament_abrasive", "nozzle_diameter", "nozzle_high_flow", "nozzle_high_temperature", "bed_temperature",
const std::vector<std::string> keys_to_duplicate = { "printer_model", "filament_type", "filament_abrasive", "nozzle_diameter", "nozzle_high_flow", "bed_temperature",
"brim_width", "fill_density", "layer_height", "temperature", "ironing", "support_material", "extruder_colour"};
assert(std::is_sorted(slicer_metadata.begin(), slicer_metadata.end(),
[](const auto& a, const auto& b) { return a.first < b.first; }));

View File

@ -533,7 +533,7 @@ static std::vector<std::string> s_Preset_printer_options {
"max_print_height", "default_print_profile", "inherits",
"remaining_times", "silent_mode",
"machine_limits_usage", "thumbnails", "thumbnails_format",
"nozzle_high_flow", "nozzle_high_temperature",
"nozzle_high_flow"
};
static std::vector<std::string> s_Preset_sla_print_options {

View File

@ -128,7 +128,6 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n
"gcode_comments",
"gcode_label_objects",
"nozzle_high_flow",
"nozzle_high_temperature",
"infill_acceleration",
"layer_gcode",
"min_fan_speed",

View File

@ -2562,12 +2562,6 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->set_default_value(new ConfigOptionBools{false});
def = this->add("nozzle_high_temperature", coBools);
def->label = L("High temperature nozzle");
def->tooltip = L("TODO");
def->mode = comExpert;
def->set_default_value(new ConfigOptionBools{false});
def = this->add("retract_lift", coFloats);
def->label = L("Lift height");
def->tooltip = L("Lift height applied before travel.");
@ -3733,7 +3727,7 @@ void PrintConfigDef::init_extruder_option_keys()
"retract_before_wipe", "retract_restart_extra", "retract_before_travel", "wipe",
"travel_slope", "travel_max_lift", "travel_ramping_lift", "travel_lift_before_obstacle",
"retract_layer_change", "retract_length_toolchange", "retract_restart_extra_toolchange", "extruder_colour",
"default_filament_profile", "nozzle_high_flow", "nozzle_high_temperature"
"default_filament_profile", "nozzle_high_flow"
};
m_extruder_retract_keys = {

View File

@ -827,7 +827,6 @@ PRINT_CONFIG_CLASS_DEFINE(
((ConfigOptionFloats, travel_slope))
((ConfigOptionBools, travel_lift_before_obstacle))
((ConfigOptionBools, nozzle_high_flow))
((ConfigOptionBools, nozzle_high_temperature))
((ConfigOptionPercents, retract_before_wipe))
((ConfigOptionFloats, retract_length))
((ConfigOptionFloats, retract_length_toolchange))

View File

@ -3133,7 +3133,7 @@ const std::vector<std::string> extruder_options = {
"retract_length", "retract_lift", "retract_lift_above", "retract_lift_below",
"retract_speed", "deretract_speed", "retract_restart_extra", "retract_before_travel",
"retract_layer_change", "wipe", "retract_before_wipe", "travel_ramping_lift",
"travel_slope", "travel_max_lift", "travel_lift_before_obstacle", "nozzle_high_flow", "nozzle_high_temperature",
"travel_slope", "travel_max_lift", "travel_lift_before_obstacle", "nozzle_high_flow",
"retract_length_toolchange", "retract_restart_extra_toolchange",
};
@ -3197,8 +3197,6 @@ void TabPrinter::build_extruder_pages(size_t n_before_extruders)
};
optgroup->append_single_option_line("nozzle_high_flow", "", extruder_idx);
optgroup->append_single_option_line("nozzle_high_temperature", "", extruder_idx);
optgroup = page->new_optgroup(L("Preview"));