diff --git a/ChangeLog.txt b/ChangeLog.txt index ffdc1761..cb604143 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,13 @@ +o Version 3.5 (2019.03.??) + Add a feature to download official retail Windows 8.1 or Windows 10 ISOs from Rufus + Add Windows To Go support for MCT generated Windows ISOs + Add a notice about the 'WppRecorder.sys' Microsoft bug for Windows 10 1809 ISOs + Add a notice about trying to format a drive larger than 2 TB in MBR mode + Report the full PID and command line of detected blocking processes in the log + Fix a potential silent abort when the drive is in use + Fix 'Quick Format' option always being active + Fix potentially changing default file system selection after selecting an ISO + o Version 3.4 (2018.12.05) Set the default image selection directory to Downloads\ instead of My Documents\ Add ARM/ARM64 automatic update support diff --git a/src/net.c b/src/net.c index e1ce0a8a..b1c87831 100644 --- a/src/net.c +++ b/src/net.c @@ -877,7 +877,7 @@ static DWORD WINAPI DownloadISOThread(LPVOID param) char *url = NULL, sig_url[128]; BYTE *sig = NULL; HANDLE hFile, hPipe; - DWORD dwExitCode, dwSize, dwAvail, dwPipeSize = 4096; + DWORD dwExitCode = 99, dwSize, dwAvail, dwPipeSize = 4096; GUID guid; IGNORE_RETVAL(CoInitializeEx(NULL, COINIT_APARTMENTTHREADED)); diff --git a/src/rufus.rc b/src/rufus.rc index 9a5bd44d..0a532385 100644 --- a/src/rufus.rc +++ b/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 3.5.1467" +CAPTION "Rufus 3.5.1468" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP @@ -394,8 +394,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,5,1467,0 - PRODUCTVERSION 3,5,1467,0 + FILEVERSION 3,5,1468,0 + PRODUCTVERSION 3,5,1468,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -413,13 +413,13 @@ BEGIN VALUE "Comments", "https://akeo.ie" VALUE "CompanyName", "Akeo Consulting" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "3.5.1467" + VALUE "FileVersion", "3.5.1468" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2019 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/gpl.html" VALUE "OriginalFilename", "rufus-3.5.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "3.5.1467" + VALUE "ProductVersion", "3.5.1468" END END BLOCK "VarFileInfo"