-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
159 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,24 @@ | ||
ChangeLog | ||
********* | ||
|
||
2014-05-29 Enrico M. Crisostomo <[email protected]> | ||
|
||
release: stable minor release 1.3.3: | ||
|
||
* ChangeLog: Update. | ||
* Makefile.am: Add fswatch-run to the script installation list. | ||
* README.md: | ||
- Add link to the release page (Issue 22). | ||
- Add section about compatibility issues with v. 0.x. | ||
- Add information about fswatch-run in README. | ||
* configure.ac: Bump v. 1.3.3. | ||
* fswatch.7: Update man page. | ||
* fswatch.cpp: Add -o/--one-per-batch option to print a single message | ||
with the number of change events in the current batch. | ||
* fswatch-run: Add shell script to mimic the behaviour of earlier | ||
fswatch versions and launch the specified command when change events | ||
are received. | ||
|
||
2014-04-27 Enrico M. Crisostomo <[email protected]> | ||
|
||
release: stable major release 1.3.2: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
NEWS | ||
**** | ||
|
||
New in 1.0.0: | ||
New in 1.3.3: | ||
|
||
* Add -o/--one-per-batch option to print a single message with the number of | ||
change events in the current batch. | ||
* Add fswatch-run shell script to mimic the behaviour of earlier fswatch | ||
versions and launch the specified command when change events are received. | ||
|
||
New in 1.3.2: | ||
|
||
* fswatch has been merged with fsw (https://github.com/emcrisostomo/fsw). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,9 +18,9 @@ | |
# Process this file with autoconf to produce a configure script. | ||
# | ||
AC_PREREQ([2.69]) | ||
AC_INIT([fswatch], [1.3.2], [[email protected]], [], [https://github.com/alandipert/fswatch]) | ||
AC_INIT([fswatch], [1.3.3], [[email protected]], [], [https://github.com/alandipert/fswatch]) | ||
AC_COPYRIGHT([2014 (C) Enrico M. Crisostomo]) | ||
AC_REVISION([$Revision: 1.3.2-1 $]) | ||
AC_REVISION([$Revision: 1.3.3-1 $]) | ||
AC_CONFIG_SRCDIR([fswatch.cpp]) | ||
AC_CONFIG_AUX_DIR([config]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/sh | ||
|
||
[ $# -eq 2 ] || { | ||
echo "Illegal number of arguments." | ||
exit 1 | ||
} | ||
|
||
command -v xargs >/dev/null 2>&1 || { | ||
echo >&2 "xargs is required. Aborting." | ||
exit 2 | ||
} | ||
|
||
fswatch -o "$1" | xargs -n1 -I{} "$2" |