@signageos/front-display 14.7.0 → 14.8.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 +8 -0
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +4 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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
|
+
## [14.8.0] - 2024-11-08
|
|
8
|
+
### Added
|
|
9
|
+
- Support for disabling screenshot capturing using DeviceFeatureFlags
|
|
10
|
+
- Randomization of initial and second telemetry delay to reduce peak load on the server (including screenshots)
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Improved P2P sync resilience against network issues. Reliability of P2P synchronization heavily depends on being able to deliver all message to all devices in the group, because each device has to hold the state of the entire network and constantly update it. If a device misses a message, it will have an inconsistent state and will not be able to recover from it. This change improves the reliability of the P2P synchronization by adding a mechanism that ensures that all messages are delivered to all devices in the group.
|
|
14
|
+
|
|
7
15
|
## [14.7.0] - 2024-10-21
|
|
8
16
|
### Added
|
|
9
17
|
- Acceptance tests now supports timeout for each test
|