summaryrefslogtreecommitdiff
path: root/NEWS.md
Commit message (Collapse)AuthorAgeFilesLines
...
* Facilitate the next release.Wayne Davison2022-01-171-2/+0
|
* More man & NEWS enhancements, including linking to env vars.Wayne Davison2022-01-171-1/+2
|
* More man page and NEWS improvements.Wayne Davison2022-01-161-97/+112
| | | | | | | - Add link targets for all option choices, not just the first one. - Tweak cross-link arg format. - Add more links, including some in the latest NEWS. - Split out a few numbered lists.
* Remove `<a name=...>` tags.Wayne Davison2022-01-151-37/+0
|
* Display ??:??:?? when a time estimate gets too big.Wayne Davison2022-01-131-4/+2
|
* Avoid a -8 in the progress output's remaining timeWayne Davison2022-01-121-0/+5
| | | | | | If the double "remain" value is so large that it overflows an int, make the estimated seconds output as :00 instead of :-8. Similar for the estimated remaining minutes. Support larger hours values.
* Add an arg-protection idiom using backslash-escapesWayne Davison2022-01-091-1/+17
| | | | | | | | The new default is to protect args and options from unintended shell interpretation using backslash escapes. See the new `--old-args` option for a way to get the old-style splitting. This idiom was chosen over making `--protect-args` enabled by default because it is more backward compatible (e.g. it works with rrsync). Fixes #272.
* Improve rrsync usage and some more NEWS tweaks.Wayne Davison2022-01-031-24/+25
|
* More NEWS improvements.Wayne Davison2022-01-031-48/+65
|
* Tweak stderr handling for older BackupPC versionsWayne Davison2022-01-021-0/+3
| | | | | This makes the default for a protocol-28 server process be --stderr=client instead of --stderr=errors. See rsync's github issue #95.
* Some compression improvements.Wayne Davison2021-12-311-1/+6
| | | | | | | The compression level of the first file in the transfer no longer sets the level for all files that follow it. Document that per-file level switching has no current effect (except for a global "dont compress = *" rule in the daemon).
* Add error-code ignoring options to atomic-rsync.Wayne Davison2021-12-301-1/+12
|
* Add a default single-access lock.Wayne Davison2021-12-271-9/+14
|
* Unify md parsing scripts & improve non-man html conversions.Wayne Davison2021-12-271-0/+2
|
* Add more backticks.Wayne Davison2021-12-271-7/+7
|
* rrsync improvementsWayne Davison2021-12-261-3/+15
| | | | | | | | | | | | - Convert rrsync to python. - Enhance security of arg & option checking. - Reject `-L` (`--copy-links`) by default. - Add `-munge` and `-no-del` options. - Tweak the logfile line format. - Created an rrsync man page. - Use `configure --with-rrsync` if you want `make install` to install rrsync and its man page. - Give lsh more rrsync testing support.
* Make rrsync default to munged symlinks.Wayne Davison2021-12-201-1/+3
|
* Add the --info=NONREG setting.Wayne Davison2021-11-031-0/+5
|
* More NEWS changes.Wayne Davison2021-10-301-5/+29
|
* Update the NEWS.Wayne Davison2021-10-191-0/+9
|
* Improve --omit-dir-times & --omit-link-timesWayne Davison2021-10-101-4/+4
| | | | | The code now better handles skipping time setting on dirs and/or links when --atimes and/or --crtimes is specified without --times.
* Tweak atime/crtime code a bit more.Wayne Davison2021-10-101-1/+1
|
* Enable --atimes on macOS.Wayne Davison2021-10-021-0/+2
|
* Add more NEWS updates.Wayne Davison2021-10-011-3/+49
|
* Fix spelling of nanosecond (#220)zgpmax2021-09-261-1/+1
| | | Hyphenating the word just makes it harder to find when nanosecond support was added.
* Change `--info=skip2` messages & add info on attr changes.Wayne Davison2020-09-231-1/+2
|
* Make the extra info on the "exists" messages optional.Wayne Davison2020-09-221-10/+4
|
* Various file comparison improvementsWayne Davison2020-09-221-0/+14
| | | | | | | | | | | | | | | | - Rename unchanged_file() to quick_check_ok(). - Enhance quick_check_ok() to work with non-regular files. - Add a get_file_type() function to the generator. - Use the new functions in the generator code to make the logic simpler. - Fix a bug where the `--alt-dest` functions were not checking if a special file fully matched the non-permission mode bits before deciding if we have found an alt-dest match. - Enhance the `--info=skip --ignore-existing` output to include extra info on if the existing file differs in type or passes the standard quick-check logic. - Add `--info=skip2` that authorizes rsync to perform a slow checksum "quick check" when ignoring existing files. This provides the uptodate and differs info even if we need to checksum a file to get it.
* More NEWS updates.Wayne Davison2020-09-211-0/+9
|
* Skip an append if sender's file gets shorter.Wayne Davison2020-09-211-0/+4
| | | | Fixes bug #90. Similar to a pull request by Tomas Korbar.
* Avoid spurious "is newer" messages with `--update`.Wayne Davison2020-09-211-0/+4
|
* Update the NEWS.Wayne Davison2020-09-081-2/+19
|
* Setup for 3.2.4dev.Wayne Davison2020-08-271-0/+15
|
* Preparing for release of 3.2.3v3.2.3Wayne Davison2020-08-061-2/+2
|
* Make configure less annoyingWayne Davison2020-07-301-0/+3
| | | | | - Improve configure's notifications around the new features. - Improve the info about man page generation and fetching.
* Need 3.2.3 line in table & tweak to release script.Wayne Davison2020-07-271-0/+1
|
* A couple more NEWS updates.Wayne Davison2020-07-271-0/+5
|
* Don't allow a completely empty source arg.Wayne Davison2020-07-271-0/+3
|
* Complain about a missing/non-dir `--temp-dir`.Wayne Davison2020-07-261-0/+3
|
* Fix issue where rdev major could get out of syncWayne Davison2020-07-261-2/+6
| | | | | | If the receiving side read a hard-linked device, it needs to set the value of rdev_major to the value it snags from the hard-linked data because the sender set their rdev_major value for that file entry.
* More spelling fixes.Wayne Davison2020-07-251-22/+22
|
* Change new stderr options to `--stderr=MODE`.Wayne Davison2020-07-251-11/+12
|
* Tweak NEWS & src_file().Wayne Davison2020-07-241-0/+2
|
* Add `--errors2stderr` & `--msgs2protocol` options.Wayne Davison2020-07-241-0/+4
|
* More changes to NEWS, README, INSTALL, & configure.acWayne Davison2020-07-241-2/+4
|
* Add --mkpath option. Fixes bugzilla bug 4621.Wayne Davison2020-07-231-0/+3
|
* Improve error output for local & remote-shell xfersWayne Davison2020-07-231-0/+8
|
* Add --crtimes option.Wayne Davison2020-07-221-0/+3
|
* Update NEWS.Wayne Davison2020-07-211-1/+5
|
* Add the `name converter` daemon parameter.Wayne Davison2020-07-171-4/+10
| | | | | | | | This is based on the long-standing patch but with the protocol changed to just use newlines as delimiters instead of null chars (since names should not contain a newline AND it makes it easier to write a helper script). Lots of other small improvements and a better default value for "numeric ids" when using "use chroot" with "name converter".