some text update

This commit is contained in:
supermerill 2020-01-14 18:41:46 +01:00
parent e471ce1239
commit c754ab3883
3 changed files with 17 additions and 16 deletions

View File

@ -32,13 +32,13 @@ The command line interface is a thin wrapper over `libslic3r`.
* Better **Thin walls** (anchored inside the print, no more random bits at the ends). * Better **Thin walls** (anchored inside the print, no more random bits at the ends).
* Options to change holes dimensions and/or geometry, to print them at the right size. * Options to change holes dimensions and/or geometry, to print them at the right size.
* Better overhangs (add perimeters if needed, slice them in opposite direction each layer). * Better overhangs (add perimeters if needed, slice them in opposite direction each layer).
* Briml rework: many more options (inside, outside ounly, 'ears') * Brim rework: many more options (inside, outside ounly, 'ears')
* Some new seam options, to help hide them. * Some new seam options, to help hide them.
* Can join perimeters into a big one to avoid travel moves. * Can join perimeters into a big one to avoid travel moves.
* Many other little options and corrections (like the filled concentric pattern). * Many other little options and corrections (like the filled concentric pattern).
* It has also all the current slic3rPE/PrusaSlicer features. * It has also all the current slic3rPE/PrusaSlicer features.
#### Complete changelog [here](https://github.com/supermerill/Slic3r/wiki) ### Complete changelog [here](https://github.com/supermerill/Slic3r/wiki)
See the wiki for examples. See the wiki for examples.

View File

@ -1,7 +1,7 @@
#logs #logs
page:Perimeters & Shell:shell page:Perimeters & Shell:shell
group:Vertical shells group:Vertical shells
setting:label$perimeters yeah!:width$5:perimeters setting:label$perimeters:perimeters
setting:spiral_vase setting:spiral_vase
recommended_thin_wall_thickness_description recommended_thin_wall_thickness_description
group:Horizontal shells group:Horizontal shells
@ -21,18 +21,18 @@ group:Quality (slower slicing)
setting:thin_perimeters setting:thin_perimeters
line:Thin walls line:Thin walls
setting:thin_walls setting:thin_walls
setting:thin_walls_min_width setting:width$5:thin_walls_min_width
setting:thin_walls_overlap setting:width$5:thin_walls_overlap
end_line end_line
line:Overhangs line:Overhangs
setting:overhangs setting:overhangs
setting:overhangs_width setting:width$5:overhangs_width
end_line end_line
setting:no_perimeter_unsupported_algo setting:no_perimeter_unsupported_algo
group:Advanced group:Advanced
line:Gap Fill line:Gap Fill
setting:gap_fill setting:gap_fill
setting:gap_fill_min_area setting:width$5:gap_fill_min_area
end_line end_line
line:Seam line:Seam
setting:seam_position setting:seam_position
@ -57,15 +57,15 @@ group:Filtering
setting:slice_closing_radius setting:slice_closing_radius
group:Modifying slices group:Modifying slices
line:Curve smoothing line:Curve smoothing
setting:curve_smoothing_precision setting:width$6:curve_smoothing_precision
setting:curve_smoothing_angle_convex setting:width$6:curve_smoothing_angle_convex
setting:curve_smoothing_angle_concave setting:width$6:curve_smoothing_angle_concave
setting:curve_smoothing_cutoff_dist setting:width$6:curve_smoothing_cutoff_dist
end_line end_line
line:XY compensation line:XY compensation
setting:xy_size_compensation setting:width$6:xy_size_compensation
setting:elefant_foot_compensation setting:width$6:elefant_foot_compensation
setting:hole_size_compensation setting:width$6:hole_size_compensation
end_line end_line
setting:hole_to_polyhole setting:hole_to_polyhole
group:Other group:Other

View File

@ -470,7 +470,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("elefant_foot_compensation", coFloat); def = this->add("elefant_foot_compensation", coFloat);
def->label = L("First layer"); def->label = L("First layer");
def->full_label = L("First layer compensation"); def->full_label = L("XY First layer compensation");
def->category = OptionCategory::slicing; def->category = OptionCategory::slicing;
def->tooltip = L("The first layer will be grown / shrunk in the XY plane by the configured value " def->tooltip = L("The first layer will be grown / shrunk in the XY plane by the configured value "
"to compensate for the 1st layer squish aka an Elephant Foot effect. (should be negative = inwards)"); "to compensate for the 1st layer squish aka an Elephant Foot effect. (should be negative = inwards)");
@ -1235,7 +1235,8 @@ void PrintConfigDef::init_fff_params()
def->full_label = L("Ironing width"); def->full_label = L("Ironing width");
def->category = OptionCategory::infill; def->category = OptionCategory::infill;
def->tooltip = L("This is the width of the ironing pass, in a % of the top extrusion width, should not be more than 50%" def->tooltip = L("This is the width of the ironing pass, in a % of the top extrusion width, should not be more than 50%"
" (two times more lines, 50% overlap). It's not necessary to go below 25% (four times more lines, 75% overlap)"); " (two times more lines, 50% overlap). It's not necessary to go below 25% (four times more lines, 75% overlap). \nIf you have problems with your ironing process,"
" don't forget to look at the flow->above bridge flow, as this setting should be set to min 110% to let you have enough plastic in the top layer.");
def->min = 0; def->min = 0;
def->mode = comExpert; def->mode = comExpert;
def->set_default_value(new ConfigOptionFloatOrPercent(50, true)); def->set_default_value(new ConfigOptionFloatOrPercent(50, true));