@calebcall/camera-ui-notify 0.5.1 → 0.5.3

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,29 @@ 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.3] - 2026-07-29
9
+
10
+ ### Changed
11
+
12
+ - **Go SDK pinned to `v1.1.18`** (from `v1.1.11`) — routine catch-up ahead of camera.ui's upcoming sensor
13
+ refactor, which makes sensors standalone devices and deprecates the camera-bound sensor registration
14
+ functions (`CameraDevice.AddSensor`/`GetSensor`/`GetSensors`/`GetSensorsByType`). Notify calls none of
15
+ those and declares `provides: []`/`consumes: []`, so no source change was required; catching up now
16
+ keeps any future breakage attributable to one change rather than to seven versions plus a refactor.
17
+ No behaviour change — the `NotifierInterface`, `Notification` and `NotifierDevice` types are identical
18
+ between the two SDK versions.
19
+
20
+ ## [0.5.2] - 2026-07-26
21
+
22
+ ### Fixed
23
+
24
+ - **Deep-link button no longer says "Open camera" on non-detection notifications** — the tap-through
25
+ label was hardcoded and applied to any absolute deep link, so plugin-update, system-update and other
26
+ operational notifications rendered a correct link under an incorrect label. The label is now derived
27
+ from the link's destination: "Open camera" when it opens a specific camera's page, "Open in camera.ui"
28
+ otherwise. Affects Telegram (inline-keyboard button) and Pushover (`url_title`); ntfy, Gotify, Discord
29
+ and the generic webhook carry no label text and were never affected.
30
+
8
31
  ## [0.5.1] - 2026-07-25
9
32
 
10
33
  ### Fixed
package/README.md CHANGED
@@ -79,7 +79,7 @@ Hosted push to the [Pushover](https://pushover.net) app.
79
79
  | `token` | yes | Pushover application API token/key. |
80
80
  | `user` | yes | Your Pushover user or group key. |
81
81
 
82
- Delivery: `POST https://api.pushover.net/1/messages.json` with title/message and a priority (Info→0 normal, everything higher→1 high; never emergency). The snapshot **image** is sent as an `attachment`, and an absolute deep link becomes a supplementary `url`.
82
+ Delivery: `POST https://api.pushover.net/1/messages.json` with title/message and a priority (Info→0 normal, everything higher→1 high; never emergency). The snapshot **image** is sent as an `attachment`, and an absolute deep link becomes a supplementary `url` titled "Open camera" for a detection or "Open in camera.ui" for anything else.
83
83
 
84
84
  ### Telegram
85
85
 
@@ -90,7 +90,7 @@ Delivers to a chat via a [Telegram bot](https://core.telegram.org/bots).
90
90
  | `token` | yes | Bot token from @BotFather. |
91
91
  | `chat` | yes | Chat ID to deliver to. |
92
92
 
93
- Delivery: `sendPhoto` (with the snapshot **image** + caption) when a thumbnail is present, otherwise `sendMessage`. An absolute deep link is added as an inline "Open camera" button.
93
+ Delivery: `sendPhoto` (with the snapshot **image** + caption) when a thumbnail is present, otherwise `sendMessage`. An absolute deep link is added as an inline button, labelled "Open camera" when it opens a camera page and "Open in camera.ui" otherwise.
94
94
 
95
95
  ### Discord
96
96
 
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.5.1",
4
+ "version": "0.5.3",
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.5.1",
49
- "@calebcall/camera-ui-notify-darwin-amd64": "0.5.1",
50
- "@calebcall/camera-ui-notify-linux-amd64": "0.5.1",
51
- "@calebcall/camera-ui-notify-linux-arm64": "0.5.1",
52
- "@calebcall/camera-ui-notify-windows-amd64": "0.5.1",
53
- "@calebcall/camera-ui-notify-windows-arm64": "0.5.1",
54
- "@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.1",
55
- "@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.1"
48
+ "@calebcall/camera-ui-notify-darwin-arm64": "0.5.3",
49
+ "@calebcall/camera-ui-notify-darwin-amd64": "0.5.3",
50
+ "@calebcall/camera-ui-notify-linux-amd64": "0.5.3",
51
+ "@calebcall/camera-ui-notify-linux-arm64": "0.5.3",
52
+ "@calebcall/camera-ui-notify-windows-amd64": "0.5.3",
53
+ "@calebcall/camera-ui-notify-windows-arm64": "0.5.3",
54
+ "@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.3",
55
+ "@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.3"
56
56
  },
57
57
  "files": [
58
58
  "bundle.zip",