Skip to content

Commit

Permalink
20.04.1-alpha release
Browse files Browse the repository at this point in the history
  • Loading branch information
Anime4000 committed Apr 27, 2020
1 parent 12f17d1 commit 51399b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IFME/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ public frmMain()
InitializeLog();

Icon = Icon.ExtractAssociatedIcon(Assembly.GetExecutingAssembly().Location);
Text = $"{Version.Title} {Version.Release} ( '{Version.CodeName}' )";
Text = $"{Version.Title} {Version.Release}-alpha ( '{Version.CodeName}' )";
FormBorderStyle = FormBorderStyle.Sizable;

bgThread.DoWork += bgThread_DoWork;
bgThread.ProgressChanged += bgThread_ProgressChanged;
bgThread.RunWorkerCompleted += bgThread_RunWorkerCompleted;

try { Directory.Delete(Path.Combine(Path.GetTempPath(), "IFME")); } catch { }
try { Directory.Delete(Path.Combine(Path.GetTempPath(), "IFME"), true); } catch { }
}

private void frmMain_Load(object sender, EventArgs e)
Expand Down Expand Up @@ -1637,7 +1637,7 @@ private void bgThread_DoWork(object sender, DoWorkEventArgs e)
MediaEncoding.Muxing(mq, tses, txtOutputPath.Text);

// Delete Temporary Session Folder
try { Directory.Delete(tses); }
try { Directory.Delete(tses, true); }
catch (Exception ex) { Console2.WriteLine($"[ERR ] {ex.Message}"); }

lstFile.Invoke((MethodInvoker)delegate
Expand Down

0 comments on commit 51399b1

Please sign in to comment.