Skip to content

Commit 2414335

Browse files
committed
[misc] update ChangeLog for BETA
* Also remove some TODOs we don't plan to address.
1 parent a4f0e87 commit 2414335

4 files changed

Lines changed: 19 additions & 7 deletions

File tree

ChangeLog.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
o Version 4.14 (2026.04.??)
2+
Windows User Experience improvements:
3+
- Add a "Quality of Life" option, to disable Teams, Outlook, Copilot and other Microsoft forced nuisances
4+
- Add a Silent installation option, that automatically, and WITHOUT PROMPT, installs Windows on the first detected disk
5+
- Add an option to copy 'SkuSiPolicy.p7b' to the ESP on installation (refer to KB5042562)
6+
- Add tooltips for all the dialog options
7+
Add limited support for El-Torito UEFI image extraction (Mostly for Dell BIOS update ISOs)
8+
Improve error report when the user tries to use an image that resides on the target drive
9+
Improve the UEFI:NTFS partition label to make the install media more explicit during disk partitioning
10+
Improve support for Bazzite and other Fedora derivatives that don't follow EFI conventions
11+
Improve detection and exclusion of the new Bitdefender hidden VHDs
12+
Fix potential errors during creation of Windows To Go media, due to the use of new versions of bcdboot
13+
Fix errors with local accounts that start or end with whitespaces
14+
115
o Version 4.13 (2026.02.17) [BUGFIX RELEASE]
216
Fix UEFI:NTFS not selecting the proper driver for ARM/ARM64
317
Update embedded GRUB to v2.14

src/iso.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2065,7 +2065,6 @@ BOOL DumpFatDir(void* iso, const char* path, int32_t cluster)
20652065
return ret;
20662066
}
20672067

2068-
// TODO: If we can't get save to ISO from virtdisk, we might as well drop this
20692068
static DWORD WINAPI OpticalDiscSaveImageThread(void* param)
20702069
{
20712070
BOOL s;

src/rufus.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
3333
IDD_DIALOG DIALOGEX 12, 12, 232, 326
3434
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
3535
EXSTYLE WS_EX_ACCEPTFILES
36-
CAPTION "Rufus 4.14.2371"
36+
CAPTION "Rufus 4.14.2372"
3737
FONT 9, "Segoe UI Symbol", 400, 0, 0x0
3838
BEGIN
3939
LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP
@@ -409,8 +409,8 @@ END
409409
//
410410

411411
VS_VERSION_INFO VERSIONINFO
412-
FILEVERSION 4,14,2371,0
413-
PRODUCTVERSION 4,14,2371,0
412+
FILEVERSION 4,14,2372,0
413+
PRODUCTVERSION 4,14,2372,0
414414
FILEFLAGSMASK 0x3fL
415415
#ifdef _DEBUG
416416
FILEFLAGS 0x1L
@@ -428,13 +428,13 @@ BEGIN
428428
VALUE "Comments", "https://rufus.ie"
429429
VALUE "CompanyName", "Akeo Consulting"
430430
VALUE "FileDescription", "Rufus"
431-
VALUE "FileVersion", "4.14.2371"
431+
VALUE "FileVersion", "4.14.2372"
432432
VALUE "InternalName", "Rufus"
433433
VALUE "LegalCopyright", "� 2011-2026 Pete Batard (GPL v3)"
434434
VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html"
435435
VALUE "OriginalFilename", "rufus-4.14.exe"
436436
VALUE "ProductName", "Rufus"
437-
VALUE "ProductVersion", "4.14.2371"
437+
VALUE "ProductVersion", "4.14.2372"
438438
END
439439
END
440440
BLOCK "VarFileInfo"

src/vhd.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,6 @@ static DWORD WINAPI VhdSaveImageThread(void* param)
499499
// be used as DD images.
500500
if (img_save->Type == VIRTUAL_STORAGE_TYPE_DEVICE_VHD)
501501
flags |= CREATE_VIRTUAL_DISK_FLAG_FULL_PHYSICAL_ALLOCATION;
502-
// TODO: Use CREATE_VIRTUAL_DISK_FLAG_PREVENT_WRITES_TO_SOURCE_DISK?
503502

504503
overlapped.hEvent = CreateEventA(NULL, TRUE, FALSE, NULL);
505504

0 commit comments

Comments
 (0)