New --autosave option for better toolchain integration. #837
This commit is contained in:
parent
895e0bbfcd
commit
8c74d2f41e
@ -93,6 +93,7 @@ The author of the Silk icon set is Mark James.
|
|||||||
GUI options:
|
GUI options:
|
||||||
--no-plater Disable the plater tab
|
--no-plater Disable the plater tab
|
||||||
--gui-mode Overrides the configured mode (simple/expert)
|
--gui-mode Overrides the configured mode (simple/expert)
|
||||||
|
--autosave <file> Automatically export current configuration to the specified file
|
||||||
|
|
||||||
Output options:
|
Output options:
|
||||||
--output-filename-format
|
--output-filename-format
|
||||||
|
@ -45,6 +45,7 @@ use constant MI_DOCUMENTATION => &Wx::NewId;
|
|||||||
our $datadir;
|
our $datadir;
|
||||||
our $no_plater;
|
our $no_plater;
|
||||||
our $mode;
|
our $mode;
|
||||||
|
our $autosave;
|
||||||
|
|
||||||
our $Settings = {
|
our $Settings = {
|
||||||
_ => {
|
_ => {
|
||||||
|
@ -49,10 +49,13 @@ sub new {
|
|||||||
$self->{tabpanel},
|
$self->{tabpanel},
|
||||||
on_value_change => sub {
|
on_value_change => sub {
|
||||||
$self->{plater}->on_config_change(@_) if $self->{plater}; # propagate config change events to the plater
|
$self->{plater}->on_config_change(@_) if $self->{plater}; # propagate config change events to the plater
|
||||||
if ($self->{mode} eq 'simple' && $init) { # don't save while loading for the first time
|
if ($init) { # don't save while loading for the first time
|
||||||
|
if ($self->{mode} eq 'simple') {
|
||||||
# save config
|
# save config
|
||||||
$self->config->save("$Slic3r::GUI::datadir/simple.ini");
|
$self->config->save("$Slic3r::GUI::datadir/simple.ini");
|
||||||
}
|
}
|
||||||
|
$self->config->save($Slic3r::GUI::autosave) if $Slic3r::GUI::autosave;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
on_presets_changed => sub {
|
on_presets_changed => sub {
|
||||||
$self->{plater}->update_presets($tab_name, @_) if $self->{plater};
|
$self->{plater}->update_presets($tab_name, @_) if $self->{plater};
|
||||||
|
@ -26,6 +26,7 @@ my %cli_options = ();
|
|||||||
|
|
||||||
'save=s' => \$opt{save},
|
'save=s' => \$opt{save},
|
||||||
'load=s@' => \$opt{load},
|
'load=s@' => \$opt{load},
|
||||||
|
'autosave=s' => \$opt{autosave},
|
||||||
'ignore-nonexistent-config' => \$opt{ignore_nonexistent_config},
|
'ignore-nonexistent-config' => \$opt{ignore_nonexistent_config},
|
||||||
'no-plater' => \$opt{no_plater},
|
'no-plater' => \$opt{no_plater},
|
||||||
'gui-mode=s' => \$opt{gui_mode},
|
'gui-mode=s' => \$opt{gui_mode},
|
||||||
@ -78,6 +79,7 @@ if (!@ARGV && !$opt{save} && eval "require Slic3r::GUI; 1") {
|
|||||||
$Slic3r::GUI::datadir = $opt{datadir};
|
$Slic3r::GUI::datadir = $opt{datadir};
|
||||||
$Slic3r::GUI::no_plater = $opt{no_plater};
|
$Slic3r::GUI::no_plater = $opt{no_plater};
|
||||||
$Slic3r::GUI::mode = $opt{gui_mode};
|
$Slic3r::GUI::mode = $opt{gui_mode};
|
||||||
|
$Slic3r::GUI::autosave = $opt{autosave};
|
||||||
}
|
}
|
||||||
$gui = Slic3r::GUI->new;
|
$gui = Slic3r::GUI->new;
|
||||||
$gui->{skeinpanel}->load_config_file($_) for @{$opt{load}};
|
$gui->{skeinpanel}->load_config_file($_) for @{$opt{load}};
|
||||||
@ -152,6 +154,7 @@ $j
|
|||||||
GUI options:
|
GUI options:
|
||||||
--no-plater Disable the plater tab
|
--no-plater Disable the plater tab
|
||||||
--gui-mode Overrides the configured mode (simple/expert)
|
--gui-mode Overrides the configured mode (simple/expert)
|
||||||
|
--autosave <file> Automatically export current configuration to the specified file
|
||||||
|
|
||||||
Output options:
|
Output options:
|
||||||
--output-filename-format
|
--output-filename-format
|
||||||
|
Loading…
Reference in New Issue
Block a user