@calebcall/camera-ui-notify 0.5.2 → 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 +12 -0
- package/bundle.zip +0 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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
|
+
|
|
8
20
|
## [0.5.2] - 2026-07-26
|
|
9
21
|
|
|
10
22
|
### Fixed
|
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.
|
|
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.
|
|
49
|
-
"@calebcall/camera-ui-notify-darwin-amd64": "0.5.
|
|
50
|
-
"@calebcall/camera-ui-notify-linux-amd64": "0.5.
|
|
51
|
-
"@calebcall/camera-ui-notify-linux-arm64": "0.5.
|
|
52
|
-
"@calebcall/camera-ui-notify-windows-amd64": "0.5.
|
|
53
|
-
"@calebcall/camera-ui-notify-windows-arm64": "0.5.
|
|
54
|
-
"@calebcall/camera-ui-notify-linux-amd64-musl": "0.5.
|
|
55
|
-
"@calebcall/camera-ui-notify-linux-arm64-musl": "0.5.
|
|
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",
|