@calebcall/camera-ui-notify 0.4.0 → 0.4.1

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 CHANGED
@@ -5,6 +5,12 @@ 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.4.1] - 2026-07-25
9
+
10
+ ### Changed
11
+
12
+ - Verification of the automated GitHub Actions publish pipeline (npm Trusted Publishing / OIDC). No functional changes since 0.4.0.
13
+
8
14
  ## [0.4.0] - 2026-07-25
9
15
 
10
16
  ### Added
package/README.md CHANGED
@@ -3,8 +3,7 @@
3
3
  <p align="center">
4
4
  A fully-local, multi-backend <a href="https://github.com/seydx/camera.ui">camera.ui</a> notifier
5
5
  plugin — delivers notifications to a service you control (<a href="https://ntfy.sh">ntfy</a>,
6
- <a href="https://gotify.net">Gotify</a>, Pushover, Telegram, Discord, or a generic webhook),
7
- entirely on your own hardware, with no cloud dependency and no license check.
6
+ <a href="https://gotify.net">Gotify</a>, Pushover, Telegram, Discord, or a generic webhook).
8
7
  </p>
9
8
 
10
9
  ---
@@ -13,18 +12,13 @@
13
12
 
14
13
  camera.ui separates two notification roles:
15
14
 
16
- - **Publishers** (capability `PublishNotifications`) emit events. Our open-source NVR plugin
17
- (`@calebcall/camera-ui-nvr-local`) is a publisher — it calls `NotificationManager.Publish` for
18
- object-detection events.
19
15
  - **Notifiers** (interface `Notifier`) own delivery *devices* and actually deliver notifications.
20
16
  The host's `NotificationManager.notify()` fans every notification out to **all** running plugins
21
17
  implementing `Notifier`.
22
18
 
23
19
  There is intentionally no notifier in the open ecosystem: the closed, official NVR bundled a
24
20
  notifier that pushed to the camera.ui mobile app through camera.ui's proprietary FCM/APNs cloud
25
- relay a license-gated path we neither have credentials for nor can replicate. This plugin takes
26
- the only fully-local road to real background push instead: delivering to a push/webhook service
27
- *you* run or control.
21
+ relay. This plugin takes the only fully-local road to real background push instead: delivering to a push/webhook service *you* run or control.
28
22
 
29
23
  This plugin is a pure **notifier**. It is decoupled from any single publisher — it delivers
30
24
  notifications from **any** publisher, including our NVR plugin's detection events and camera.ui's
@@ -197,8 +191,7 @@ The install slot is:
197
191
  ```
198
192
 
199
193
  and the plugin's config (the selected service and its fields) lives under
200
- `<camera.ui-install>/volume/plugins/storage/@calebcall/camera-ui-notify/` — reinstalling the code
201
- does not touch it.
194
+ `<camera.ui-install>/volume/plugins/storage/@calebcall/camera-ui-notify/` — reinstalling the code does not touch it.
202
195
 
203
196
  > **Unlike the NVR plugin**, there is no hardcoded-package-id requirement here: the camera.ui host
204
197
  > discovers notifiers by the `Notifier` **interface** declared in the plugin's contract, not by a
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.0",
4
+ "version": "0.4.1",
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.4.0",
49
- "@calebcall/camera-ui-notify-darwin-amd64": "0.4.0",
50
- "@calebcall/camera-ui-notify-linux-amd64": "0.4.0",
51
- "@calebcall/camera-ui-notify-linux-arm64": "0.4.0",
52
- "@calebcall/camera-ui-notify-windows-amd64": "0.4.0",
53
- "@calebcall/camera-ui-notify-windows-arm64": "0.4.0",
54
- "@calebcall/camera-ui-notify-linux-amd64-musl": "0.4.0",
55
- "@calebcall/camera-ui-notify-linux-arm64-musl": "0.4.0"
48
+ "@calebcall/camera-ui-notify-darwin-arm64": "0.4.1",
49
+ "@calebcall/camera-ui-notify-darwin-amd64": "0.4.1",
50
+ "@calebcall/camera-ui-notify-linux-amd64": "0.4.1",
51
+ "@calebcall/camera-ui-notify-linux-arm64": "0.4.1",
52
+ "@calebcall/camera-ui-notify-windows-amd64": "0.4.1",
53
+ "@calebcall/camera-ui-notify-windows-arm64": "0.4.1",
54
+ "@calebcall/camera-ui-notify-linux-amd64-musl": "0.4.1",
55
+ "@calebcall/camera-ui-notify-linux-arm64-musl": "0.4.1"
56
56
  },
57
57
  "files": [
58
58
  "bundle.zip",