@signageos/front-applet 5.0.0-rc.1 → 5.0.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 +17 -1
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/docs/js-api/js-api-introduction.md +11 -12
- package/docs/js-api/js-applet-basics.md +4 -0
- package/docs/js-api/js-browser.md +0 -1
- package/docs/js-api/js-file-system.md +88 -6
- package/docs/management-api/11-js-management-network.md +36 -1
- package/docs/management-api/13-js-management-wifi.md +4 -0
- package/docs/management-api/5-js-management-screen.md +1 -1
- package/docs/management-api/6-js-management-time.md +17 -1
- package/es6/FrontApplet/Exchange/Exchange.d.ts +1 -1
- package/es6/FrontApplet/FileSystem/FileSystem.d.ts +1 -0
- package/es6/FrontApplet/FileSystem/FileSystem.js +10 -0
- package/es6/FrontApplet/FileSystem/FileSystem.js.map +1 -1
- package/es6/FrontApplet/FrontApplet.js +13 -6
- package/es6/FrontApplet/FrontApplet.js.map +1 -1
- package/es6/FrontApplet/Management/INetworkInfo.d.ts +1 -0
- package/es6/FrontApplet/Management/INetworkInfo.js.map +1 -1
- package/es6/FrontApplet/Management/Network.d.ts +1 -0
- package/es6/FrontApplet/Management/Network.js +9 -0
- package/es6/FrontApplet/Management/Network.js.map +1 -1
- package/es6/FrontApplet/Management/Time.d.ts +18 -0
- package/es6/FrontApplet/Management/Time.js +16 -4
- package/es6/FrontApplet/Management/Time.js.map +1 -1
- package/es6/FrontApplet/Management/Wifi.d.ts +13 -1
- package/es6/FrontApplet/Management/Wifi.js +12 -1
- package/es6/FrontApplet/Management/Wifi.js.map +1 -1
- package/es6/Monitoring/Montoring.js +1 -1
- package/es6/Monitoring/Montoring.js.map +1 -1
- package/package.json +4 -31
- package/docs/js-api/js-timing.md +0 -54
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,27 @@ 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
|
-
## [
|
|
7
|
+
## [5.0.0] - 2022-01-13
|
|
8
8
|
### Changed
|
|
9
9
|
- onceEnded promise on video will be rejected when video is stopped before it's end
|
|
10
10
|
- Video and Stream methods checks coordinations and warn when are in wrong format or throws error when are not castable to integer
|
|
11
11
|
|
|
12
|
+
## [4.15.0] - 2021-12-15
|
|
13
|
+
### Added
|
|
14
|
+
- Management Time setManual accepts an object with absolute datetime
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
- Updated documentation
|
|
18
|
+
|
|
19
|
+
## [4.14.0] - 2021-12-03
|
|
20
|
+
### Added
|
|
21
|
+
- Wi-Fi API connect to a hidden network
|
|
22
|
+
|
|
23
|
+
## [4.13.0] - 2021-11-26
|
|
24
|
+
### Added
|
|
25
|
+
- FS API appendFile
|
|
26
|
+
- Management Network API disableInterface
|
|
27
|
+
|
|
12
28
|
## [4.12.0] - 2021-10-04
|
|
13
29
|
### Added
|
|
14
30
|
- Headless Browser API
|