@calebcall/camera-ui-notify 0.4.2 → 0.5.0
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 +18 -0
- package/bundle.zip +0 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,24 @@ All notable changes to **Notify** are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.0] - 2026-07-25
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **Images now delivered when the publisher uses `ImageURL`** — the official (closed) NVR publishes the
|
|
13
|
+
snapshot as a hosted `ImageURL` rather than inline `Thumbnail` bytes, so the inline-only backends
|
|
14
|
+
(Telegram, Discord, Pushover) delivered text with no image. `SendNotification` now fetches an
|
|
15
|
+
`ImageURL` once (when no inline `Thumbnail` is present) and attaches the bytes, so every backend
|
|
16
|
+
renders the image regardless of which NVR published it. A fetch failure degrades gracefully: the
|
|
17
|
+
`ImageURL` is left intact for URL-capable backends (ntfy/Gotify/webhook) and delivery is never
|
|
18
|
+
aborted. Fetches are capped at 8 MiB.
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **Send-path logging** — `sendNotification` now logs the incoming notification (title, severity, which
|
|
23
|
+
image fields are present), image resolution, and per-device delivery outcome via `Log`/`Success`/
|
|
24
|
+
`Warn`/`Error` (visible without the debug flag), so the send flow is observable in normal operation.
|
|
25
|
+
|
|
8
26
|
## [0.4.2] - 2026-07-25
|
|
9
27
|
|
|
10
28
|
### Updated
|
package/bundle.zip
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"displayName": "Notify",
|
|
3
3
|
"name": "@calebcall/camera-ui-notify",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"description": "A fully-local, multi-backend camera.ui notifier plugin: delivers notifications to ntfy, Gotify, or a generic webhook, entirely on your own hardware with no cloud dependency.",
|
|
6
6
|
"author": "calebcall (https://github.com/calebcall/camera-ui-notify)",
|
|
7
7
|
"main": "./main.go",
|
|
@@ -45,14 +45,14 @@
|
|
|
45
45
|
"os": [],
|
|
46
46
|
"cpu": [],
|
|
47
47
|
"optionalDependencies": {
|
|
48
|
-
"@calebcall/camera-ui-notify-darwin-arm64": "0.
|
|
49
|
-
"@calebcall/camera-ui-notify-darwin-amd64": "0.
|
|
50
|
-
"@calebcall/camera-ui-notify-linux-amd64": "0.
|
|
51
|
-
"@calebcall/camera-ui-notify-linux-arm64": "0.
|
|
52
|
-
"@calebcall/camera-ui-notify-windows-amd64": "0.
|
|
53
|
-
"@calebcall/camera-ui-notify-windows-arm64": "0.
|
|
54
|
-
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.
|
|
55
|
-
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.
|
|
48
|
+
"@calebcall/camera-ui-notify-darwin-arm64": "0.5.0",
|
|
49
|
+
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.0",
|
|
50
|
+
"@calebcall/camera-ui-notify-linux-amd64": "0.5.0",
|
|
51
|
+
"@calebcall/camera-ui-notify-linux-arm64": "0.5.0",
|
|
52
|
+
"@calebcall/camera-ui-notify-windows-amd64": "0.5.0",
|
|
53
|
+
"@calebcall/camera-ui-notify-windows-arm64": "0.5.0",
|
|
54
|
+
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.0",
|
|
55
|
+
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.0"
|
|
56
56
|
},
|
|
57
57
|
"files": [
|
|
58
58
|
"bundle.zip",
|