mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v1.3.2 (build 232)
This commit is contained in:
parent
0cc39d0222
commit
4b0196de32
2 changed files with 12 additions and 9 deletions
|
@ -1,7 +1,10 @@
|
|||
o Version 1.3.2 BETA (2012.01.20)
|
||||
Re-Fix support for newer ArchLinux ISOs, that was removed in 1.3.1
|
||||
Add support for UEFI boot, as well as GPT - This means Rufus can now produce UEFI
|
||||
bootable UFDs from EFI compatible ISOs (Windows 7 x64, Windows 8, ArchLinux...)
|
||||
o Version 1.3.2 (2013.01.27)
|
||||
Fix support for newer ArchLinux ISOs, that was removed in 1.3.1
|
||||
Add support for UEFI boot, as well as GPT. What this means is that Rufus can
|
||||
now produce UEFI bootable UFDs from EFI compatible ISOs, such as Windows 7 x64,
|
||||
Windows 8, ArchLinux, etc.
|
||||
The first partition is now always aligned to 1MB (unless advanced options are used)
|
||||
Internal refactoring and fixes
|
||||
o Version 1.3.1 (2013.01.09)
|
||||
Fix Windows XP ISO support, that was broken in 1.3.0
|
||||
Drop support for newer ArchLinux ISOs - this will be fixed in 1.3.2
|
||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -30,7 +30,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
|||
IDD_DIALOG DIALOGEX 12, 12, 206, 316
|
||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||
EXSTYLE WS_EX_APPWINDOW
|
||||
CAPTION "Rufus v1.3.2.231"
|
||||
CAPTION "Rufus v1.3.2.232"
|
||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "Start",IDC_START,94,278,50,14
|
||||
|
@ -274,8 +274,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,3,2,231
|
||||
PRODUCTVERSION 1,3,2,231
|
||||
FILEVERSION 1,3,2,232
|
||||
PRODUCTVERSION 1,3,2,232
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -292,13 +292,13 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "Akeo Consulting (http://akeo.ie)"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "1.3.2.231"
|
||||
VALUE "FileVersion", "1.3.2.232"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "(c) 2011-2012 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||
VALUE "OriginalFilename", "rufus.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "1.3.2.231"
|
||||
VALUE "ProductVersion", "1.3.2.232"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue