@signageos/front-display 14.12.4 → 14.14.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 +14 -0
- package/README.md +1 -1
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +4 -4
- package/dist/index.html +1 -1
- package/dist/webWorker.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,20 @@ 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.14.0] - 2025-02-28
|
|
8
|
+
### Added
|
|
9
|
+
- Support for archive custom scripts execution
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Issue with taking instant and periodic screenshots
|
|
13
|
+
|
|
14
|
+
## [14.13.0] - 2025-02-20
|
|
15
|
+
### Fixed
|
|
16
|
+
- Emulator will no longer crash on old systems and will use webkit filesystem instead automatically
|
|
17
|
+
|
|
18
|
+
### Added
|
|
19
|
+
- Support for encrypted fields in applet configuration
|
|
20
|
+
|
|
7
21
|
## [14.12.3] - 2025-02-17
|
|
8
22
|
### Fixed
|
|
9
23
|
- Auto reconnecting (`autoReconnect: boolean`) stream edge cases and race conditions. 1) Some platforms and streams can emit events `error` and `ended` at the same time. This case was fixed. 2) Multiple streams with reconnect enabled is fixed now.
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ In addition, it includes the Emulator, an implementation of the display that can
|
|
|
6
6
|
|
|
7
7
|
## Developing
|
|
8
8
|
```bash
|
|
9
|
-
cp -n config/env.\{
|
|
9
|
+
cp -n config/env.\{a\}.json config/env.development.json # only for the first time
|
|
10
10
|
npx husky install # only for the first time
|
|
11
11
|
npm run develop
|
|
12
12
|
```
|