- (Add) Export layers to heatmap: Mirror and rotate options
- (Improvement) Export layers to image, GIF and heatmap: Auto select the flip method based on sliced file mirror information, it will output images in thier original form/orientation
- (Add) File formats properties:
- `DisplayDiagonal`: Display diagonal size in millimeters
- `DisplayDiagonalInches`: Display diagonal size in inches
- `DisplayAspectRatio`: Display aspect ratio
- (Add) Detect incorrect image ratio upon file load and warn user about it
- **(Improvement) SL1:** (#314)
- Complete the SL1 file format with some defaults for convertions
- Change some data types from bool to byte as in recent prusaslicer changes
- (Upgrade) .NET from 5.0.10 to 5.0.11
- (Upgrade) AvaloniaUI from 0.10.7 to 0.10.8
- (Fix) PWS, PW0, PWM, PWMX, PWMO, PWMS: Incorrect set of layer height for the layer definition when using same positioned layers
- **Pixel arithmetic**
- (Add) Apply to - Model surface: Apply only to model surface/visible pixels
- (Add) Apply to - Model surface & inset: Apply only to model surface/visible pixels and within a inset from walls
- (Add) Preset: Fuzy skin
- (Improvement) Speed up the Corrode method
- (Change) Heal anti-aliasing threshold from 169 to 119
- **Calibration - Grayscale:**
- (Add) Enable or disable text
- (Fix) Calibration - Grayscale: Crash program when redo (Ctrl+Z)
- (Change) Some defaults to better values
- (Fix) Layer arithmetic: Crash program when redo (Ctrl+Z)
- (Add) Apply to - Model surface: Apply only to model surface/visible pixels
- (Add) Apply to - Model surface & inset: Apply only to model surface/visible pixels and within a inset from walls
- (Improvement) Speed up the Corrode apply method
- **Pixel arithmetic**
- (Add) Corrode: Random dithering, use for eliminating visual prominence of layer lines. Can also be used to add a microtexture to enhance paint bonding (#307)
- (Add) Ignore areas smaller or larger than an threshold
- (Add) Preset - Heal anti-aliasing: Discard uncured faded pixels and turn them into solid black (0)
- (Fix) Resin traps: Discard traps with drain holes directly on first layer / build plate
- (Fix) The setting 'Auto flip layer on file load' is not respected when off
Added switch to random offset as it smooths the diffusion service by
leveraging grey values.
Added UI, preserves void option duplicates the "model only" option but
is significantly faster as it avoid the calculation for void voxels.
Incorporated crypto random and using spans for array access based on PR feedback.
- **Issues:**
- (Add) Suction cups: Additional setting to specify the required minimum height to be flagged as a issue (#302)
- (Change) Allow touching bounds to have a bounding rectangle and zoom into the issue
- (Change) Disable the ability to copy issues row text from list as this is crashing the program
- (Change) Decrease cache count of the layers from x10 to x5 to free RAM
- (Fix) Touching bounds are reporting areas of 0
- (Fix) Draw crosshair for issues are called multiple times
- (Fix) Detection error when resin traps are enabled on some cases (#303)
- (Fix) Resin trap false-positives (#305)
- (Fix) When removing multiple islands at once only the first is cleared from the issue list
- **UI:**
- (Change) Tool - Resize icon
- (Change) Move "Crosshairs" button inside "Issues" button
- (Add) Tool - Morph - Offset crop: Like erode but discards the outer pixels
- (Fix) Corrected bottom lift unit label in light-off delay calculator (#304)
- (Change) Allow touching bounds to have a bounding rectangle and zoom into the issue
- (Fix) Touching bounds are reporting areas of 0
- (Fix) Draw crosshair for issues are called multiple times
- (Fix) Issue:Equals
Both the repair operation as well as the deletion of an issue will now leverage common code for executing a repair. Repair operation will repair all suction cups, and deleting a specific suction cup will only repair that one.
- Issues:
- (Add) Suction cups: Add a auto repair feature for this issues by drill a vertical vent hole (#296)
- (Add) Layer issue track bar: Colorize the issue tracker map with it own colors (Configurable)
- (Add) Allow to group issues by type and/or layer
- (Improvement) Order issues by area in descending order
- (Improvement) Always bring the selected issue into view on the list
- (Fix) When manually removing a issue from the list, it will no longer reselect other and make the user lost track of the remove issue
- (Fix) Allow to ignore all issue type
- (Fix) Material ml calculation was calculating a bad value for PhotonWorkshop files
This commit removes the Parent/Child issue structures that were added to Issue, and instead opts for a more lean approach to determining the layers affected by an operation. Instead of building out the entire parent/child tree for ever single suction cup issue, we know only calculate what we need when we need it.
During a repair operation, we calculate only the suction cup issues that have no overlapping suction cup issue below it. For "delete issue" behavior we only calculate the suction cup issues that overlap the selected on in both directions (following that direction until no more overlaps are found).
You can now remove suction cups from the reported issues. It will remove the selected issue as well as any others that are connected. This will allow for users to remove suction cup issues they do not wish to be fixed via auto repair (when available).