mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-09 01:52:32 +02:00
v2.24.4
- **File - Send to - Device** - (Add) Progress with the transfered megabyte(s) and allow to cancel the transfer - (Add) It will prompt for drive ejection [Configurable - On by default] [Windows only] (#340) - (Fix) PhotonS: Some slicers will not fill the pixel RLE to the end when the remaining pixels are trailing black, this was triggering error on read because data checksum was incomplete, ignoring checksum now (#344)
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
# Changelog
|
||||
|
||||
## 14/11/2021 - v2.24.4
|
||||
|
||||
- **File - Send to - Device**
|
||||
- (Add) Progress with the transfered megabyte(s) and allow to cancel the transfer
|
||||
- (Add) It will prompt for drive ejection [Configurable - On by default] [Windows only] (#340)
|
||||
- (Fix) PhotonS: Some slicers will not fill the pixel RLE to the end when the remaining pixels are trailing black, this was triggering error on read because data checksum was incomplete, ignoring checksum now (#344)
|
||||
|
||||
## 12/11/2021 - v2.24.3
|
||||
|
||||
- (Upgrade) .NET from 5.0.11 to 5.0.12
|
||||
|
||||
@@ -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>2.24.3</Version>
|
||||
<Version>2.24.4</Version>
|
||||
<Copyright>Copyright © 2020 PTRTECH</Copyright>
|
||||
<PackageIcon>UVtools.png</PackageIcon>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
|
||||
@@ -12,7 +12,6 @@ using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
using Avalonia;
|
||||
using Avalonia.Controls.ApplicationLifetimes;
|
||||
using Avalonia.Markup.Xaml;
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
using System;
|
||||
/*
|
||||
* 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;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Threading;
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
||||
<RepositoryUrl>https://github.com/sn4k3/UVtools</RepositoryUrl>
|
||||
<RepositoryType>Git</RepositoryType>
|
||||
<Version>2.24.3</Version>
|
||||
<Version>2.24.4</Version>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
|
||||
@@ -34,6 +34,7 @@ Set-Location $PSScriptRoot\..
|
||||
####################################
|
||||
$enableMSI = $true
|
||||
#$buildOnly = 'win-x64'
|
||||
#$buildOnly = 'linux-x64'
|
||||
#$buildOnly = 'osx-x64'
|
||||
$enableNugetPublish = $true
|
||||
# Profilling
|
||||
|
||||
Reference in New Issue
Block a user