Skip to content

Releases: guard/listen

v0.4.7

13 Sep 20:45
Compare
Choose a tag to compare

Bug fixes

  • Increase latency to 0.25, to avoid useless polling fallback. (@thibaudgg)
  • Change watched inotify events, to avoid duplication callback. (@thibaudgg)
  • #41 Use lstat instead of stat when calculating mtime. (@ebroder)

v0.4.6

13 Sep 20:45
Compare
Choose a tag to compare

Bug fix

v0.4.5

13 Sep 20:46
Compare
Choose a tag to compare

Bug fix

v0.4.4

13 Sep 20:46
Compare
Choose a tag to compare

Bug fixes

v0.4.3

13 Sep 20:46
Compare
Choose a tag to compare

Bug fixes

  • #24 Fail gracefully when the inotify limit is not enough for Listen to function. (reported by @daemonza, fixed by @Maher4Ever)
  • #32 Fix a crash when trying to calculate the checksum of unreadable files. (reported by @nex3, fixed by @Maher4Ever)

Improvements

v0.4.2

13 Sep 20:47
Compare
Choose a tag to compare

Bug fixes

Improvements

  • #17 Use regexp-patterns with the ignore method instead of supplying paths. (reported by @fny, added by @Maher4Ever)
  • Speed improvement when listening to changes in directories with ignored paths. (@Maher4Ever)
  • Added .rbx and .svn to ignored directories. (@Maher4Ever)

v0.4.1

13 Sep 20:47
Compare
Choose a tag to compare

Bug fix

v0.4.0

13 Sep 20:48
Compare
Choose a tag to compare

New features

  • Add Adapter#wait_for_callback. (@Maher4Ever)
  • Add Listen::MultiListener class to listen to multiple directories at once. (@Maher4Ever)
  • Allow passing multiple directories to the Listen.to method. (@Maher4Ever)
  • Add blocking option to Listen#start which can be used to disable blocking the current thread upon starting. (@Maher4Ever)
  • Use absolute-paths in callbacks by default instead of relative-paths. (@Maher4Ever)
  • Add relative_paths option to Listen::Listener to retain the old functionality. (@Maher4Ever)

Improvements

  • Encapsulate thread spawning in the linux-adapter. (@Maher4Ever)
  • Encapsulate thread spawning in the darwin-adapter. (@Maher4Ever with @scottdavis help)
  • Encapsulate thread spawning in the windows-adapter. (@Maher4Ever)
  • Fix linux-adapter bug where Listen would report file-modification events on the parent-directory. (@Maher4Ever)

Change

  • Remove wait_until_listening as adapters doesn't need to run inside threads anymore (@Maher4Ever)

v0.3.3

13 Sep 20:49
Compare
Choose a tag to compare

Improvement

v0.3.2

13 Sep 20:49
Compare
Choose a tag to compare

New feature

  • Add pause/unpause listener's methods. (@thibaudgg)