Support timer in notifications too

This commit is contained in:
Chris van Marle 2019-03-13 12:01:49 +01:00
parent 4203065a06
commit c0ab2ac297
3 changed files with 7 additions and 5 deletions

View File

@ -19,6 +19,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Added option to split multiple day events in calendar to separate numbered events - Added option to split multiple day events in calendar to separate numbered events
- Slovakian translation - Slovakian translation
- Alerts now can contain Font Awesome icons - Alerts now can contain Font Awesome icons
- Notifications display time can be set in request
### Updated ### Updated
- Bumped the Electron dependency to v3.0.13 to support the most recent Raspbian. [#1500](https://github.com/MichMich/MagicMirror/issues/1500) - Bumped the Electron dependency to v3.0.13 to support the most recent Raspbian. [#1500](https://github.com/MichMich/MagicMirror/issues/1500)

View File

@ -43,10 +43,11 @@ self.sendNotification("SHOW_ALERT", {});
``` ```
### Notification params ### Notification params
| Option | Description | Option | Description
| --------- | ----------- | ------------------ | -----------
| `title` | The title of the notification. <br><br> **Possible values:** `text` or `html` | `title` | The title of the notification. <br><br> **Possible values:** `text` or `html`
| `message` | The message of the notification. <br><br> **Possible values:** `text` or `html` | `message` | The message of the notification. <br><br> **Possible values:** `text` or `html`
| `timer` (optional) | How long the notification should stay visible in ms. <br> If absent, the default `display_time` is used. <br> **Possible values:** `int` `float`
### Alert params ### Alert params

View File

@ -51,7 +51,7 @@ Module.register("alert",{
message: msg, message: msg,
layout: "growl", layout: "growl",
effect: this.config.effect, effect: this.config.effect,
ttl: this.config.display_time ttl: message.timer !== undefined ? message.timer : this.config.display_time
}).show(); }).show();
}, },
show_alert: function(params, sender) { show_alert: function(params, sender) {