Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2020-12-04 04:00:37 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-12-04 04:00:37 +0300
commit5c5670f0b123c98ec2a343caf84fa0a96fd2eac1 (patch)
tree58d58283b16542a334a31932af80de82730ed895 /UVtools.GUI
parent7a5c9061ed3bb50b074fc516909774fc391631e3 (diff)
v1.3.5v1.3.5
* (Add) Pixel Dimming: Chamfer - Allow the number of walls pixels to be gradually varied as the operation progresses from the starting layer to the ending layer (#106) * (Add) PrusaSlicer print profiles: 0.01, 0.02, 0.03, 0.04, 0.15, 0.2 * (Change) Morph: "Fade" to "Chamfer" naming, created profiles need redo * (Change) Pixel Dimming: Allow start with 0px walls when using "Walls Only" * (Change) PrusaSlicer print profiles names, reduced bottom layers and raft height * (Remove) PrusaSlicer print profiles with 3 digit z precision (0.025 and 0.035) * (Fix) PW0, PWS, PWMX, PWMO, PWMS, PWX file formats, where 4 offsets (16 bytes) were missing on preview image, leading to wrong table size. Previous converted files with UVtools wont open from now on, you need to reconvert them. (ezrec/uv3dp#124) * (Fix) Unable to run Re-Height tool due a rounding problem on some cases (#101) * (Fix) Layer preview end with exception when no per layer settings are available (SL1 case)
Diffstat (limited to 'UVtools.GUI')
-rw-r--r--UVtools.GUI/Controls/Tools/CtrlToolMorph.cs2
-rw-r--r--UVtools.GUI/Controls/Tools/CtrlToolPixelDimming.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.GUI/Controls/Tools/CtrlToolMorph.cs b/UVtools.GUI/Controls/Tools/CtrlToolMorph.cs
index 991f382..84f38a7 100644
--- a/UVtools.GUI/Controls/Tools/CtrlToolMorph.cs
+++ b/UVtools.GUI/Controls/Tools/CtrlToolMorph.cs
@@ -36,7 +36,7 @@ namespace UVtools.GUI.Controls.Tools
base.UpdateOperation();
Operation.IterationsStart = (uint) nmIterationsStart.Value;
Operation.IterationsEnd = (uint) nmIterationsEnd.Value;
- Operation.FadeInOut = cbIterationsFade.Checked;
+ Operation.Chamfer = cbIterationsFade.Checked;
Operation.MorphOperation = (MorphOp)((StringTag) cbMorphOperation.SelectedItem).Tag;
Operation.Kernel.Anchor = ctrlKernel.KernelAnchor;
Operation.Kernel.Matrix = ctrlKernel.GetMatrix();
diff --git a/UVtools.GUI/Controls/Tools/CtrlToolPixelDimming.cs b/UVtools.GUI/Controls/Tools/CtrlToolPixelDimming.cs
index f9cfbf3..0b22734 100644
--- a/UVtools.GUI/Controls/Tools/CtrlToolPixelDimming.cs
+++ b/UVtools.GUI/Controls/Tools/CtrlToolPixelDimming.cs
@@ -43,7 +43,7 @@ namespace UVtools.GUI.Controls.Tools
public override bool UpdateOperation()
{
base.UpdateOperation();
- Operation.WallThickness = (uint) nmBorderSize.Value;
+ Operation.WallThicknessStart = (uint) nmBorderSize.Value;
Operation.WallsOnly = cbDimsOnlyBorders.Checked;