v2.15 (build 1117)

This commit is contained in:
Pete Batard 2017-05-16 12:32:36 +01:00
parent 9e2d0239e6
commit 92d8ac26b0
5 changed files with 10 additions and 9 deletions

1
.gitignore vendored
View File

@ -33,6 +33,7 @@
.deps .deps
.libs .libs
Makefile Makefile
arm
x86_32 x86_32
x86_64 x86_64
autom4te.cache autom4te.cache

View File

@ -1,10 +1,10 @@
o Version 2.15 (2017.05.??) o Version 2.15 (2017.05.17)
Fix non-listing of drives that are opened for write access by another process Fix non-listing of drives that are opened for write access by another process
Report external processes that may be preventing disk access (in the log) Report external processes that may be preventing disk access (in the log)
Improve Windows To Go support for Windows 10 Creators Update Improve Windows To Go support for Windows 10 Creators Update
Don't report an error on checkdisk failure Don't report an error on checkdisk failure
Update GRUB 2.0 and Grub4DOS to latest Update GRUB 2.0 and Grub4DOS to latest
Additional fixes and improvements Other fixes and improvements
o Version 2.14 (2017.04.10) [BUGFIX RELEASE] o Version 2.14 (2017.04.10) [BUGFIX RELEASE]
Fix inability to create BIOS-bootable drives, in some circumstances, due to write sharing permissions Fix inability to create BIOS-bootable drives, in some circumstances, due to write sharing permissions

View File

@ -8,7 +8,7 @@
for an interesting struggle, when you also happen to have a comma in one of the fields... --> for an interesting struggle, when you also happen to have a comma in one of the fields... -->
<Identity <Identity
Name="Rufus" Name="Rufus"
Version="2.15.1113.0" Version="2.15.1117.0"
ProcessorArchitecture="x86" ProcessorArchitecture="x86"
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET="24, Grey Rock", L=Milford, S=Co Donegal, PostalCode=Co Donegal, C=IE' /> Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET="24, Grey Rock", L=Milford, S=Co Donegal, PostalCode=Co Donegal, C=IE' />
<Properties> <Properties>

View File

@ -1,5 +1,5 @@
/* /*
* First 423 bytes of MBR from Grub4DOS (Converted from res/grub4dos/grldr.mbr) * First 423 bytes of MBR from Grub4DOS (Converted from res/grub/grldr.mbr)
*/ */
unsigned char mbr_grub_0x0[] = { unsigned char mbr_grub_0x0[] = {
0xEB, 0x5E, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xEB, 0x5E, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

View File

@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
IDD_DIALOG DIALOGEX 12, 12, 242, 376 IDD_DIALOG DIALOGEX 12, 12, 242, 376
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_ACCEPTFILES EXSTYLE WS_EX_ACCEPTFILES
CAPTION "Rufus 2.15.1116" CAPTION "Rufus 2.15.1117"
FONT 8, "Segoe UI Symbol", 400, 0, 0x0 FONT 8, "Segoe UI Symbol", 400, 0, 0x0
BEGIN BEGIN
LTEXT "Device",IDS_DEVICE_TXT,9,6,200,8 LTEXT "Device",IDS_DEVICE_TXT,9,6,200,8
@ -334,8 +334,8 @@ END
// //
VS_VERSION_INFO VERSIONINFO VS_VERSION_INFO VERSIONINFO
FILEVERSION 2,15,1116,0 FILEVERSION 2,15,1117,0
PRODUCTVERSION 2,15,1116,0 PRODUCTVERSION 2,15,1117,0
FILEFLAGSMASK 0x3fL FILEFLAGSMASK 0x3fL
#ifdef _DEBUG #ifdef _DEBUG
FILEFLAGS 0x1L FILEFLAGS 0x1L
@ -352,13 +352,13 @@ BEGIN
BEGIN BEGIN
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)" VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
VALUE "FileDescription", "Rufus" VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "2.15.1116" VALUE "FileVersion", "2.15.1117"
VALUE "InternalName", "Rufus" VALUE "InternalName", "Rufus"
VALUE "LegalCopyright", "© 2011-2017 Pete Batard (GPL v3)" VALUE "LegalCopyright", "© 2011-2017 Pete Batard (GPL v3)"
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html" VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
VALUE "OriginalFilename", "rufus.exe" VALUE "OriginalFilename", "rufus.exe"
VALUE "ProductName", "Rufus" VALUE "ProductName", "Rufus"
VALUE "ProductVersion", "2.15.1116" VALUE "ProductVersion", "2.15.1117"
END END
END END
BLOCK "VarFileInfo" BLOCK "VarFileInfo"