mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
Rufus 4.3 (Build 2090)
* Also fix a CodeQL warning in process.c
This commit is contained in:
parent
8edb487ac9
commit
020e0b7c3a
4 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
|||
o Version 4.3 (2023.10.??)
|
||||
Add support for Rock Ridge symlink preservation when NTFS is used
|
||||
o Version 4.3 (2023.10.19)
|
||||
Add support for Rock Ridge symbolic links preservation when NTFS is used
|
||||
Add an exception to enforce NTFS for Linux Mint's LMDE
|
||||
Add an expert feature to restrict a Windows installation to S Mode
|
||||
Fix persistence support for Debian 12 when booted in BIOS mode
|
||||
|
|
|
@ -114,14 +114,14 @@
|
|||
• Trang web chính thức: https://rufus.ie
|
||||
• Mã nguồn: https://github.com/pbatard/rufus
|
||||
• Nhật ký thay đổi: https://github.com/pbatard/rufus/blob/master/ChangeLog.txt"
|
||||
"ReleaseNotes","3","Text","• Add detection and warning for UEFI revoked bootloaders (including ones revoked through SkuSiPolicy.p7b)
|
||||
• Add ZIP64 support, to extract .zip images that are larger than 4 GB
|
||||
• Add saving and restoring current drive to/from compressed VHDX image
|
||||
• Add saving and restoring current drive to/from compressed FFU (Full Flash Update) image [EXPERIMENTAL]
|
||||
• Fix a crash when trying to open Windows ISOs, with the MinGW compiled x86 32-bit version
|
||||
• Fix an issue where ISOs that contain a boot image with an 'EFI' label are not be detected bootable
|
||||
• Increase the ISO → ESP limit for Debian 12 netinst images
|
||||
• Ensure that the main partition size is aligned to the cluster size",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
"ReleaseNotes","3","Text","• Add support for Rock Ridge symbolic links preservation when NTFS is used
|
||||
• Add an exception to enforce NTFS for Linux Mint's LMDE
|
||||
• Add an expert feature to restrict a Windows installation to S Mode
|
||||
• Fix persistence support for Debian 12 when booted in BIOS mode
|
||||
• Fix a regression that prevented the opening of .vhd images
|
||||
• Update UEFI:NTFS to report a more explicit error on bootmgr security issues
|
||||
• Improve the search for conflicting processes by running it in a background thread
|
||||
• Improve support for Slax Linux",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
"Title","4","Text","Rufus",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
"ShortTitle","5","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
"SortTitle","6","Text","",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
|
||||
|
|
|
|
@ -867,7 +867,7 @@ BOOL SetProcessSearch(DWORD DeviceNum)
|
|||
blocking_process.nVersion[0]++;
|
||||
blocking_process.bActive = TRUE;
|
||||
if (!SetEvent(blocking_process.hStart))
|
||||
uprintf("Could not send start event to process search: %s", WindowsErrorString);
|
||||
uprintf("Could not signal start event to process search: %s", WindowsErrorString());
|
||||
return ReleaseMutex(blocking_process.hLock);
|
||||
}
|
||||
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 232, 326
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_ACCEPTFILES
|
||||
CAPTION "Rufus 4.3.2089"
|
||||
CAPTION "Rufus 4.3.2090"
|
||||
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
|
||||
|
@ -392,8 +392,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 4,3,2089,0
|
||||
PRODUCTVERSION 4,3,2089,0
|
||||
FILEVERSION 4,3,2090,0
|
||||
PRODUCTVERSION 4,3,2090,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -411,13 +411,13 @@ BEGIN
|
|||
VALUE "Comments", "https://rufus.ie"
|
||||
VALUE "CompanyName", "Akeo Consulting"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "4.3.2089"
|
||||
VALUE "FileVersion", "4.3.2090"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2023 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
|
||||
VALUE "OriginalFilename", "rufus-4.3.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "4.3.2089"
|
||||
VALUE "ProductVersion", "4.3.2090"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue