mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
v3.6.3
- **File formats:**
- **Anycubic file format:**
- (Add) Compatibility with the next version 517 of the format
- (Improvement) Discovered and implemented more unknown fields
- (Improvement) Dispose layer RLE bytes after encoding
- (Fix) When creating or converting to anycubic file, it don't set the extra table mark name
- (Fix) Only attempt to activate the advanced mode (TSMC) when the BottomLiftHeight2 or LiftHeight2 gets changed
- (Add) Methods: `OnBeforeEncode` and `OnAfterEncode`
- (Improvement) `IsUsingTSMC` now also checks for BottomLiftHeight2 and BottomRetractHeight2
- (Fix) OSF: Can't decode some files
- (Fix) Undo cause application to crash (#543)
This commit is contained in:
@@ -1,5 +1,19 @@
|
||||
# Changelog
|
||||
|
||||
## 30/08/2022 - v3.6.3
|
||||
|
||||
- **File formats:**
|
||||
- **Anycubic file format:**
|
||||
- (Add) Compatibility with the next version 517 of the format
|
||||
- (Improvement) Discovered and implemented more unknown fields
|
||||
- (Improvement) Dispose layer RLE bytes after encoding
|
||||
- (Fix) When creating or converting to anycubic file, it don't set the extra table mark name
|
||||
- (Fix) Only attempt to activate the advanced mode (TSMC) when the BottomLiftHeight2 or LiftHeight2 gets changed
|
||||
- (Add) Methods: `OnBeforeEncode` and `OnAfterEncode`
|
||||
- (Improvement) `IsUsingTSMC` now also checks for BottomLiftHeight2 and BottomRetractHeight2
|
||||
- (Fix) OSF: Can't decode some files
|
||||
- (Fix) Undo cause application to crash (#543)
|
||||
|
||||
## 21/08/2022 - v3.6.2
|
||||
|
||||
- (Add) Debug sub menu to test some behaviours (Only when compiled in debug mode, not visible on public release)
|
||||
|
||||
+11
-5
@@ -1,6 +1,12 @@
|
||||
- (Add) Debug sub menu to test some behaviours (Only when compiled in debug mode, not visible on public release)
|
||||
- (Add) Utility method `LayerExists` to the file formats to know if specific layer index exists in the collection
|
||||
- (Improvement) Add loaded file information to the crash dialog message
|
||||
- (Fix) Message dialog height do not expand with text (#537)
|
||||
- (Fix) Crash when all layers get removed and UI attempt to show a layer (#538)
|
||||
- **File formats:**
|
||||
- **Anycubic file format:**
|
||||
- (Add) Compatibility with the next version 517 of the format
|
||||
- (Improvement) Discovered and implemented more unknown fields
|
||||
- (Improvement) Dispose layer RLE bytes after encoding
|
||||
- (Fix) When creating or converting to anycubic file, it don't set the extra table mark name
|
||||
- (Fix) Only attempt to activate the advanced mode (TSMC) when the BottomLiftHeight2 or LiftHeight2 gets changed
|
||||
- (Add) Methods: `OnBeforeEncode` and `OnAfterEncode`
|
||||
- (Improvement) `IsUsingTSMC` now also checks for BottomLiftHeight2 and BottomRetractHeight2
|
||||
- (Fix) OSF: Can't decode some files
|
||||
- (Fix) Undo cause application to crash (#543)
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
|
||||
<PackageProjectUrl>https://github.com/sn4k3/UVtools</PackageProjectUrl>
|
||||
<Description>MSLA/DLP, file analysis, calibration, repair, conversion and manipulation</Description>
|
||||
<Version>3.6.2</Version>
|
||||
<Version>3.6.3</Version>
|
||||
<Copyright>Copyright © 2020 PTRTECH</Copyright>
|
||||
<PackageIcon>UVtools.png</PackageIcon>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<?define ComponentRules="OneToOne"?>
|
||||
<!-- SourceDir instructs IsWiX the location of the directory that contains files for this merge module -->
|
||||
<?define SourceDir="..\publish\UVtools_win-x64_v3.6.2"?>
|
||||
<?define SourceDir="..\publish\UVtools_win-x64_v3.6.3"?>
|
||||
<Module Id="UVtools" Language="1033" Version="1.0.0.0">
|
||||
<Package Id="12aaa1cf-ff06-4a02-abd5-2ac01ac4f83b" Manufacturer="PTRTECH" InstallerVersion="200" Keywords="MSLA, DLP" Description="MSLA/DLP, file analysis, repair, conversion and manipulation" InstallScope="perMachine" Platform="x64" />
|
||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
|
||||
<RepositoryType>Git</RepositoryType>
|
||||
<Version>3.6.2</Version>
|
||||
<Version>3.6.3</Version>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
<PackageIcon>UVtools.png</PackageIcon>
|
||||
<PackageReadmeFile>README.md</PackageReadmeFile>
|
||||
@@ -44,9 +44,9 @@
|
||||
<PackageReference Include="Avalonia.Desktop" Version="0.10.18" />
|
||||
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.18" />
|
||||
<PackageReference Include="MessageBox.Avalonia" Version="2.1.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia" Version="5.3.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="5.3.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia.MaterialDesign" Version="5.3.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia" Version="5.4.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia.FontAwesome" Version="5.4.0" />
|
||||
<PackageReference Include="Projektanker.Icons.Avalonia.MaterialDesign" Version="5.4.0" />
|
||||
<PackageReference Include="ThemeEditor.Controls.ColorPicker" Version="0.10.17" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user