-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- (Add) Tool - Phased Exposure: Replace "Double Exposure" with "Phased Exposure" tool, same effect but allow to define more steps (#778) - (Fix) Infill: Honeycomb Infill does not completely infill model (#789) - (Improvement) File -> Open recent: Disable all inexistent files (Can no longer be clicked) - (Upgrade) .NET from 6.0.24 to 6.0.25 - (Upgrade) AvaloniaUI from 11.0.5 to 11.0.6
- Loading branch information
Showing
23 changed files
with
995 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,7 @@ | ||
- **FileFormat Anycubic:** | ||
- (Fix) Preview marker size and `PropertyFields` for given file version | ||
- (Fix) Do not cache and reuse layer images if equal on file write, as that is causing "file damage" message (#782, #787) | ||
- **Tools:** | ||
- **Mask:** | ||
- (Improvement) Apply the mask with Multiply instead of BitwiseAnd (#747) | ||
- **Layer and pixel arithmetic**: | ||
- (Improvement) Use the byte scale value (1/255) for multiply operations | ||
- **Infill:** | ||
- (Add) Floor/Ceil thickness (#785) | ||
- (Fix) Remove the debug blocking window when selecting the honeycomb pattern | ||
- (Upgrade) .NET from 6.0.23 to 6.0.24 | ||
- (Add) Tool - Phased Exposure: Replace "Double Exposure" with "Phased Exposure" tool, same effect but allow to define more steps (#778) | ||
- (Fix) Infill: Honeycomb Infill does not completely infill model (#789) | ||
- (Improvement) File -> Open recent: Disable all inexistent files (Can no longer be clicked) | ||
- (Upgrade) .NET from 6.0.24 to 6.0.25 | ||
- (Upgrade) AvaloniaUI from 11.0.5 to 11.0.6 | ||
- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* GNU AFFERO GENERAL PUBLIC LICENSE | ||
* Version 3, 19 November 2007 | ||
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/> | ||
* Everyone is permitted to copy and distribute verbatim copies | ||
* of this license document, but changing it is not allowed. | ||
*/ | ||
using System.Collections.Generic; | ||
using System; | ||
using System.Linq; | ||
|
||
namespace UVtools.Core.Extensions; | ||
|
||
public static class ListExtensions | ||
{ | ||
public static List<T> Clone<T>(this List<T> listToClone) where T : class, ICloneable | ||
{ | ||
return listToClone.Select(item => (T)item.Clone()).ToList(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.