1
1
Fork 0
mirror of https://github.com/pbatard/rufus.git synced 2024-08-14 23:57:05 +00:00

update UEFI:NTFS file system drivers to version 1.7

This commit is contained in:
Pete Batard 2020-11-19 20:12:04 +00:00
parent 630c508525
commit 58edfc9d54
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
4 changed files with 8 additions and 7 deletions

View file

@ -3,10 +3,11 @@ o Version 3.13 (2020.11.??)
Add marquee operation progress to the taskbar icon Add marquee operation progress to the taskbar icon
Add zeroing/image writing progress to the log Add zeroing/image writing progress to the log
Switch to using 0x55 and 0xAA instead of 0x00 and 0xFF for low pass badblock check Switch to using 0x55 and 0xAA instead of 0x00 and 0xFF for low pass badblock check
Switch to using fake/maufacturer units when computing the default label Switch to using fake/manufacturer units when computing the default label
Fix overnumerous write retries on error when writing a disk image Fix overnumerous write retries on error when writing a disk image
Work around Windows' abysmal handling of removable drives that contain an ESP Work around Windows' abysmal handling of removable drives that contain an ESP
Improve mounting/unmounting of volumes Improve mounting/unmounting of volumes
Update UEFI:NTFS file system drivers to version 1.7
Other internal fixes and improvements (VDS, error reporting, etc.) Other internal fixes and improvements (VDS, error reporting, etc.)
o Version 3.12 (2020.10.14) o Version 3.12 (2020.10.14)

View file

@ -7,7 +7,7 @@ This image, which you can mount as FAT filesystem or open in 7-zip, contains
the following data: the following data:
o The NTFS and exFAT UEFI drivers from EfiFs (https://github.com/pbatard/efifs). o The NTFS and exFAT UEFI drivers from EfiFs (https://github.com/pbatard/efifs).
These are the \EFI\Rufus\[exfat|ntfs]_[ia32|x64|arm|aa64].efi files, which are These are the \EFI\Rufus\[exfat|ntfs]_[ia32|x64|arm|aa64].efi files, which are
identical to the v1.6 EfiFs binaries published at https://efi.akeo.ie. identical to the v1.7 EfiFs binaries published at https://efi.akeo.ie.
o The UEFI:NTFS binaries (https://github.com/pbatard/uefi-ntfs), which were o The UEFI:NTFS binaries (https://github.com/pbatard/uefi-ntfs), which were
compiled using Visual Studio 2019 Community Edition. compiled using Visual Studio 2019 Community Edition.
These are the \EFI\Boot\boot[ia32|x64|arm|aa64].efi files. These are the \EFI\Boot\boot[ia32|x64|arm|aa64].efi files.

Binary file not shown.

View file

@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDD_DIALOG DIALOGEX 12, 12, 232, 326 IDD_DIALOG DIALOGEX 12, 12, 232, 326
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_ACCEPTFILES EXSTYLE WS_EX_ACCEPTFILES
CAPTION "Rufus 3.13.1728" CAPTION "Rufus 3.13.1729"
FONT 9, "Segoe UI Symbol", 400, 0, 0x0 FONT 9, "Segoe UI Symbol", 400, 0, 0x0
BEGIN BEGIN
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
@ -395,8 +395,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 3,13,1728,0 FILEVERSION 3,13,1729,0
PRODUCTVERSION 3,13,1728,0 PRODUCTVERSION 3,13,1729,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -414,13 +414,13 @@ BEGIN
VALUE "Comments", "https://rufus.ie" VALUE "Comments", "https://rufus.ie"
VALUE "CompanyName", "Akeo Consulting" VALUE "CompanyName", "Akeo Consulting"
VALUE "FileDescription", "Rufus" VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "3.13.1728" VALUE "FileVersion", "3.13.1729"
VALUE "InternalName", "Rufus" VALUE "InternalName", "Rufus"
VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)" VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)"
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
VALUE "OriginalFilename", "rufus-3.13.exe" VALUE "OriginalFilename", "rufus-3.13.exe"
VALUE "ProductName", "Rufus" VALUE "ProductName", "Rufus"
VALUE "ProductVersion", "3.13.1728" VALUE "ProductVersion", "3.13.1729"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"