2.9 KiB
2.9 KiB
Changelog
v3.0.0
Breaking Changes
- Updates to
node-notifier@v5.0.0
and the the breaking changes from that applies to gulp-notify.
v2.2.0
- Adds support for changing host, port and appName for Growl.
- Adds support for templating on subtitle and open (for Notification Center).
- Adds support for returning options in function argument style.
v2.1.0
- Adds
click
andtimeout
events tonotify
object.
v2.0.1
- Now
onError()
calls.emit('end')
for you on the stream. Making watching and usage easier.
v2.0.0
- Major bump due to node-notifier (underlying module for doing notifications) have changed it's API and thus this has as well. See changelog on node-notifier.
v1.8.0
- Changes notification to continue stream at once (unless when using the stream - i.e. when emitting errors)
- Fixes example gulpfile by returning stream for each task.
v1.7.1
- Fixes issue with Windows 7 and Growl/Bubble conditional.
v1.7.0
- Now supports native windows 7 and earlier notifications, through balloons! This means that gulp-notify can be used on any platform without any extra installs.
v1.6.0
- Now supports native windows notifications!
v1.5.1
- Changes success icon ref #48.
- Changes to show better info notice if no notifier is found ref #48.
- Adds ToC to the README.md.
v1.5.0
- Adds a global way to disable notifier by doing
export DISABLE_NOTIFIER=true
.
v1.4.0
- Adds default icons for regular notification and error. Also adds Frog sound on error on Mac.
v1.3.1
- Updates node-notifier dependency. Adds support for app icon and images for Mac.
v1.3.0
- Adds default setting for failing silently. Introduces concept emitError flag to still emit errors
v1.2.1
- The entire options-object is passed to the notifier, allowing pass additional information to notifiers.
- Adds support for showing errors returned from the notifiers and showing these errors in the console.
v1.1.0
- Bumps dependency for
node-notifier
. Now supports Growl on Windows!
v1.0.0-beta
- Major rewrites and restructure in code
- Lock down on API, changes
setLogLevel
tologLevel
- Exposes logLevel and logger on the withReporter object.
v0.6.2
- Adds another logging level: 0 - none, 1 - error, 2 - all.
v0.6.1
- Added
.onError
method on object created bywithReporter
- Added colored logging on success / error
v0.5.0
- Added API end point
notify.withReporter(Reporter)
as syntactic suger for custom reporter - Updated dependency for node-notfier - now checking if
notify-send
is installed on the Linux box