mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
ENH: CLI: some refines on compatible logic
1. export compatible related values to 3mf 2. process compatible related values when loading Change-Id: Ib7ed3d165cda5d62e0074652d474567494141631 (cherry picked from commit 989fe6439d573457fa78afc5376d04d3120dbbfd)
This commit is contained in:
parent
dcbe442184
commit
8375c73ac9
4 changed files with 607 additions and 239 deletions
|
@ -829,6 +829,10 @@ void PrintConfigDef::init_fff_params()
|
|||
def->set_default_value(new ConfigOptionStrings());
|
||||
def->cli = ConfigOptionDef::nocli;
|
||||
|
||||
def = this->add("print_compatible_printers", coStrings);
|
||||
def->set_default_value(new ConfigOptionStrings());
|
||||
def->cli = ConfigOptionDef::nocli;
|
||||
|
||||
def = this->add("print_sequence", coEnum);
|
||||
def->label = L("Print sequence");
|
||||
def->tooltip = L("Print sequence, layer by layer or object by object");
|
||||
|
@ -4465,6 +4469,12 @@ CLIActionsConfigDef::CLIActionsConfigDef()
|
|||
def->cli = "help|h";
|
||||
def->set_default_value(new ConfigOptionBool(false));
|
||||
|
||||
def = this->add("uptodate", coBool);
|
||||
def->label = L("UpToDate");
|
||||
def->tooltip = L("Update the configs values of 3mf to latest.");
|
||||
def->cli = "uptodate";
|
||||
def->set_default_value(new ConfigOptionBool(false));
|
||||
|
||||
/*def = this->add("help_fff", coBool);
|
||||
def->label = L("Help (FFF options)");
|
||||
def->tooltip = L("Show the full list of print/G-code configuration options.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue