diff --git a/ChangeLog.txt b/ChangeLog.txt index 024e5b5c..e0e88e2c 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -2,7 +2,7 @@ o Version 1.3.4 (2013.07.15) Syslinux v5 support (NEW) UDF formatting support (NEW - Vista and later only) More drive handling improvements, to avoid "Could not open media" errors - Fixed support for ISOs with files larger than 4GB files + Fixed support for ISOs containing files larger than 4GB Fixed elevation request for unprivileged users Fixed download of c32 files into the application directory Better compression algorithm for the executable diff --git a/src/rufus.rc b/src/rufus.rc index 5747c60f..6e6eb96a 100644 --- a/src/rufus.rc +++ b/src/rufus.rc @@ -30,7 +30,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL IDD_DIALOG DIALOGEX 12, 12, 206, 329 STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU EXSTYLE WS_EX_APPWINDOW -CAPTION "Rufus v1.3.4.270" +CAPTION "Rufus v1.3.4.271" FONT 8, "MS Shell Dlg", 400, 0, 0x1 BEGIN DEFPUSHBUTTON "Start",IDC_START,94,291,50,14 @@ -278,8 +278,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 1,3,4,270 - PRODUCTVERSION 1,3,4,270 + FILEVERSION 1,3,4,271 + PRODUCTVERSION 1,3,4,271 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x1L @@ -296,13 +296,13 @@ BEGIN BEGIN VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" VALUE "FileDescription", "Rufus" - VALUE "FileVersion", "1.3.4.270" + VALUE "FileVersion", "1.3.4.271" VALUE "InternalName", "Rufus" VALUE "LegalCopyright", "© 2011-2013 Pete Batard (GPL v3)" VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" VALUE "OriginalFilename", "rufus.exe" VALUE "ProductName", "Rufus" - VALUE "ProductVersion", "1.3.4.270" + VALUE "ProductVersion", "1.3.4.271" END END BLOCK "VarFileInfo" diff --git a/src/syslinux/libfat/open.c b/src/syslinux/libfat/open.c index ebc94f17..c3520ddc 100644 --- a/src/syslinux/libfat/open.c +++ b/src/syslinux/libfat/open.c @@ -98,6 +98,8 @@ libfat_open(int (*readfunc) (intptr_t, void *, size_t, libfat_sector_t), if (minfatsize > fatsize) goto barf; /* The FATs don't fit */ +#else + (void)(minfatsize); /* silence an unused warning in MinGW */ #endif if (fs->fat_type == FAT28)