You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed Encrypt/Decrypt not working unless DevForm has been opened atleast once and changed progress bars to include text
- Added text to progress bars to better show progress
- Changed BackgroundWorkers for Threads
- Updated built-in CLI support to reflect the recent FileAES-CLI updates
- Fixed Encrypt/Decrypt not working unless DevForm has been opened atleast once
Copy file name to clipboardExpand all lines: FileAES/MainForm.cs
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,8 @@
1
1
usingFAES;
2
+
usingFAES_GUI.CustomControls;
2
3
usingSystem;
3
4
usingSystem.Drawing;
5
+
usingSystem.Threading;
4
6
usingSystem.Windows.Forms;
5
7
6
8
namespaceFAES_GUI
@@ -19,6 +21,10 @@ public MainForm(FAES_File faesFile = null)
19
21
titleLabel.Text+=Program.GetVersion();
20
22
this.Text=titleLabel.Text;
21
23
24
+
// Hacky solution to the RichTextBox Console.SetOut causing issues if the DevForm is not opened at least once before encryption/decryption (otherwise it hangs)
0 commit comments