Skip to content

Commit 69b59ee

Browse files
committed
## 优化
1. 添加 完整日志 选项,大幅提升gui流畅度;
1 parent 13f1b30 commit 69b59ee

3 files changed

Lines changed: 17 additions & 6 deletions

File tree

Form1.Designer.cs

Lines changed: 14 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Form1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ private async Task RunCommandAsync(string command, string workingDirectory = "")
324324
this.Invoke(new Action(() =>
325325
{
326326
string 进度内容 = e.Data + Environment.NewLine;
327-
outputTextBox.AppendText(进度内容);
327+
if(checkBox5.Checked) outputTextBox.AppendText(进度内容);
328328

329329
if (进度内容.Contains("已完成: ") && 进度内容.Contains("%"))
330330
{

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
3333
//通过使用 "*",如下所示:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.0.12")]
36-
[assembly: AssemblyFileVersion("0.1.0.12")]
35+
[assembly: AssemblyVersion("0.1.0.13")]
36+
[assembly: AssemblyFileVersion("0.1.0.13")]

0 commit comments

Comments
 (0)