mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v1.2.0 (build 183)
This commit is contained in:
parent
f77803cc78
commit
5cbba034e4
3 changed files with 64 additions and 8 deletions
56
ChangeLog.txt
Normal file
56
ChangeLog.txt
Normal file
|
@ -0,0 +1,56 @@
|
|||
o Version 1.2.0 (2012.06.04)
|
||||
Single version of Rufus, that includes FreeDOS support always
|
||||
Add a toggleable advanced options panel
|
||||
Add bare Syslinux installation for (FAT partitions only)
|
||||
Add taskbar progress (Windows 7 or later)
|
||||
Integrate logging output in the application
|
||||
Fixes unavailable boot option when an empty card reader is plugged (reported by TheHive)
|
||||
Works around the use of non-ISO compliant LiveXP images (reported by TheHive)
|
||||
Various other bugfixes and improvements
|
||||
o Version 1.1.7 (2012.04.06):
|
||||
Fixes wrong bootable disk ID introduced in 1.1.6 (reported by Jeff Byers)
|
||||
Fixes support for minint WinPE 1.x images
|
||||
o Version 1.1.6 (2012.03.27):
|
||||
Add ISO support for Windows XP (SP2 or later), Windows 2003 and BartPE
|
||||
o Version 1.1.5 (2012.03.12):
|
||||
Fixes detection of devices without friendly name (reported by rschiang)
|
||||
Fixes support of WinPE/AIK ISO images (reported by Dmitry Sokolov)
|
||||
Fixes no disk at launch with empty card readers (reported by ChrisR
|
||||
Add download of vesamenu.c32 for ISOs that need it
|
||||
o Version 1.1.4 (2012.03.03):
|
||||
Fixes ISO support for directories with extended characters (reported by ChrisR)
|
||||
Fixes bad blocks test issues (reported by steve6375)
|
||||
Read extended labels from autorun.inf when present
|
||||
Update FreeDOS files to latest versions
|
||||
o Version 1.1.3 (2012.02.24):
|
||||
Fixes an issue on XP when using Windows ISOs (reported by wimb)
|
||||
Disable listing of fixed drives (eg. HDDs)
|
||||
Add 'fake' USB drive detection during bad blocks check
|
||||
o Version 1.1.2 (2012.02.22):
|
||||
Fixes ISO support for Fedora, openSUSE and Hiren's Boot CD
|
||||
Add icon and extended/international label support
|
||||
o Version 1.1.1 (2012.02.16):
|
||||
ISO image support (syslinux) - targeted at Linux installation ISOs
|
||||
ISO fixes and UI improvements
|
||||
o Version 1.1.0 Beta (2012.02.08):
|
||||
ISO image support (NTFS, bootmgr only - targeted at Windows installation ISOs)
|
||||
o Version 1.0.7 (2012.02.02):
|
||||
Fixes a detection issue on platforms with multiple optical drives (with thanks to ElGaton)
|
||||
Add number of passes for bad blocks check
|
||||
Improved locale selection for FreeDOS
|
||||
o Version 1.0.6 (2012.01.03):
|
||||
Log report when bad blocks are found
|
||||
o Version 1.0.5 (2011.12.25):
|
||||
Keyboard layout detection & support
|
||||
o Version 1.0.4 (2011.12.16):
|
||||
FreeDOS support
|
||||
o Version 1.0.3 (2011.12.12):
|
||||
First public release
|
||||
Progress status improvements
|
||||
Filtering of invalid cluster sizes
|
||||
Disable Autoplay on Vista and later while the application is running
|
||||
o Version 1.0.2 (2011.12.06):
|
||||
Beta release
|
||||
Support for bad blocks check
|
||||
o Version 1.0.1 (2011.12.04):
|
||||
Alpha release
|
|
@ -15,8 +15,8 @@ Compilation:
|
|||
invoke the .sln, wdk_build.cmd or configure/make respectively.
|
||||
|
||||
Additional information:
|
||||
Rufus provides extensive information about what it is doing through the Windows
|
||||
debug facility. This info can be accessed with an application such as DebugView.
|
||||
Rufus provides extensive information about what it is doing through its easily
|
||||
accessible log or the Windows debug facility.
|
||||
|
||||
More info:
|
||||
http://rufus.akeo.ie
|
||||
|
|
12
src/rufus.rc
12
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.2.0.182"
|
||||
CAPTION "Rufus v1.2.0.183"
|
||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||
BEGIN
|
||||
DEFPUSHBUTTON "Start",IDC_START,94,278,50,14
|
||||
|
@ -77,7 +77,7 @@ BEGIN
|
|||
DEFPUSHBUTTON "OK",IDOK,231,175,50,14,WS_GROUP
|
||||
CONTROL "<a href=""http://rufus.akeo.ie"">http://rufus.akeo.ie</a>",IDC_ABOUT_RUFUS_URL,
|
||||
"SysLink",WS_TABSTOP,46,47,114,9
|
||||
LTEXT "Version 1.2.0 (Build 182)",IDC_STATIC,46,19,78,8
|
||||
LTEXT "Version 1.2.0 (Build 183)",IDC_STATIC,46,19,78,8
|
||||
PUSHBUTTON "License...",IDC_ABOUT_LICENSE,46,175,50,14,WS_GROUP
|
||||
EDITTEXT IDC_ABOUT_COPYRIGHTS,46,107,235,63,ES_MULTILINE | ES_READONLY | WS_VSCROLL
|
||||
LTEXT "Report bugs or request enhancements at:",IDC_STATIC,46,66,187,8
|
||||
|
@ -237,8 +237,8 @@ END
|
|||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 1,2,0,182
|
||||
PRODUCTVERSION 1,2,0,182
|
||||
FILEVERSION 1,2,0,183
|
||||
PRODUCTVERSION 1,2,0,183
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
|
@ -255,13 +255,13 @@ BEGIN
|
|||
BEGIN
|
||||
VALUE "CompanyName", "akeo.ie"
|
||||
VALUE "FileDescription", "Rufus"
|
||||
VALUE "FileVersion", "1.2.0.182"
|
||||
VALUE "FileVersion", "1.2.0.183"
|
||||
VALUE "InternalName", "Rufus"
|
||||
VALUE "LegalCopyright", "© 2011 Pete Batard (GPL v3)"
|
||||
VALUE "LegalTrademarks", "http://www.gnu.org/copyleft/gpl.html"
|
||||
VALUE "OriginalFilename", "rufus.exe"
|
||||
VALUE "ProductName", "Rufus"
|
||||
VALUE "ProductVersion", "1.2.0.182"
|
||||
VALUE "ProductVersion", "1.2.0.183"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
|
Loading…
Reference in a new issue