@signageos/front-applet 5.7.0 → 5.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 +10 -1
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +1 -1
- package/docs/js-api/js-api-debug.md +37 -0
- package/docs/js-api/js-api-introduction.md +1 -0
- package/docs/js-api/js-applet-basics.md +9 -0
- package/es6/FrontApplet/Debug/Debug.d.ts +8 -1
- package/es6/FrontApplet/Debug/Debug.js +28 -1
- package/es6/FrontApplet/Debug/Debug.js.map +1 -1
- package/es6/FrontApplet/FrontApplet.d.ts +1 -0
- package/es6/FrontApplet/FrontApplet.js +17 -1
- package/es6/FrontApplet/FrontApplet.js.map +1 -1
- package/es6/FrontApplet/Management/INetworkInfo.d.ts +5 -0
- package/es6/FrontApplet/Management/Wifi.d.ts +2 -1
- package/es6/FrontApplet/Management/Wifi.js +2 -2
- package/es6/FrontApplet/Management/Wifi.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ 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
|
+
## [5.8.0] - 2023-03-16
|
|
8
|
+
### Added
|
|
9
|
+
- Method `sos.refresh()` has capability for relaunch applet
|
|
10
|
+
- Debug has new method `sos.debug.onRemoteDebugChanged()`, which accepts a function that is executed as a callback.
|
|
11
|
+
- Method `sos.debug.isRemoteDebugEnabled()` - information about REMOTE DEBUGGING setting
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Wrong return type on `sos.management.wifi.getConnectedTo()`
|
|
15
|
+
|
|
7
16
|
## [5.7.0] - 2023-02-16
|
|
8
17
|
### Added
|
|
9
18
|
- `device` key for opening serial port is not required now
|
|
@@ -21,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
21
30
|
|
|
22
31
|
## [5.4.2] - 2022-08-30
|
|
23
32
|
### Fixed
|
|
24
|
-
- sos.input.onKeyUp did not work
|
|
33
|
+
- sos.input.onKeyUp did not work correctly on older devices
|
|
25
34
|
|
|
26
35
|
## [5.4.1] - 2022-07-25
|
|
27
36
|
### Fixed
|