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>2020-05-11 05:30:17 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2020-05-11 05:30:17 +0300
commite756162d7021c1022041c66d22084ec109c0ed57 (patch)
tree9bdc6364664919f154cde2d48d9b6d13443186ef
parentb28bf4ddc1f882fd8af1470c241e3592b3152578 (diff)
v0.3.2 preparev0.3.2
-rw-r--r--CHANGELOG.md2
-rw-r--r--PrusaSL1Reader/FileFormat.cs7
-rw-r--r--PrusaSL1Viewer/FrmLoading.Designer.cs4
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d4362f..075ae24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/PrusaSL1Reader/FileFormat.cs b/PrusaSL1Reader/FileFormat.cs
index 2f3ce37..eaf71ca 100644
--- a/PrusaSL1Reader/FileFormat.cs
+++ b/PrusaSL1Reader/FileFormat.cs
@@ -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;
@@ -475,7 +476,11 @@ namespace PrusaSL1Reader
}
}*/
- if(!Directory.Exists(path)) Directory.CreateDirectory(path);
+ //if (!Directory.Exists(path))
+ //{
+ Directory.CreateDirectory(path);
+ //}
+
if (FileType == FileFormatType.Archive)
{
diff --git a/PrusaSL1Viewer/FrmLoading.Designer.cs b/PrusaSL1Viewer/FrmLoading.Designer.cs
index b187f26..7c8f530 100644
--- a/PrusaSL1Viewer/FrmLoading.Designer.cs
+++ b/PrusaSL1Viewer/FrmLoading.Designer.cs
@@ -53,9 +53,9 @@
this.lbDescription.AutoSize = true;
this.lbDescription.Location = new System.Drawing.Point(3, 12);
this.lbDescription.Name = "lbDescription";
- this.lbDescription.Size = new System.Drawing.Size(35, 13);
+ this.lbDescription.Size = new System.Drawing.Size(60, 13);
this.lbDescription.TabIndex = 1;
- this.lbDescription.Text = "label1";
+ this.lbDescription.Text = "Description";
//
// timer
//