From d5383826690d31031e42f56a4a06b4525ad4077a Mon Sep 17 00:00:00 2001 From: Henrik Brix Andersen Date: Mon, 26 Mar 2012 22:33:43 +0200 Subject: [PATCH] Use correct spelling for G-code. --- README.markdown | 4 ++-- lib/Slic3r/Config.pm | 8 ++++---- lib/Slic3r/GUI/SkeinPanel.pm | 6 +++--- lib/Slic3r/Skein.pm | 4 ++-- slic3r.pl | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.markdown b/README.markdown index c5b3945f..6d428508 100644 --- a/README.markdown +++ b/README.markdown @@ -36,7 +36,7 @@ Slic3r current key features are: * center print around bed center point; * multiple solid layers near horizontal external surfaces; * ability to scale, rotate and duplicate input object; -* customizable initial and final GCODE; +* customizable initial and final G-code; * support material; * cooling and fan control; * use different speed for bottom layer and perimeters. @@ -108,7 +108,7 @@ The author is Alessandro Ranellucci (me). by all firmwares) --g0 Use G0 commands for retraction (experimental, not supported by all firmwares) - --gcode-comments Make GCODE verbose by adding comments (default: no) + --gcode-comments Make G-code verbose by adding comments (default: no) Filament options: --filament-diameter Diameter in mm of your raw filament (default: 3) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index c760ad9c..b879777a 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -63,7 +63,7 @@ our $Options = { type => 'f', }, 'gcode_arcs' => { - label => 'Use native GCODE arcs', + label => 'Use native G-code arcs', cli => 'gcode-arcs', type => 'bool', }, @@ -250,7 +250,7 @@ our $Options = { labels => [qw(Primary Secondary)], }, 'start_gcode' => { - label => 'Start GCODE', + label => 'Start G-code', cli => 'start-gcode=s', type => 's', multiline => 1, @@ -260,7 +260,7 @@ our $Options = { deserialize => sub { join "\n", split /\\n/, $_[0] }, }, 'end_gcode' => { - label => 'End GCODE', + label => 'End G-code', cli => 'end-gcode=s', type => 's', multiline => 1, @@ -270,7 +270,7 @@ our $Options = { deserialize => sub { join "\n", split /\\n/, $_[0] }, }, 'layer_gcode' => { - label => 'Layer Change GCODE', + label => 'Layer Change G-code', cli => 'layer-gcode=s', type => 's', multiline => 1, diff --git a/lib/Slic3r/GUI/SkeinPanel.pm b/lib/Slic3r/GUI/SkeinPanel.pm index 8972190b..15232c2a 100644 --- a/lib/Slic3r/GUI/SkeinPanel.pm +++ b/lib/Slic3r/GUI/SkeinPanel.pm @@ -63,7 +63,7 @@ sub new { options => [qw(scale rotate duplicate_x duplicate_y duplicate_distance)], }, gcode => { - title => 'Custom GCODE', + title => 'Custom G-code', options => [qw(start_gcode end_gcode layer_gcode gcode_comments post_process)], }, extrusion => { @@ -120,7 +120,7 @@ sub new { $tabpanel->AddPage($tabs[0], "Print Settings"); $tabpanel->AddPage($tabs[1], "Cooling"); $tabpanel->AddPage($tabs[2], "Printer and Filament"); - $tabpanel->AddPage($tabs[3], "Start/End GCODE"); + $tabpanel->AddPage($tabs[3], "Custom G-code"); $tabpanel->AddPage($tabs[4], "Notes"); $tabpanel->AddPage($tabs[5], "Advanced"); @@ -160,7 +160,7 @@ sub new { my $model_wildcard = "STL files (*.stl)|*.stl;*.STL|AMF files (*.amf)|*.amf;*.AMF;*.xml;*.XML"; my $ini_wildcard = "INI files *.ini|*.ini;*.INI"; -my $gcode_wildcard = "GCODE files *.gcode|*.gcode;*.GCODE"; +my $gcode_wildcard = "G-code files *.gcode|*.gcode;*.GCODE"; sub do_slice { my $self = shift; diff --git a/lib/Slic3r/Skein.pm b/lib/Slic3r/Skein.pm index 32ad50d2..4930d716 100644 --- a/lib/Slic3r/Skein.pm +++ b/lib/Slic3r/Skein.pm @@ -133,9 +133,9 @@ sub go { $self->status_cb->(88, "Generating skirt"); $print->extrude_skirt; - # output everything to a GCODE file + # output everything to a G-code file my $output_file = $self->expanded_output_filepath; - $self->status_cb->(90, "Exporting GCODE to $output_file"); + $self->status_cb->(90, "Exporting G-code to $output_file"); $print->export_gcode($output_file); # run post-processing scripts diff --git a/slic3r.pl b/slic3r.pl index 5bf6b778..820f23f6 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -131,7 +131,7 @@ Usage: slic3r.pl [ OPTIONS ] file.stl by all firmwares) --g0 Use G0 commands for retraction (experimental, not supported by all firmwares) - --gcode-comments Make GCODE verbose by adding comments (default: no) + --gcode-comments Make G-code verbose by adding comments (default: no) Filament options: --filament-diameter Diameter in mm of your raw filament (default: $Slic3r::filament_diameter)