[misc] added README/TODO

* also renamed Allocation Unit to Cluster
This commit is contained in:
Pete Batard 2011-12-05 12:41:55 +00:00
parent 7726071098
commit d81525d3f4
4 changed files with 37 additions and 8 deletions

18
README Normal file
View File

@ -0,0 +1,18 @@
Rufus: The Reliable USB Formatting Utility
Features:
- Formats USB memory sticks to FAT/FAT32/NTFS/exFAT
- Creates MS-DOS bootable USB memory sticks, with no external files required
- Checks for badblock
- Modern UI, with UAC elevation for Windows Vista and later
- Fully Open Source (GPL v3)
Compilation:
Use either Visual Studio 2010, WDK (Windows Driver Kit) or MinGW and then
invoke the .sln, wdk_build.cmd or configure/make respectively.
More info:
https://github.com/pbatard/rufus/wiki/Rufus
Enhancements/Bugs
https://github.com/pbatard/rufus/issues

11
TODO Normal file
View File

@ -0,0 +1,11 @@
o backblock check
http://git.kernel.org/?p=fs/ext2/e2fsprogs.git;a=blob;f=misc/badblocks.c
o progress bar during quick format / partitioning / MS-DOS files copy
o use the umount/remount trick to make the volume reappear post formatting
o set keyboard according to locale in DOS
o allow selection of one of the existing compatible volume (keep existing MBR) / full repartitioning (overwrite MBR)
o FreeDOS integration
o Enable compression for NTFS
o Bootable NTFS/exFAT
o GPT support?
o disable indexing support on NTFS?

View File

@ -30,7 +30,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
IDD_DIALOG DIALOGEX 12, 12, 206, 263
STYLE DS_SETFONT | DS_MODALFRAME | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION "Rufus v1.0.1.75"
CAPTION "Rufus v1.0.1.76"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "Start",IDC_START,94,223,50,14
@ -42,7 +42,7 @@ BEGIN
COMBOBOX IDC_CAPACITY,8,46,190,30,CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP
LTEXT "Ca&pacity",IDC_STATIC,9,35,29,8
COMBOBOX IDC_CLUSTERSIZE,8,104,190,30,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
LTEXT "&Allocation unit size",IDC_STATIC,9,93,105,10
LTEXT "&Cluster size",IDC_STATIC,9,93,105,10
PUSHBUTTON "About...",IDC_ABOUT,8,223,50,14
GROUPBOX "Format Options",IDC_STATIC,7,149,189,40
EDITTEXT IDC_LABEL,7,131,190,13,ES_AUTOHSCROLL
@ -63,7 +63,7 @@ BEGIN
DEFPUSHBUTTON "OK",IDOK,231,175,50,14,WS_GROUP
CONTROL "<a href=""https://github.com/pbatard/rufus/wiki/Rufus"">https://github.com/pbatard/rufus</a>",IDC_ABOUT_RUFUS_URL,
"SysLink",WS_TABSTOP,46,47,114,9
LTEXT "Version 1.0.1 (Build 75)",IDC_STATIC,46,19,78,8
LTEXT "Version 1.0.1 (Build 76)",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
@ -162,8 +162,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,1,75
PRODUCTVERSION 1,0,1,75
FILEVERSION 1,0,1,76
PRODUCTVERSION 1,0,1,76
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -180,13 +180,13 @@ BEGIN
BEGIN
VALUE "CompanyName", "akeo.ie"
VALUE "FileDescription", "Rufus"
VALUE "FileVersion", "1.0.1.75"
VALUE "FileVersion", "1.0.1.76"
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.0.1.75"
VALUE "ProductVersion", "1.0.1.76"
END
END
BLOCK "VarFileInfo"

View File

@ -169,7 +169,7 @@ const char* StrError(DWORD error_code)
case ERROR_LABEL_TOO_LONG:
return "The volume label is invalid";
case ERROR_INVALID_CLUSTER_SIZE:
return "The selected allocation unit size is not valid for this device";
return "The selected cluster size is not valid for this device";
case ERROR_INVALID_VOLUME_SIZE:
return "The volume size is invalid";
case ERROR_NO_MEDIA_IN_DRIVE: