mirror of
https://github.com/pbatard/rufus.git
synced 2024-08-14 23:57:05 +00:00
v1.3.0 (build 214)
* Closes #114 (UpdateProgress(6): error negative percentage sent for negative slot value)
This commit is contained in:
parent
d01749004c
commit
3f79a61802
3 changed files with 20 additions and 7 deletions
|
@ -1,3 +1,12 @@
|
||||||
|
o Version 1.3.0 (2012.12.16)
|
||||||
|
FAT32 format support for >32GB drives
|
||||||
|
Based on fat32format from Ridgecrop Consultants Ltd:
|
||||||
|
http://www.ridgecrop.demon.co.uk/index.htm?fat32format.htm
|
||||||
|
Automated update check
|
||||||
|
Relax ISO9660 compliance for Arch Linux images
|
||||||
|
Add support for VMWare ESXi 5.1 ISO images
|
||||||
|
Update Syslinux to v4.0.6 and libcdio to v0.90
|
||||||
|
Miscellaneous UI improvements and fixes
|
||||||
o Version 1.2.0 (2012.06.04)
|
o Version 1.2.0 (2012.06.04)
|
||||||
Single version of Rufus, that includes FreeDOS support always
|
Single version of Rufus, that includes FreeDOS support always
|
||||||
Add a toggleable advanced options panel
|
Add a toggleable advanced options panel
|
||||||
|
|
10
src/rufus.rc
10
src/rufus.rc
|
@ -30,7 +30,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
|
||||||
IDD_DIALOG DIALOGEX 12, 12, 206, 316
|
IDD_DIALOG DIALOGEX 12, 12, 206, 316
|
||||||
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.3.0.213"
|
CAPTION "Rufus v1.3.0.214"
|
||||||
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
FONT 8, "MS Shell Dlg", 400, 0, 0x1
|
||||||
BEGIN
|
BEGIN
|
||||||
DEFPUSHBUTTON "Start",IDC_START,94,278,50,14
|
DEFPUSHBUTTON "Start",IDC_START,94,278,50,14
|
||||||
|
@ -274,8 +274,8 @@ END
|
||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,3,0,213
|
FILEVERSION 1,3,0,214
|
||||||
PRODUCTVERSION 1,3,0,213
|
PRODUCTVERSION 1,3,0,214
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
|
@ -292,13 +292,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.3.0.213"
|
VALUE "FileVersion", "1.3.0.214"
|
||||||
VALUE "InternalName", "Rufus"
|
VALUE "InternalName", "Rufus"
|
||||||
VALUE "LegalCopyright", "(c) 2011-2012 Pete Batard (GPL v3)"
|
VALUE "LegalCopyright", "(c) 2011-2012 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.3.0.213"
|
VALUE "ProductVersion", "1.3.0.214"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <windowsx.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
@ -83,6 +84,7 @@ BOOL InstallSyslinux(DWORD num, const char* drive_name)
|
||||||
int ldlinux_sectors;
|
int ldlinux_sectors;
|
||||||
uint32_t ldlinux_cluster;
|
uint32_t ldlinux_cluster;
|
||||||
int nsectors;
|
int nsectors;
|
||||||
|
int dt = (int)ComboBox_GetItemData(hDOSType, ComboBox_GetCurSel(hDOSType));
|
||||||
|
|
||||||
ldlinux_name[0] = drive_name[0];
|
ldlinux_name[0] = drive_name[0];
|
||||||
|
|
||||||
|
@ -144,6 +146,7 @@ BOOL InstallSyslinux(DWORD num, const char* drive_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
uprintf("Succesfully wrote 'ldlinux.sys'\n");
|
uprintf("Succesfully wrote 'ldlinux.sys'\n");
|
||||||
|
if (dt == DT_SYSLINUX)
|
||||||
UpdateProgress(OP_DOS, -1.0f);
|
UpdateProgress(OP_DOS, -1.0f);
|
||||||
|
|
||||||
/* Now flush the media */
|
/* Now flush the media */
|
||||||
|
@ -211,6 +214,7 @@ BOOL InstallSyslinux(DWORD num, const char* drive_name)
|
||||||
}
|
}
|
||||||
|
|
||||||
uprintf("Succesfully wrote Syslinux boot record\n");
|
uprintf("Succesfully wrote Syslinux boot record\n");
|
||||||
|
if (dt == DT_SYSLINUX)
|
||||||
UpdateProgress(OP_DOS, -1.0f);
|
UpdateProgress(OP_DOS, -1.0f);
|
||||||
|
|
||||||
r = TRUE;
|
r = TRUE;
|
||||||
|
|
Loading…
Reference in a new issue