Path to this page:
./
devel/hs-fsnotify,
Cross platform library for file change notification
Branch: CURRENT,
Version: 0.4.1.0nb4,
Package name: hs-fsnotify-0.4.1.0nb4,
Maintainer: phoCross platform library for file creation, modification, and deletion
notification. This library builds upon existing libraries for
platform-specific Windows, Mac, and Linux filesystem event
notification.
Required to run:[
devel/hs-async] [
devel/hs-unix-compat] [
lang/ghc88]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 22.249 KB
Version history: (Expand)
- (2024-05-09) Updated to version: hs-fsnotify-0.4.1.0nb4
- (2023-11-02) Updated to version: hs-fsnotify-0.4.1.0nb3
- (2023-10-09) Updated to version: hs-fsnotify-0.4.1.0nb2
- (2023-02-09) Updated to version: hs-fsnotify-0.4.1.0nb1
- (2023-01-26) Updated to version: hs-fsnotify-0.4.1.0
- (2022-02-26) Updated to version: hs-fsnotify-0.3.0.1nb5
CVS history: (Expand)
2023-11-02 07:37:49 by Masatake Daimon | Files touched by this commit (1141) |
Log message:
Revbump all Haskell after updating lang/ghc96
|
2023-11-01 18:52:48 by Masatake Daimon | Files touched by this commit (3) |
Log message:
devel/hs-fsnotify: Support Darwin
|
2023-10-30 14:58:34 by Masatake Daimon | Files touched by this commit (4) |
Log message:
devel/hs-fsnotify: Revert my last change to the PLIST
|
2023-10-30 12:07:18 by Masatake Daimon | Files touched by this commit (4) |
Log message:
devel/hs-fsnotify: Fix build with GHC 9.6
|
2023-10-09 06:55:01 by Masatake Daimon | Files touched by this commit (988) |
Log message:
Bump Haskell packages after updating lang/ghc94
|
2023-01-26 16:08:26 by Masatake Daimon | Files touched by this commit (6) | |
Log message:
devel/hs-fsnotify: Update to 0.4.1.0
Version 0.4.1.0
* Add unliftio lower bound (#106)
* Change the tests back to a test-suite to avoid building for library
users. (#107)
* Fix up Windows compatibility.
* Export WatchConfig type (#108)
Version 0.4.0.1
* Fix compatibility with *BSD.
Version 0.4.0.0
API breaking update.
* New options for threading control (single-threaded, thread-per-watch, and
thread-per-manager)
* Revamp WatchConfig options to be less confusing and reduce boolean
blindness.
* Pull out debouncing stuff, since it was never correct as it simply took
the last event affecting a given file in the debounce period. Debouncing
is currently not included, and should be handled as an orthogonal
concern. I'd like to include some debouncing logic, but didn't want to
delay this release any longer.
- We now expose type DebounceFn = Action -> IO Action, which represents
an arbitrary debouncer. All debouncers should be in the form of one of
these functions.
- A robust state machine debouncer is in progress but not fully
implemented yet; see the state-machine branch.
- Contributions are welcome! We can potentially add multiple debouncers
of different complexity as modules under System.FSNotify.Debounce.*.
* Don't silently fall back to polling on failure of native
watcher. Instead, throw an exception which the user can recover from by
switching to polling.
* Add ModifiedAttributes event type + Linux support
* Add confOnHandlerException to be able to control what happens when a
handler throws an exception.
* WatchConfig constructor is no longer exposed. Instead use defaultConfig
{...} with the accessors.
|
2022-02-26 13:33:46 by Masatake Daimon | Files touched by this commit (7) |
Log message:
devel/hs-fsnotify: Use hinotify on Linux and some BSDs
On any other platforms it falls back to the polling method as the last
resort, which is obviously isn't very practical.
|
2022-02-26 04:58:36 by Masatake Daimon | Files touched by this commit (872) |
Log message:
Bump all Haskell packages after enabling "split sections" in mk/haskell.mk
|