- (Upgrade) AvaloniaUI from 0.10.5 to 0.10.6
- (Add) Pixel editor - Text: Allow multi-line text and line alignment modes
This commit is contained in:
Tiago Conceição
2021-06-06 01:26:59 +01:00
parent 0321ec746d
commit 98b7c01df8
40 changed files with 998 additions and 383 deletions
+2 -4
View File
@@ -13,10 +13,8 @@ namespace UVtools.Core.Objects
// Compute the file's hash.
public static byte[] GetHashSha256(string filename)
{
using (var stream = File.OpenRead(filename))
{
return Sha256.ComputeHash(stream);
}
using var stream = File.OpenRead(filename);
return Sha256.ComputeHash(stream);
}
}
}