@apocaliss92/scrypted-advanced-notifier 3.5.8 → 3.5.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +11 -4
- package/dist/plugin.zip +0 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
<details>
|
2
2
|
<summary>Changelog</summary>
|
3
3
|
|
4
|
+
### 3.5.10
|
5
|
+
|
6
|
+
- [BREAKING CHANGE] HaActions and priority have been removed in favour of specific settings for every notifier utilized on a rule
|
7
|
+
- Add fully support to Ntfy, Pushover, HA, Scrypted NVR for: priority (critical too), actions, snoozing
|
8
|
+
|
9
|
+
### 3.5.9
|
10
|
+
|
11
|
+
- Add full support to native NVR notifiers
|
12
|
+
|
4
13
|
### 3.5.7
|
5
14
|
|
6
15
|
- [BREAKING CHANGE] Doorbell sensors won't be used anymore, a detection class Doorbell is now available on doorbell cameras
|
package/README.md
CHANGED
@@ -35,16 +35,22 @@ The plugin will export to MQTT the following entities:
|
|
35
35
|
|
36
36
|
The plugin provides customized way to deliver notifications. It is based on rules. Each rule can be activated based on several factors, i.e. active sensors, time ranges, security system status. Any notifier can be used but the only fully supported currently are (can be extended for any other):
|
37
37
|
|
38
|
+
- Native Scrypted notifiers (i.e. Scrypted iPhone app...)
|
39
|
+
- Ntfy
|
38
40
|
- Homeassistant push notifications
|
39
41
|
- Pushover
|
40
|
-
|
41
|
-
|
42
|
+
|
43
|
+
It's useful to use Pushover or NTFY as notifiers storage, in combination with a homeassistant or NVR one, setting its priority to the lowest. This will allow to have a rich notification and also to store it on another notifier. This because notifiers such as pushover or ntfy do not have a nice support to actions. Following parameters are required to successfully send notifications
|
44
|
+
|
42
45
|
- `Scrypted token`: Token stored on the scrypted entity on homeassistant
|
43
46
|
- `NVR url`: Url pointing to the NVR instance, should be accessible from outside
|
44
47
|
|
45
|
-
|
46
|
-
|
48
|
+
Each notifier will be fully configurable on every rule, with possibility to set: actions, addSnoozeActions or priority.
|
49
|
+
|
50
|
+
All notifiers currently support allow critical notifications.
|
51
|
+
|
47
52
|
Notifications can be disabled for a specific camera on the camera page, Advanced notifier => Notifier => `Notifications enabled` (available on MQTT as well)
|
53
|
+
Notifications can be disabled globally on the general tab of the plugin
|
48
54
|
|
49
55
|
### Scrypted NVR notifiers
|
50
56
|
Plugins supports scripting of the NVR buitin notifiers, following features are available:
|
@@ -52,6 +58,7 @@ Plugins supports scripting of the NVR buitin notifiers, following features are a
|
|
52
58
|
- enablement of notifications
|
53
59
|
- disable specific camera notifications, if it's notifications are disabled. This will require both the camera and the NVR notifier to extend this plugin
|
54
60
|
|
61
|
+
## Rules
|
55
62
|
Rules can be of following types: Detection, Occupancy, Audio, Timelapse. These properties are in common with all, some are hidden until the `Show more configurations` gets activated
|
56
63
|
|
57
64
|
- `Activation type`: when the rule shoul be active
|
package/dist/plugin.zip
CHANGED
Binary file
|
package/package.json
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
"type": "git",
|
6
6
|
"url": "https://github.com/apocaliss92/scrypted-advanced-notifier"
|
7
7
|
},
|
8
|
-
"version": "3.5.
|
8
|
+
"version": "3.5.10",
|
9
9
|
"scripts": {
|
10
10
|
"scrypted-setup-project": "scrypted-setup-project",
|
11
11
|
"prescrypted-setup-project": "scrypted-package-json",
|
@@ -39,7 +39,8 @@
|
|
39
39
|
"DeviceProvider",
|
40
40
|
"MixinProvider",
|
41
41
|
"HttpRequestHandler",
|
42
|
-
"Videoclips"
|
42
|
+
"Videoclips",
|
43
|
+
"PushHandler"
|
43
44
|
],
|
44
45
|
"pluginDependencies": []
|
45
46
|
},
|