Skip to content

Releases: adrianlopezroche/fdupes

fdupes 2.3.0

27 Jan 21:08
Compare
Choose a tag to compare

This is fdupes 2.3.0. If you're an end-user then you probably want the file named fdupes-2.3.0.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.2.1 to 2.3.0:

  • Add --cache option to speed up file comparisons.
  • Use nanosecond precision for file times, if available.
  • Fix compilation issue on OpenBSD.
  • Other changes like fixing typos, wording, etc.

fdupes 2.2.1

09 Sep 07:07
Compare
Choose a tag to compare

This is fdupes 2.2.1. If you're an end-user then you probably want the file named fdupes-2.2.1.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.2.0 to 2.2.1:

  • Fix bug in code meant to skip over the current log file when --log option is given.
  • Updates to copyright notices in source code.

fdupes 2.2.0

22 Aug 18:47
Compare
Choose a tag to compare

This is fdupes 2.2.0. If you're an end-user then you probably want the file named fdupes-2.2.0.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.1.2 to 2.2.0:

  • Add --deferconfirmation option.
  • Check that files marked as duplicates haven't changed during program execution before deleting them.
  • Update documentation to indicate units for SIZE in command-line options.
  • Move some configuration settings to configure.ac file.

fdupes 2.1.2

12 Aug 18:12
Compare
Choose a tag to compare

This is fdupes 2.1.2. If you're an end-user then you probably want the file named fdupes-2.1.2.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.1.1 to 2.1.2:

  • Do not enter ncurses mode when --immediate option given.
  • Fix logging/memory corruption bug when using --log with --immediate.

fdupes 2.1.1

03 Jul 02:28
Compare
Choose a tag to compare

This is fdupes 2.1.1. If you're an end-user then you probably want the file named fdupes-2.1.1.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.1.0 to 2.1.1:

  • Break mtime ties using ctime when sorting by time.
  • Reduce number of calls to stat(), for speed.
  • Clear last command status when new command is entered.

fdupes 2.1.0

01 Jul 02:43
Compare
Choose a tag to compare

This is fdupes 2.1.0. If you're an end-user then you probably want the file named fdupes-2.1.0.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 2.0.0 to 2.1.0:

  • Rename cs command ("clear all selections") from cs to csel.
  • Rename igs command ("invert selections") from igs to isel.
  • Add "prune" command as synonym for DELETE key.
  • Clear selections after deleting files via prune/DELETE.
  • Fix dependency issues when fdupes is configured to not use ncurses.

fdupes 2.0.0

30 Dec 17:33
Compare
Choose a tag to compare

This is fdupes 2.0.0. If you're an end-user then you probably want the file named fdupes-2.0.0.tar.gz. The other archives are created automatically by GitHub and are intended for developers.

Changes from 1.6.1 to 2.0.0:

  • Add ncurses mode for interactive file deletion (plain mode still available via --plain or ./configure).
  • Add --minsize option.
  • Add --maxsize option.
  • Add --time option.
  • Add --order=ctime option.
  • Add --log option.
  • Use configure script for installation (Autotools/Automake).

fdupes 1.6.1

21 Aug 04:56
Compare
Choose a tag to compare

Changes from version 1.6.0 to 1.6.1:

  • Fix 'invalid option' error for -I.

fdupes 1.6.0

20 Aug 22:12
Compare
Choose a tag to compare

Changes from 1.51 to 1.6.0:

  • Add --nohidden option.
  • Add --permissions option.
  • Add --order option.
  • Add --reverse option.
  • Add --immediate option.
  • Speed up file comparison.
  • Fix bug where fdupes fails to consistently ignore hardlinks, depending on
    file processing order, when F_CONSIDERHARDLINKS flag is not set.
  • Fix bug in is_hardlink(): Proper traversal of duplicates is done via
    dupe->duplicates, not via dupe->next.
  • Revise md5.c to compile under OSX.
  • Remove EXTERNAL_MD5 configuration option.
  • Various other changes (see git log).

fdupes 1.51

03 Jun 17:05
Compare
Choose a tag to compare

Changes from 1.50 to 1.51:

  • Added support for 64-bit file offsets on 32-bit systems.
  • Using tty for interactive input instead of regular stdin. This is to
    allow feeding filenames via stdin in future versions of fdupes without
    breaking interactive deletion feature.
  • Fixed some typos in --help.
  • Turned C++ style comments into C style comments.