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>2022-08-30 21:08:15 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2022-08-30 21:08:15 +0300
commit9b2cb427a5f87790f5e5dcbe33c3fce3d4f20396 (patch)
tree7e35ad6ab1974cb12291aeee0e46021d58717786
parent94aae77bb53d0225db8d0504f8b946f26cc25d74 (diff)
v3.6.3v3.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)
-rw-r--r--CHANGELOG.md14
-rw-r--r--RELEASE_NOTES.md16
-rw-r--r--UVtools.Core/UVtools.Core.csproj2
-rw-r--r--UVtools.InstallerMM/UVtools.InstallerMM.wxs2
-rw-r--r--UVtools.WPF/UVtools.WPF.csproj8
5 files changed, 31 insertions, 11 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c258400..cc54720 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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)
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md
index 1d470b9..e8e3896 100644
--- a/RELEASE_NOTES.md
+++ b/RELEASE_NOTES.md
@@ -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)
diff --git a/UVtools.Core/UVtools.Core.csproj b/UVtools.Core/UVtools.Core.csproj
index ad1e2e3..691b7bd 100644
--- a/UVtools.Core/UVtools.Core.csproj
+++ b/UVtools.Core/UVtools.Core.csproj
@@ -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>
diff --git a/UVtools.InstallerMM/UVtools.InstallerMM.wxs b/UVtools.InstallerMM/UVtools.InstallerMM.wxs
index a2ed90d..34d8d28 100644
--- a/UVtools.InstallerMM/UVtools.InstallerMM.wxs
+++ b/UVtools.InstallerMM/UVtools.InstallerMM.wxs
@@ -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">
diff --git a/UVtools.WPF/UVtools.WPF.csproj b/UVtools.WPF/UVtools.WPF.csproj
index 4764524..e776d8e 100644
--- a/UVtools.WPF/UVtools.WPF.csproj
+++ b/UVtools.WPF/UVtools.WPF.csproj
@@ -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>