Commit Graph
266 Commits
Author SHA1 Message Date
Daniel Faust a43e8b345b Disable failing tests instead of ignoring them
and ignore some tests that are failing when run on AppVeyor.
Ignored tests can and should still be run locally, but always having a
red build badge doesn't serve any purpose.
There are still tests failing randomly - especially on MacOS - though.
2016-11-20 14:25:35 +01:00
Daniel Faust b124c36eca Fix another panic in debounce module related to move events
Fixes #100
2016-11-19 17:04:03 +01:00
Daniel Faust 6f58cce7be Fix panic in debounce module related to move events
Fixes #99
2016-11-14 11:45:56 +01:00
Daniel Faust 53d4405def Merge pull request #98 from itkovian/spelling
Fix spelling of immediately
2016-11-04 17:49:04 +01:00
Andy Georges 8a000747b3 Fix spelling of immediately 2016-11-04 09:54:49 +01:00
Daniel Faust 64f4645ab4 Fix example 2016-10-30 13:10:32 +01:00
Daniel Faust 0805e1a934 clippy fixes 2016-10-30 13:05:28 +01:00
Félix Saparelli 2dbd2e7578 Fix documentation links 2016-10-30 23:35:19 +13:00
Félix Saparelli 6bbc853f3d 3.0.0 2016-10-30 23:06:08 +13:00
Daniel Faust e1e1203bf9 Refactor debounced API
- Move debounce::Event to lib.rs and rename it to DebouncedEvent
- Rename Event to RawEvent
- Rename Watcher::new to Watcher::new_raw and Watcher::debounced to Watcher::new_debounced
2016-10-18 17:45:48 +02:00
Félix Saparelli 8d98175562 Add documentation badge 2016-10-13 13:54:58 +13:00
Daniel Faust ab3c8bb0e1 Merge pull request #96 from brunoqc/patch-1
Remove unused imports in README.md
2016-10-02 15:14:32 +02:00
Bruno Bigras 50d18109ed Remove unused imports in README.md 2016-09-28 10:30:43 -04:00
Daniel Faust 48bbbd49eb Add doc links 2016-09-07 21:21:17 +02:00
Daniel Faust 9067343ecc Add test for event paths and network shares 2016-09-07 21:21:17 +02:00
Daniel Faust b7c93ecc6e inotiy: Use absolute paths
This mirrors the behaviour of osx and windows.
2016-09-07 21:21:17 +02:00
Daniel Faust 758f95c8ac Revert "Windows: Use canonicalized paths"
This reverts commit 73bf4db9d7.

canonicalize() returns \\?\ style paths on windows.
It might be confusing to watch a file or directory using a standard path and receive events with \\?\ style paths.
Using \\?\ style paths is not necessary for watching network shares either.

Closes #95
2016-09-07 21:20:57 +02:00
Daniel Faust e390305aed Fix CLOSE_WRITE in ignored tests 2016-09-05 14:25:45 +02:00
Daniel Faust 8c0ae56a6f Fix documentation link 2016-08-27 09:46:34 +02:00
Daniel Faust 037e40b119 Add documentation link to readme 2016-08-27 09:42:03 +02:00
Daniel Faust 768eeb45c7 Fix changelog 2016-08-15 14:32:44 +02:00
Daniel Faust 8009889ded Improve docs 2016-08-15 14:11:36 +02:00
谢克 ff24a36a36 Add CLOSE_WRITE event (#93)
Linux-only feature, not shimable on other platforms.

The IN_MODIFY event is emitted on a file content change (e.g. via the write() syscall) while IN_CLOSE_WRITE occurs on closing the changed file. It means each change operation causes one IN_MODIFY event (it may occur many times during manipulations with an open file) whereas IN_CLOSE_WRITE is emitted only once (on closing the file).
2016-08-15 11:56:19 +12:00
Félix Saparelli 7b819fc7b1 Bump fsevents version (#91) 2016-08-05 10:22:34 +12:00
Daniel Faust 3935db45b5 Remove Error::NotImplemented since it wasn't used 2016-07-29 18:13:58 +02:00