forked from adrianlopezroche/fdupes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cc3df4d
commit 7f5adfd
Showing
10 changed files
with
310 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
The following list, organized by fdupes version, documents changes | ||
to fdupes. Every item on the list includes, inside square brackets, | ||
a list of indentifiers referring to the people who contributed | ||
that particular item. When more than one person is listed the person | ||
who contributed the patch or idea appears first, followed by | ||
those who've otherwise worked on that item. For a list of | ||
contributors names and identifiers please see the CONTRIBUTORS file. | ||
|
||
|
||
Changes from 1.20 to 1.30 | ||
|
||
- Added size option to display size of duplicates. [LB, AL] | ||
- Added missing typecast for proper compilation under g++. [LB] | ||
- Better handling of errors occurring during retrieval | ||
of a file's signature. [KK, AL] | ||
- No longer displays an error message when specified | ||
directories contain no files. [AL] | ||
- Added red-black tree structure (experimental compile-time | ||
option, disabled by default). [AL] | ||
|
||
Changes from 1.12 to 1.20 | ||
|
||
- Fixed bug where program would crash when files being | ||
scanned were named pipes or sockets. [FD] | ||
- Fix against security risk resulting from the use of a | ||
temporary file to store md5sum output. [FD, AL] | ||
- Using an external md5sum program is now optional. Started | ||
using L. Peter Deutsh's MD5 library instead. [FD, AL] | ||
- Added hardlinks option to distinguish between hard links | ||
and actual duplicate files. [FD, AL] | ||
- Added noempty option to exclude zero-length files | ||
from consideration [AL] | ||
|
||
Changes from 1.11 to 1.12 | ||
|
||
- Improved handling of extremely long input on preserve | ||
prompt (delete option). [SSD, AL] | ||
|
||
Changes from 1.1 to 1.11 | ||
|
||
- Started checking file sizes before signatures | ||
for better performance. [AB, AL] | ||
- Added fdupes manpage. [AB, AL] | ||
|
||
Changes from 1.0 to 1.1 | ||
|
||
- Added delete option for semi-automatic deletion | ||
of duplicate files. [AL] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,11 @@ | ||
Adrian Bridgett <[email protected]>: | ||
- Provided the original version of the fdupes manpage. | ||
- Suggested comparing file sizes before calling | ||
md5sum program (big performance boost). | ||
The following people have contributed in some way to the development | ||
of fdupes. Please see the CHANGES file for detailed information | ||
on their contributions. Names are listed in alphabetical order. | ||
|
||
Steven S. Dick <[email protected]>: | ||
- Provided patch for better handling of extremely long | ||
input on preserve prompt (author's note: modified | ||
Steven's patch to handle input a bit differently). | ||
[AB] Adrian Bridgett <[email protected]> | ||
[AL] Adrian Lopez <[email protected]> | ||
[FD] Frank DENIS aka Jedi/Sector One aka DJ Chrysalis <[email protected]> | ||
[KK] Kresimir Kukulj <[email protected]> | ||
[LB] Laurent Bonnaud <[email protected]> | ||
[SSD] Steven S. Dick <[email protected]> | ||
|
||
Frank DENIS aka Jedi/Sector One aka DJ Chrysalis <[email protected]>: | ||
- Provided patch to fix bug where program would crash when | ||
files being scanned were named pipes or sockets. | ||
- Warned against security risk resulting from the use of a | ||
temporary file to store md5sum output. Suggested the use | ||
of RSARef instead of md5sum (author's note: used L. Peter | ||
Deutsch's MD5 message digest library instead of RSARef). | ||
- Provided patch to fix problem where false duplicates would | ||
be reported because of hard links. Unlike the symlinks | ||
issue described in the documentation, these false | ||
reports are not a threat to the data, just the link. | ||
(author's note: modified patch for correctness). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
- Verify correctness of red-black tree algorithm. Optimize. | ||
- Add quoting of filenames containing spaces when using --sameline. | ||
- Fix problem where MD5 collisions will result in one of the | ||
files not being registered (causing it to be ignored). | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.