Skip to content

Commit 3187f71

Browse files
committed
v1.0.6 (#109)
* removed TODO (duplicates github feature) * updated copyrights to 2012 * fixed MS only rufus VS2010 solution file * fixed a Clang warning in SetLGP
1 parent d27e731 commit 3187f71

20 files changed

Lines changed: 34 additions & 35 deletions

README.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ Rufus: The Reliable USB Formatting Utility
22

33
Features:
44
- Formats USB memory sticks to FAT/FAT32/NTFS/exFAT
5-
- Creates MS-DOS bootable USB memory sticks, with no external files required
6-
- Checks for badblock
5+
- Creates MS-DOS/FreeDOS bootable USB memory sticks, with no external files required
6+
- Checks for bad blocks
77
- Modern UI, with UAC elevation for Windows Vista and later
88
- Fully Open Source (GPL v3)
99

1010
Compilation:
1111
Use either Visual Studio 2010, WDK (Windows Driver Kit) or MinGW and then
1212
invoke the .sln, wdk_build.cmd or configure/make respectively.
13-
Remember that you can get plenty of useful information about what Rufus
14-
is doing through a Windows debugger such as DebugView.
13+
You can get additional information about what Rufus is doing through a Windows
14+
debugger such as DebugView.
1515

1616
More info:
1717
http://rufus.akeo.ie

TODO.txt

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/.msvc/rufus_2010.vcxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@
148148
<ItemGroup>
149149
<ClCompile Include="..\badblocks.c" />
150150
<ClCompile Include="..\br.c" />
151+
<ClCompile Include="..\dos_locale.c" />
151152
<ClCompile Include="..\drive.c" />
152153
<ClCompile Include="..\fat12.c" />
153154
<ClCompile Include="..\fat16.c" />

src/.msvc/rufus_2010.vcxproj.filters

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@
5757
<ClCompile Include="..\partition_info.c">
5858
<Filter>Source Files</Filter>
5959
</ClCompile>
60+
<ClCompile Include="..\dos_locale.c">
61+
<Filter>Source Files</Filter>
62+
</ClCompile>
6063
</ItemGroup>
6164
<ItemGroup>
6265
<ClInclude Include="..\rufus.h">

src/badblocks.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o
99
* Copyright 1999 by David Beattie
10-
* Copyright 2011 by Pete Batard
10+
* Copyright 2011-2012 by Pete Batard
1111
*
1212
* This file is based on the minix file system programs fsck and mkfs
1313
* written and copyrighted by Linus Torvalds <Linus.Torvalds@cs.helsinki.fi>

src/badblocks.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* Copyright 1995, 1996, 1997, 1998, 1999 by Theodore Ts'o
99
* Copyright 1999 by David Beattie
10-
* Copyright 2011 by Pete Batard
10+
* Copyright 2011-2012 by Pete Batard
1111
*
1212
* This file is based on the minix file system programs fsck and mkfs
1313
* written and copyrighted by Linus Torvalds <Linus.Torvalds@cs.helsinki.fi>

src/dos.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Rufus: The Reliable USB Formatting Utility
33
* DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
44
* (MS WinME DOS) or from the embedded FreeDOS resource files
5-
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
5+
* Copyright (c) 2011-2012 Pete Batard <pete@akeo.ie>
66
*
77
* This program is free software: you can redistribute it and/or modify
88
* it under the terms of the GNU General Public License as published by

src/dos.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Rufus: The Reliable USB Formatting Utility
33
* MS-DOS boot file extraction, from the FAT12 floppy image in diskcopy.dll
4-
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
4+
* Copyright (c) 2011-2012 Pete Batard <pete@akeo.ie>
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by

src/dos_locale.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Rufus: The Reliable USB Formatting Utility
33
* DOS keyboard locale setup
4-
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
4+
* Copyright (c) 2011-2012 Pete Batard <pete@akeo.ie>
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by

src/drive.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* Rufus: The Reliable USB Formatting Utility
33
* Drive access function calls
4-
* Copyright (c) 2011 Pete Batard <pete@akeo.ie>
4+
* Copyright (c) 2011-2012 Pete Batard <pete@akeo.ie>
55
*
66
* This program is free software: you can redistribute it and/or modify
77
* it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)