mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v1.4.0 (build 340)
This commit is contained in:
parent
cb3de685ee
commit
504c356f4e
3 changed files with 19 additions and 10 deletions
|
@ -1,14 +1,19 @@
|
||||||
o Version 1.4.0 (2013.12.??)
|
o Version 1.4.0 (2013.12.02)
|
||||||
Add localization support, with native integration for the following languages:
|
Add localization support, with native integration for the following languages:
|
||||||
|
- Chinese (Traditional), courtesy of 佚
|
||||||
|
- Dutch, courtesy of Roberto Pino
|
||||||
- French, courtesy of myself ("Je vais me gêner !")
|
- French, courtesy of myself ("Je vais me gêner !")
|
||||||
- German, courtesy of Thilo Langbein
|
- German, courtesy of Thilo Langbein
|
||||||
|
- Greek, courtesy of Konstantinos and Nikolaos Margaritis
|
||||||
- Hugarian, courtesy of georg1136
|
- Hugarian, courtesy of georg1136
|
||||||
- Italian, courtesy of bovirus
|
- Italian, courtesy of bovirus
|
||||||
- Korean, courtesy of NaJiyoun
|
- Korean, courtesy of 나두야간다
|
||||||
|
- Lithuanian, courtesy of Gintaras Venslovas
|
||||||
|
- Polish, courtesy of Piotr Halama
|
||||||
- Romanian, courtesy of Gîrlea Alexandru
|
- Romanian, courtesy of Gîrlea Alexandru
|
||||||
- Russian, courtesy of Кирилл Иванов
|
- Russian, courtesy of Кирилл Иванов
|
||||||
- Spanish, courtesy of José Pineda
|
- Spanish, courtesy of José Pineda
|
||||||
- Turkish, courtesy of Mehmetali KURAN
|
- Turkish, courtesy of Mehmetali Kuran
|
||||||
- More to come, more wanted! See http://rufus.akeo.ie/translations
|
- More to come, more wanted! See http://rufus.akeo.ie/translations
|
||||||
Add "smart" detection of USB HDD vs USB Flash Drive
|
Add "smart" detection of USB HDD vs USB Flash Drive
|
||||||
Add retry when writing ISO files
|
Add retry when writing ISO files
|
||||||
|
@ -17,6 +22,7 @@ o Version 1.4.0 (2013.12.??)
|
||||||
Fixed some issues with DOS localization
|
Fixed some issues with DOS localization
|
||||||
Fixed FAT32 formatting for large and GPT disks
|
Fixed FAT32 formatting for large and GPT disks
|
||||||
Fixed support for Ubuntu, Scientific Linux, unofficial Windows and other ISOs
|
Fixed support for Ubuntu, Scientific Linux, unofficial Windows and other ISOs
|
||||||
|
Various other fixes and improvements
|
||||||
o Version 1.3.4 (2013.07.15)
|
o Version 1.3.4 (2013.07.15)
|
||||||
Syslinux v5 support (NEW)
|
Syslinux v5 support (NEW)
|
||||||
UDF formatting support (NEW - Vista and later only)
|
UDF formatting support (NEW - Vista and later only)
|
||||||
|
|
|
@ -7,9 +7,9 @@ Features:
|
||||||
- Creates bootable USB drives from bootable ISOs (Windows, Linux, etc.)
|
- Creates bootable USB drives from bootable ISOs (Windows, Linux, etc.)
|
||||||
- Twice as fast as Microsoft's USB/DVD tool or UNetbootin, on ISO->USB (1)
|
- Twice as fast as Microsoft's USB/DVD tool or UNetbootin, on ISO->USB (1)
|
||||||
- Can perform bad blocks check, with fake drive detection
|
- Can perform bad blocks check, with fake drive detection
|
||||||
- Modern and familiar UI
|
- Modern and familiar UI, with 15 languages supported natively (2)
|
||||||
- Small footprint, no installation required
|
- Small footprint, no installation required
|
||||||
- 100% Free Source Software (GPL v3)
|
- 100% Free Software (GPL v3)
|
||||||
|
|
||||||
Compilation:
|
Compilation:
|
||||||
Use either Visual Studio 2012, WDK 7.1 (Windows Driver Kit) or MinGW and then
|
Use either Visual Studio 2012, WDK 7.1 (Windows Driver Kit) or MinGW and then
|
||||||
|
@ -21,6 +21,7 @@ Additional information:
|
||||||
|
|
||||||
More info:
|
More info:
|
||||||
http://rufus.akeo.ie
|
http://rufus.akeo.ie
|
||||||
|
http://rufus.akeo.ie/FAQ
|
||||||
|
|
||||||
Enhancements/Bugs
|
Enhancements/Bugs
|
||||||
https://github.com/pbatard/rufus/issues
|
https://github.com/pbatard/rufus/issues
|
||||||
|
@ -32,3 +33,5 @@ Enhancements/Bugs
|
||||||
- Windows 7 USB/DVD Download Tool v1.0.30: 8 mins 10s
|
- Windows 7 USB/DVD Download Tool v1.0.30: 8 mins 10s
|
||||||
- UNetbootin v1.1.1.1: 6 mins 20s
|
- UNetbootin v1.1.1.1: 6 mins 20s
|
||||||
- Rufus v1.1.0: 3 mins 25s
|
- Rufus v1.1.0: 3 mins 25s
|
||||||
|
|
||||||
|
(2) http://rufus.akeo.ie/translations
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -33,7 +33,7 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||||||
IDD_DIALOG DIALOGEX 12, 12, 206, 329
|
IDD_DIALOG DIALOGEX 12, 12, 206, 329
|
||||||
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
|
||||||
EXSTYLE WS_EX_APPWINDOW
|
EXSTYLE WS_EX_APPWINDOW
|
||||||
CAPTION "Rufus v1.4.0.339"
|
CAPTION "Rufus v1.4.0.340"
|
||||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||||
BEGIN
|
BEGIN
|
||||||
DEFPUSHBUTTON "Start",IDC_START,94,291,50,14
|
DEFPUSHBUTTON "Start",IDC_START,94,291,50,14
|
||||||
|
@ -288,8 +288,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,4,0,339
|
FILEVERSION 1,4,0,340
|
||||||
PRODUCTVERSION 1,4,0,339
|
PRODUCTVERSION 1,4,0,340
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -306,13 +306,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", "1.4.0.339"
|
VALUE "FileVersion", "1.4.0.340"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "© 2011-2013 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "© 2011-2013 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", "1.4.0.339"
|
VALUE "ProductVersion", "1.4.0.340"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
Loading…
Reference in a new issue