UNPKG

2.96 kBMarkdownView Raw
1Changelog
2===
3
4#### `v3.0.0`
5
6##### Breaking Changes
7
81. Updates to `node-notifier@v5.0.0` and the the [breaking changes from that](https://github.com/mikaelbr/node-notifier/blob/master/CHANGELOG.md#v500) applies to gulp-notify.
9
10#### `v2.2.0`
111. Adds support for changing host, port and appName for Growl.
122. Adds support for templating on subtitle and open (for Notification Center).
133. Adds support for returning options in function argument style.
14
15#### `v2.1.0`
161. Adds `click` and `timeout` events to `notify` object.
17
18#### `v2.0.1`
191. Now `onError()` calls `.emit('end')` for you on the stream. Making watching and usage easier.
20
21#### `v2.0.0`
221. Major bump due to node-notifier (underlying module for doing notifications) have changed it's API and thus this has as well.
23See [changelog on node-notifier](https://github.com/mikaelbr/node-notifier/blob/master/CHANGELOG.md#v400).
24
25#### `v1.8.0`
261. Changes notification to continue stream at once (unless when using the stream - i.e. when emitting errors)
272. Fixes example gulpfile by returning stream for each task.
28
29
30#### `v1.7.1`
311. Fixes issue with Windows 7 and Growl/Bubble conditional.
32
33#### `v1.7.0`
341. 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.
35
36#### `v1.6.0`
371. Now supports native windows notifications!
38
39#### `v1.5.1`
401. Changes success icon [ref #48](https://github.com/mikaelbr/gulp-notify/issues/48).
412. Changes to show better info notice if no notifier is found [ref #48](https://github.com/mikaelbr/gulp-notify/issues/49).
423. Adds ToC to the README.md.
43
44#### `v1.5.0`
451. Adds a global way to disable notifier by doing `export DISABLE_NOTIFIER=true`.
46
47#### `v1.4.0`
481. Adds default icons for regular notification and error. Also adds Frog sound on error on Mac.
49
50#### `v1.3.1`
511. Updates node-notifier dependency. Adds support for app icon and images for Mac.
52
53#### `v1.3.0`
541. Adds default setting for failing silently. Introduces concept emitError flag to still emit errors
55
56#### `v1.2.1`
571. The entire options-object is passed to the notifier, allowing pass additional information to notifiers.
582. Adds support for showing errors returned from the notifiers and showing these errors in the console.
59
60#### `v1.1.0`
611. Bumps dependency for `node-notifier`. Now supports Growl on Windows!
62
63#### `v1.0.0-beta`
641. Major rewrites and restructure in code
652. Lock down on API, changes `setLogLevel` to `logLevel`
663. Exposes logLevel and logger on the withReporter object.
67
68#### `v0.6.2`
691. Adds another logging level: 0 - none, 1 - error, 2 - all.
70
71#### `v0.6.1`
721. Added `.onError` method on object created by `withReporter`
732. Added colored logging on success / error
74
75#### `v0.5.0`
761. Added API end point `notify.withReporter(Reporter)` as syntactic suger for custom reporter
772. Updated dependency for node-notfier - now checking if `notify-send` is installed on the Linux box