@calebcall/camera-ui-notify 0.5.0 → 0.5.2

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,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.2] - 2026-07-26
9
+
10
+ ### Fixed
11
+
12
+ - **Deep-link button no longer says "Open camera" on non-detection notifications** — the tap-through
13
+ label was hardcoded and applied to any absolute deep link, so plugin-update, system-update and other
14
+ operational notifications rendered a correct link under an incorrect label. The label is now derived
15
+ from the link's destination: "Open camera" when it opens a specific camera's page, "Open in camera.ui"
16
+ otherwise. Affects Telegram (inline-keyboard button) and Pushover (`url_title`); ntfy, Gotify, Discord
17
+ and the generic webhook carry no label text and were never affected.
18
+
19
+ ## [0.5.1] - 2026-07-25
20
+
21
+ ### Fixed
22
+
23
+ - **gofmt** — corrected struct-literal field alignment in `src/backend/gotify.go` (an inline comment
24
+ inside the payload literal had thrown off `gofmt`). No functional change.
25
+
8
26
  ## [0.5.0] - 2026-07-25
9
27
 
10
28
  ### 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.0",
4
+ "version": "0.5.2",
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.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"
48
+ "@calebcall/camera-ui-notify-darwin-arm64": "0.5.2",
49
+ "@calebcall/camera-ui-notify-darwin-amd64": "0.5.2",
50
+ "@calebcall/camera-ui-notify-linux-amd64": "0.5.2",
51
+ "@calebcall/camera-ui-notify-linux-arm64": "0.5.2",
52
+ "@calebcall/camera-ui-notify-windows-amd64": "0.5.2",
53
+ "@calebcall/camera-ui-notify-windows-arm64": "0.5.2",
54
+ "@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.2",
55
+ "@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.2"
56
56
  },
57
57
  "files": [
58
58
  "bundle.zip",