@signageos/front-applet 5.0.0-beta.8 → 5.0.1
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 +71 -1
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/docs/js-api/js-api-introduction.md +37 -22
- package/docs/js-api/js-applet-basics.md +4 -0
- package/docs/js-api/js-browser.md +12 -6
- package/docs/js-api/js-command.md +33 -12
- package/docs/js-api/js-display.md +48 -0
- package/docs/js-api/js-file-system.md +106 -7
- package/docs/js-api/js-hardware-serial.md +2 -2
- package/docs/js-api/js-input.md +27 -2
- package/docs/js-api/js-offline-cache-media-files.md +19 -7
- package/docs/js-api/js-video-stream.md +3 -3
- package/docs/management-api/10-js-management-application.md +18 -1
- package/docs/management-api/11-js-management-network.md +122 -3
- package/docs/management-api/13-js-management-wifi.md +4 -0
- package/docs/management-api/2-js-management-firmware.md +4 -0
- package/docs/management-api/5-js-management-screen.md +8 -4
- package/docs/management-api/6-js-management-time.md +17 -1
- package/es6/FrontApplet/Browser/Browser.d.ts +16 -6
- package/es6/FrontApplet/Browser/Browser.js +39 -12
- package/es6/FrontApplet/Browser/Browser.js.map +1 -1
- package/es6/FrontApplet/Browser/IOpenLinkOptions.d.ts +8 -0
- package/es6/FrontApplet/Browser/IOpenLinkOptions.js +4 -0
- package/es6/FrontApplet/Browser/IOpenLinkOptions.js.map +1 -1
- package/es6/FrontApplet/Browser/events.d.ts +15 -0
- package/es6/FrontApplet/Browser/events.js +14 -0
- package/es6/FrontApplet/Browser/events.js.map +1 -0
- package/es6/FrontApplet/Browser/messages.d.ts +5 -0
- package/es6/FrontApplet/Browser/messages.js +3 -0
- package/es6/FrontApplet/Browser/messages.js.map +1 -0
- package/es6/FrontApplet/Debug/Debug.d.ts +22 -0
- package/es6/FrontApplet/Debug/Debug.js +35 -0
- package/es6/FrontApplet/Debug/Debug.js.map +1 -0
- package/es6/FrontApplet/Exchange/Exchange.d.ts +7 -0
- package/es6/FrontApplet/Exchange/Exchange.js +28 -0
- package/es6/FrontApplet/Exchange/Exchange.js.map +1 -0
- 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.d.ts +4 -2
- package/es6/FrontApplet/FrontApplet.js +20 -7
- package/es6/FrontApplet/FrontApplet.js.map +1 -1
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.d.ts +30 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.js +92 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/BarcodeScanner.js.map +1 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/IBarcodeScannerDataMessage.d.ts +5 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/IBarcodeScannerDataMessage.js +3 -0
- package/es6/FrontApplet/Hardware/BarcodeScanner/IBarcodeScannerDataMessage.js.map +1 -0
- package/es6/FrontApplet/Hardware/Hardware.d.ts +4 -1
- package/es6/FrontApplet/Hardware/Hardware.js +3 -0
- package/es6/FrontApplet/Hardware/Hardware.js.map +1 -1
- package/es6/FrontApplet/Management/INetworkInfo.d.ts +26 -2
- package/es6/FrontApplet/Management/INetworkInfo.js +7 -1
- package/es6/FrontApplet/Management/INetworkInfo.js.map +1 -1
- package/es6/FrontApplet/Management/Network.d.ts +18 -2
- package/es6/FrontApplet/Management/Network.js +51 -9
- 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/FrontApplet/Management/helpers/SecurityHelper.js +1 -1
- package/es6/FrontApplet/Validate/Validate.js +1 -1
- package/es6/FrontApplet/Validate/Validate.js.map +1 -1
- package/es6/Monitoring/Montoring.js +1 -1
- package/es6/Monitoring/Montoring.js.map +1 -1
- package/package.json +6 -33
- package/docs/js-api/js-timing.md +0 -54
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,81 @@ 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.1] - 2022-01-25
|
|
8
|
+
### Fixed
|
|
9
|
+
- adjusted documentation to better reflect naming of JS SDK
|
|
10
|
+
|
|
11
|
+
## [5.0.0] - 2022-01-13
|
|
8
12
|
### Changed
|
|
9
13
|
- onceEnded promise on video will be rejected when video is stopped before it's end
|
|
10
14
|
- Video and Stream methods checks coordinations and warn when are in wrong format or throws error when are not castable to integer
|
|
11
15
|
|
|
16
|
+
## [4.15.0] - 2021-12-15
|
|
17
|
+
### Added
|
|
18
|
+
- Management Time setManual accepts an object with absolute datetime
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Updated documentation
|
|
22
|
+
|
|
23
|
+
## [4.14.0] - 2021-12-03
|
|
24
|
+
### Added
|
|
25
|
+
- Wi-Fi API connect to a hidden network
|
|
26
|
+
|
|
27
|
+
## [4.13.0] - 2021-11-26
|
|
28
|
+
### Added
|
|
29
|
+
- FS API appendFile
|
|
30
|
+
- Management Network API disableInterface
|
|
31
|
+
|
|
32
|
+
## [4.12.0] - 2021-10-04
|
|
33
|
+
### Added
|
|
34
|
+
- Headless Browser API
|
|
35
|
+
|
|
36
|
+
## [4.11.0] - 2021-09-28
|
|
37
|
+
### Added
|
|
38
|
+
- Listen for when the custom browser closes
|
|
39
|
+
|
|
40
|
+
### Fixed
|
|
41
|
+
- Fixed link to Firmware `getType()`
|
|
42
|
+
- Barcode scanner API
|
|
43
|
+
|
|
44
|
+
## [4.10.4] - 2021-04-14
|
|
45
|
+
### Fixed
|
|
46
|
+
- Added mising documentation for `sos.management.app.getType()`
|
|
47
|
+
|
|
48
|
+
## [4.10.3] - 2021-04-12
|
|
49
|
+
### Fixed
|
|
50
|
+
- Added mising documentation for `sos.display.supports()`
|
|
51
|
+
- Fixed warning in Serial API - suggest using `sos.display.supports()` instead of `sos.management.supports()`
|
|
52
|
+
|
|
53
|
+
## [4.10.2] - 2021-03-09
|
|
54
|
+
### Fixed
|
|
55
|
+
- Improved documentation of IR Remote control Input
|
|
56
|
+
|
|
57
|
+
## [4.10.1] - 2021-03-05
|
|
58
|
+
### Fixed
|
|
59
|
+
- Improved documentation of Applet Commands
|
|
60
|
+
- Better parameters description in video stream API documentation
|
|
61
|
+
|
|
62
|
+
## [4.10.0] - 2021-02-09
|
|
63
|
+
### Added
|
|
64
|
+
- New, improved versions of `sos.management.network.setManual()` and `sos.management.network.setDHCP()` which allow to specify an exact network interface in case there are multiple interfaces of the same type
|
|
65
|
+
|
|
66
|
+
## [4.9.1] - 2021-02-05
|
|
67
|
+
### Fixed
|
|
68
|
+
- Fix sos.management.network.listInterfaces() return type
|
|
69
|
+
|
|
70
|
+
## [4.9.0] - 2021-02-04
|
|
71
|
+
### Added
|
|
72
|
+
- Integrate Weinre debugging tool to applet iframe when appropriate message come from front-display
|
|
73
|
+
- sos.management.network.listInterfaces()
|
|
74
|
+
|
|
75
|
+
### Deprecated
|
|
76
|
+
- `sos.management.network.getActiveInfo()`
|
|
77
|
+
|
|
78
|
+
### Fixed
|
|
79
|
+
- Added files system example for creating multiple directories at once
|
|
80
|
+
- Added better explanation how to change orientation on Tizen
|
|
81
|
+
|
|
12
82
|
## [4.8.1] - 2021-01-18
|
|
13
83
|
### Fixed
|
|
14
84
|
- Missing documentation for sos.browser.close()
|