diff --git a/res/icons/rufus-512.png b/res/icons/rufus-512.png new file mode 100644 index 00000000..ff7af5b7 Binary files /dev/null and b/res/icons/rufus-512.png differ diff --git a/src/iso.c b/src/iso.c index ae9f7a55..9926807d 100644 --- a/src/iso.c +++ b/src/iso.c @@ -181,8 +181,8 @@ static BOOL check_iso_props(const char* psz_dirname, int64_t file_length, const } // In case there's an ldlinux.sys on the ISO, prevent it from overwriting ours - if ((psz_dirname != NULL) && (psz_dirname[0] == 0) && (safe_strcmp(psz_basename, ldlinux_name) == 0)) { - uprintf("skipping % file from ISO image\n", ldlinux_name); + if ((psz_dirname != NULL) && (psz_dirname[0] == 0) && (safe_stricmp(psz_basename, ldlinux_name) == 0)) { + uprintf("Skipping '%s' file from ISO image", psz_basename); return TRUE; } } else { // Scan-time checks diff --git a/src/rufus.rc b/src/rufus.rc index a57302c0..0cac5864 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.7.1571" +CAPTION "Rufus 3.7.1572" 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,7,1571,0 - PRODUCTVERSION 3,7,1571,0 + FILEVERSION 3,7,1572,0 + PRODUCTVERSION 3,7,1572,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.7.1571" + VALUE "FileVersion", "3.7.1572" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2019 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "https://www.gnu.org/copyleft/gpl.html" VALUE "OriginalFilename", "rufus-3.7.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "3.7.1571" + VALUE "ProductVersion", "3.7.1572" END END BLOCK "VarFileInfo"