mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v2.15 (build 1117)
This commit is contained in:
parent
9e2d0239e6
commit
92d8ac26b0
5 changed files with 10 additions and 9 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -33,6 +33,7 @@
|
|||
.deps
|
||||
.libs
|
||||
Makefile
|
||||
arm
|
||||
x86_32
|
||||
x86_64
|
||||
autom4te.cache
|
||||
|
|
|
@ -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
|
||||
Report external processes that may be preventing disk access (in the log)
|
||||
Improve Windows To Go support for Windows 10 Creators Update
|
||||
Don't report an error on checkdisk failure
|
||||
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]
|
||||
Fix inability to create BIOS-bootable drives, in some circumstances, due to write sharing permissions
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
for an interesting struggle, when you also happen to have a comma in one of the fields... -->
|
||||
<Identity
|
||||
Name="Rufus"
|
||||
Version="2.15.1113.0"
|
||||
Version="2.15.1117.0"
|
||||
ProcessorArchitecture="x86"
|
||||
Publisher='CN=Akeo Consulting, O=Akeo Consulting, STREET="24, Grey Rock", L=Milford, S=Co Donegal, PostalCode=Co Donegal, C=IE' />
|
||||
<Properties>
|
||||
|
|
|
@ -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[] = {
|
||||
0xEB, 0x5E, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 242, 376
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | WS_MINIMIZEBOX | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_ACCEPTFILES
|
||||
CAPTION "Rufus 2.15.1116"
|
||||
CAPTION "Rufus 2.15.1117"
|
||||
FONT 8, "Segoe UI Symbol", 400, 0, 0x0
|
||||
BEGIN
|
||||
LTEXT "Device",IDS_DEVICE_TXT,9,6,200,8
|
||||
|
@ -334,8 +334,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 2,15,1116,0
|
||||
PRODUCTVERSION 2,15,1116,0
|
||||
FILEVERSION 2,15,1117,0
|
||||
PRODUCTVERSION 2,15,1117,0
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -352,13 +352,13 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "2.15.1116"
|
||||
VALUE "FileVersion", "2.15.1117"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011-2017 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||
VALUE "OriginalFilename", "rufus.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "2.15.1116"
|
||||
VALUE "ProductVersion", "2.15.1117"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue