@signageos/front-display 11.0.0 → 11.2.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 +12 -0
- package/dist/bundle.js +420 -253
- package/dist/bundle.js.map +1 -1
- package/dist/webWorker.js +10949 -1
- package/dist/webWorker.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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
|
+
## [11.2.0] - 2023-01-24
|
|
8
|
+
### Added
|
|
9
|
+
- Switchable check that compares device and server time and when differ a lot it prevents socket from connection
|
|
10
|
+
- `device` key for opening serial port is not required now
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Correct telemetry and settings types split
|
|
14
|
+
|
|
15
|
+
## [11.1.0] - 2022-11-29
|
|
16
|
+
### Added
|
|
17
|
+
- P2PSynchronizer for synchronizing devices peer-to-peer over UDP in local network
|
|
18
|
+
|
|
7
19
|
## [11.0.0] - 2022-11-25
|
|
8
20
|
### Added
|
|
9
21
|
- IndexedDB FileSystem implementation for Emulator under query param `?fileSystem=indexed_db` (support all modern browsers)
|