X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/3b153409662d57bb97d8950e37418e96af008407..b20fe0e6ac3aaee633580d44bb03501688185a5a:/NEWS diff --git a/NEWS b/NEWS index dc3c770d..1959058f 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,9 @@ Changes since 2.6.6: BUG FIXES: + - Fixed a really old bug that caused --checksum (-c) to checksum all the + files during the delete scan! + - Made hard-links work with symlinks and devices again. - If a device-file/special-file changes permissions, rsync now updates the @@ -43,7 +46,12 @@ Changes since 2.6.6: - Added the --compress-level option to allow you to set how aggressive rsync's compression should be (the option implies --compress). - - Enhanced the parsing of the SIZE value for --min-size and --max-size. + - Enhanced the parsing of the SIZE value for --min-size and --max-size + to allow easy entry of multiples of 1000 (instead of just multiples + of 1024) and off-by-one values too (e.g. --max-size=8mb-1). + + - The options --human-readable (-m) and --si change the output of the + --stats and the end-of-run summary to be easier to read. - If lutimes() and/or lchmod() are around, use them to allow the preservation of attributes on symlinks. @@ -65,6 +73,9 @@ Changes since 2.6.6: "--archive --no-owner") can be used to turn off the preservation of file ownership that is implied by -a. + - Added the --chmod=MODE option that allows the destination permissions + to be changed from the source permissions. E.g. --chmod=g+w,o-rwx + - Allow the --temp-dir option to be specified when starting a daemon, which sets the default temporary directory for incoming files.