Formatting
Dependencies
- [2]
Q6MRVSJXHigher resolution for status change times on Unix, and coarser test for 1-second-resolution filesystems - [3]
U56SMNHUBreaking out of potentially infinite loops in follow_oldest_path - [4]
2V33SO6Idont unwrap name() for RemoteRepo::LocalChannel - [5]
3ZAS64J6Solving conflicts - [6]
QU6T6J6WUse the change time in addition to the modified time when detecting untouched files (at least on Unix) - [7]
KGN7KVLAFormatting - [8]
KNB3RZMSFixing path crashes related to the new non-null roots - [9]
SXEYMYF7Fixing the bad changes in history (unfortunately, by rebooting).
Change contents
- replacement in libpijul/src/working_copy/filesystem.rs at line 358
let ctime =std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_millis(attr.ctime() as u64 * 1000 + attr.ctime_nsec() as u64 / 1_000_000);let ctime = std::time::SystemTime::UNIX_EPOCH+ std::time::Duration::from_millis(attr.ctime() as u64 * 1000 + attr.ctime_nsec() as u64 / 1_000_000,); - replacement in libpijul/src/fs.rs at line 902
breakbreak;