mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-23 11:17:03 -04:00
[ui] add experimental optional display of transfer speed and time remaining
* You can use <Alt> to switch modes during an operation that supports it (e.g. Checksum computation, DD image writing or zeroing, save to VHD, download, etc. * IMPORTANT: This is *NOT* available for all operations. Especially, if you were hoping to get transfer speed or ETA during ISO or WIM extraction, you *WILL* be disappointed. * Also harmonize the code in checksum.c
This commit is contained in:
parent
94e2015edf
commit
af95de8198
16 changed files with 525 additions and 430 deletions
|
@ -219,7 +219,7 @@ BOOL InstallSyslinux(DWORD drive_index, char drive_letter, int file_system)
|
|||
|
||||
uprintf("Successfully wrote '%s'", &path[3]);
|
||||
if (boot_type != BT_IMAGE)
|
||||
UpdateProgress(OP_DOS, -1.0f);
|
||||
UpdateProgress(OP_FILE_COPY, -1.0f);
|
||||
|
||||
/* Now flush the media */
|
||||
if (!FlushFileBuffers(f_handle)) {
|
||||
|
@ -380,7 +380,7 @@ BOOL InstallSyslinux(DWORD drive_index, char drive_letter, int file_system)
|
|||
}
|
||||
|
||||
if (boot_type != BT_IMAGE)
|
||||
UpdateProgress(OP_DOS, -1.0f);
|
||||
UpdateProgress(OP_FILE_COPY, -1.0f);
|
||||
|
||||
r = TRUE;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue