@signageos/front-display 14.41.1 → 14.42.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 +20 -0
- package/dist/bundle.css +0 -1
- package/dist/bundle.js +1 -1
- package/dist/styles.css +0 -1
- package/package.json +3 -7
- package/dist/bundle.css.map +0 -7
- package/dist/bundle.js.map +0 -7
- package/dist/serviceWorker.js.map +0 -7
- package/dist/webWorker.js.map +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [14.42.0] - 2026-09-01
|
|
10
|
+
### Added
|
|
11
|
+
- Support custom Supra controller applets and report the active controller applet in Supra connection telemetry
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Preserve the supplied host when downloading custom-script archives
|
|
15
|
+
- CI jobs no longer stall indefinitely during `npm ci`. The unused `puppeteer` dev dependency is dropped — nothing imported it and the browser tests resolve Chrome through `CHROME_BIN` — but its postinstall downloaded ~250 MB of Chromium from Google's CDN on every install, which hung jobs for their full timeout once installs stopped using `--ignore-scripts`.
|
|
16
|
+
- Reject incomplete IndexedDB downloads instead of storing partial files
|
|
17
|
+
|
|
18
|
+
## [14.41.2] - 2026-08-24
|
|
19
|
+
### Fixed
|
|
20
|
+
- Socket sync: `sos.sync.cancelWait()` is implemented for the `sync-server` engine — it emits `sync_request_cancel` and rejects every wait pending on the group, not only the most recent one. On a group that isn't joined it is a no-op, matching the `p2p` engine behind the same API.
|
|
21
|
+
- Socket sync: `sos.sync.leaveGroup()` and `close()` reject the waits still pending on the groups they drop, instead of leaving the applet holding a promise nothing can ever settle.
|
|
22
|
+
- Socket sync: `sos.sync.joinGroup()` and `leaveGroup()` no longer hang forever when the sync server's acknowledgement never arrives. Acknowledgements are now bounded (30 s), after which the call rejects and the instance-wide lock is released.
|
|
23
|
+
- Socket sync: losing the connection mid-`joinGroup()`, or losing its acknowledgement, now buffers the group as offline so the reconnect flush re-sends it. Previously the group was silently dropped while the server could still hold the device in it and stall the group's barrier.
|
|
24
|
+
- Report `uid` on `Screen.SaveTakenScreenshot` and new `Device.Screenshot.TakeInstantScreenshotFailed` actions
|
|
25
|
+
- A device whose auto-verification configuration is missing the organization ID now asks for manual verification instead of registering without it
|
|
26
|
+
|
|
7
27
|
## [14.41.1] - 2026-07-27
|
|
8
28
|
### Fixed
|
|
9
29
|
- `management()` returns the application's `stop` again — a refactor left `return { stop }` pointing at the global DOM `stop()`, which crashed Node.js consumers (e.g. display-linux) with `ReferenceError: stop is not defined` and stopped page loading in browsers
|