diff --git a/src/iso.c b/src/iso.c index 079b4100..d8a0a6dc 100644 --- a/src/iso.c +++ b/src/iso.c @@ -569,7 +569,7 @@ out: return 1; } -// This upates the MD5SUMS/md5sum.txt file that some distros (Ubuntu, Mint...) +// This updates the MD5SUMS/md5sum.txt file that some distros (Ubuntu, Mint...) // use to validate the media. Because we may alter some of the validated files // to add persistence and whatnot, we need to alter the MD5 list as a result. // The format of the file is expected to always be " " on diff --git a/src/rufus.c b/src/rufus.c index 5374f018..d1428f51 100755 --- a/src/rufus.c +++ b/src/rufus.c @@ -3312,6 +3312,14 @@ relaunch: SendMessage(hMainDialog, WM_COMMAND, IDC_LOG, 0); continue; } +#if defined(_DEBUG) + // Ctrl-T => Alternate Test mode that doesn't require a full rebuild + if ((ctrl_without_focus || ((GetKeyState(VK_CONTROL) & 0x8000) && (msg.message == WM_KEYDOWN))) + && (msg.wParam == 'T')) { + uprintf("TEST"); + continue; + } +#endif if (no_focus && (msg.wParam != VK_CONTROL)) ctrl_without_focus = FALSE; @@ -3409,11 +3417,6 @@ relaunch: } // Alt-L => Force Large FAT32 format to be used on < 32 GB drives if ((msg.message == WM_SYSKEYDOWN) && (msg.wParam == 'L')) { - uprintf("DAFUQ!?!? LPARAM = 0x%08X", msg.lParam); - - if ((msg.message == WM_SYSKEYDOWN) && !(msg.lParam & 0x20000000)) { - uprintf("KIDDING ME?!?!."); - } force_large_fat32 = !force_large_fat32; WriteSettingBool(SETTING_FORCE_LARGE_FAT32_FORMAT, force_large_fat32); PrintStatusTimeout(lmprintf(MSG_254), force_large_fat32); diff --git a/src/rufus.rc b/src/rufus.rc index 11dd5c5b..edaf2b36 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.10.1638" +CAPTION "Rufus 3.10.1639" FONT 9, "Segoe UI Symbol", 400, 0, 0x0 BEGIN LTEXT "Drive Properties",IDS_DRIVE_PROPERTIES_TXT,8,6,53,12,NOT WS_GROUP @@ -395,8 +395,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 3,10,1638,0 - PRODUCTVERSION 3,10,1638,0 + FILEVERSION 3,10,1639,0 + PRODUCTVERSION 3,10,1639,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -414,13 +414,13 @@ BEGIN VALUE "Comments", "https://rufus.ie" VALUE "CompanyName", "Akeo Consulting" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "3.10.1638" + VALUE "FileVersion", "3.10.1639" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2020 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "https://www.gnu.org/licenses/gpl-3.0.html" VALUE "OriginalFilename", "rufus-3.10.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "3.10.1638" + VALUE "ProductVersion", "3.10.1639" END END BLOCK "VarFileInfo"