Skip to content

Commit

Permalink
Final v2.8.3 commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tedsmith committed Aug 8, 2017
1 parent 3092bc6 commit dabedcc
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
Binary file modified UserManual.odt
Binary file not shown.
Binary file modified UserManual.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions project1.lpr
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
{$R *.res}

begin
Application.Title:='QuickHash';
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.CreateForm(TfrmDisplayGrid1, frmDisplayGrid1);
Expand Down
4 changes: 2 additions & 2 deletions unit2.lfm
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object MainForm: TMainForm
Left = 353
Left = 342
Height = 714
Top = 107
Top = 73
Width = 1018
AllowDropFiles = True
Caption = 'QuickHash v2.8.3 - The easy and convenient way to hash data in Linux, OSX and Windows'
Expand Down
4 changes: 4 additions & 0 deletions unit2.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2691,6 +2691,7 @@ procedure TMainForm.Button8CopyAndHashClick(Sender: TObject);
lblTimeTaken6C.Caption := '...';
pbCopy.Position := 0;
LoopCounter := 0;
Button8CopyAndHash.Enabled := false; // disable the go button until finished
Application.ProcessMessages;

// First, wait for the scheduler time to arrive, if set by the user
Expand All @@ -2699,6 +2700,7 @@ procedure TMainForm.Button8CopyAndHashClick(Sender: TObject);
if ZVDateTimePickerCopyTab.DateTime < Now then
begin
ShowMessage('Scheduled start time is in the past. Correct it.');
Button8CopyAndHash.Enabled := true;
exit;
end
else
Expand Down Expand Up @@ -2736,6 +2738,7 @@ procedure TMainForm.Button8CopyAndHashClick(Sender: TObject);
end
else
begin
Button8CopyAndHash.Enabled := false;
{$ifdef Windows}
// If chosen source path is a UNC path, we need to append the UNC prefix to the
// Unicode 32K long API call of \\?\
Expand Down Expand Up @@ -2777,6 +2780,7 @@ procedure TMainForm.Button8CopyAndHashClick(Sender: TObject);
// give ProcessDir function the first folder name in the list for now...
// ProcessDir will then do the itterations itself using the same stringlist
SourceDir := slMultipleDirNames.Strings[0];
Button8CopyAndHash.Enabled := false;
// Now process the chosen folders
ProcessDir(SourceDir);
end
Expand Down

0 comments on commit dabedcc

Please sign in to comment.