Skip to content

Commit

Permalink
1.00.04 버전릴리즈
Browse files Browse the repository at this point in the history
  • Loading branch information
gisellevonbingen committed Apr 3, 2019
1 parent a700f67 commit 33fdd52
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
11 changes: 8 additions & 3 deletions Forms/DoujinshiDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
using Giselle.Commons;
using Giselle.DoujinshiDownloader.Doujinshi;
using Giselle.DoujinshiDownloader.Forms;
using Giselle.DoujinshiDownloader.Forms.Utils;
using Giselle.DoujinshiDownloader.Resources;
using Giselle.DoujinshiDownloader.Schedulers;
using Giselle.DoujinshiDownloader.Utils;
Expand Down Expand Up @@ -96,10 +97,14 @@ public void ShowCrashMessageBox(Exception exception)
{
var file = this.DumpCrashMessage(exception);

using (var form = new CrashReportForm(file, exception))
ControlUtils.InvokeIfNeed(this.MainForm, () =>
{
form.ShowDialog();
}
using (var form = new CrashReportForm(file, exception))
{
form.ShowDialog();
}

});

}

Expand Down
4 changes: 2 additions & 2 deletions Forms/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호가 자동으로
// 지정되도록 할 수 있습니다.
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.3")]
[assembly: AssemblyFileVersion("1.0.0.3")]
[assembly: AssemblyVersion("1.0.0.4")]
[assembly: AssemblyFileVersion("1.0.0.4")]
2 changes: 1 addition & 1 deletion Forms/Schedulers/DownloadTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void RequireState(TaskState require)

if (state != require)
{
throw new TaskInvalidStateException($"Task state is alray [{state}]");
throw new TaskInvalidStateException($"Task state is already [{state}]");
}

}
Expand Down

0 comments on commit 33fdd52

Please sign in to comment.