Skip to content

Commit

Permalink
v0.3.2 prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
sn4k3 committed May 11, 2020
1 parent b28bf4d commit e756162
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## ?? - v0.3.2 - Beta
## 11/05/2020 - v0.3.2 - Beta

* (Add) Show layer differences where daker pixels were also present on previous layer and the white pixels the difference between previous and current layer.
* (Add) Layer preview process time in milliseconds
Expand Down
7 changes: 6 additions & 1 deletion PrusaSL1Reader/FileFormat.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* of this license document, but changing it is not allowed.
*/
using System;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.IO.Compression;
Expand Down Expand Up @@ -475,7 +476,11 @@ public virtual void Extract(string path, bool genericConfigExtract = true, bool
}
}*/

if(!Directory.Exists(path)) Directory.CreateDirectory(path);
//if (!Directory.Exists(path))
//{
Directory.CreateDirectory(path);
//}


if (FileType == FileFormatType.Archive)
{
Expand Down
4 changes: 2 additions & 2 deletions PrusaSL1Viewer/FrmLoading.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit e756162

Please sign in to comment.