@signageos/front-applet 5.6.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.
Files changed (35) hide show
  1. package/CHANGELOG.md +17 -1
  2. package/dist/bundle.js +1 -1
  3. package/dist/bundle.js.map +1 -1
  4. package/docs/js-api/js-api-debug.md +37 -0
  5. package/docs/js-api/js-api-introduction.md +1 -0
  6. package/docs/js-api/js-applet-basics.md +9 -0
  7. package/docs/js-api/js-file-system.md +4 -0
  8. package/docs/js-api/js-hardware-serial.md +14 -8
  9. package/docs/js-api/js-iframes.md +2 -0
  10. package/docs/js-api/js-proof-of-play.md +62 -0
  11. package/docs/management-api/1-js-management.md +8 -0
  12. package/es6/FrontApplet/Debug/Debug.d.ts +8 -1
  13. package/es6/FrontApplet/Debug/Debug.js +28 -1
  14. package/es6/FrontApplet/Debug/Debug.js.map +1 -1
  15. package/es6/FrontApplet/FrontApplet.d.ts +3 -0
  16. package/es6/FrontApplet/FrontApplet.js +19 -1
  17. package/es6/FrontApplet/FrontApplet.js.map +1 -1
  18. package/es6/FrontApplet/Hardware/ISerialPortOptions.d.ts +1 -1
  19. package/es6/FrontApplet/Management/INetworkInfo.d.ts +5 -0
  20. package/es6/FrontApplet/Management/Management.d.ts +1 -0
  21. package/es6/FrontApplet/Management/Management.js +8 -0
  22. package/es6/FrontApplet/Management/Management.js.map +1 -1
  23. package/es6/FrontApplet/Management/Wifi.d.ts +2 -1
  24. package/es6/FrontApplet/Management/Wifi.js +2 -2
  25. package/es6/FrontApplet/Management/Wifi.js.map +1 -1
  26. package/es6/FrontApplet/ProofOfPlay/IRecordItemOptions.d.ts +10 -0
  27. package/es6/FrontApplet/ProofOfPlay/IRecordItemOptions.js +3 -0
  28. package/es6/FrontApplet/ProofOfPlay/IRecordItemOptions.js.map +1 -0
  29. package/es6/FrontApplet/ProofOfPlay/ProofOfPlay.d.ts +7 -0
  30. package/es6/FrontApplet/ProofOfPlay/ProofOfPlay.js +41 -0
  31. package/es6/FrontApplet/ProofOfPlay/ProofOfPlay.js.map +1 -0
  32. package/es6/FrontApplet/ProofOfPlay/ProofOfPlayType.d.ts +4 -0
  33. package/es6/FrontApplet/ProofOfPlay/ProofOfPlayType.js +8 -0
  34. package/es6/FrontApplet/ProofOfPlay/ProofOfPlayType.js.map +1 -0
  35. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -4,6 +4,22 @@ 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
+
16
+ ## [5.7.0] - 2023-02-16
17
+ ### Added
18
+ - `device` key for opening serial port is not required now
19
+ - Proof of play initial implementation
20
+ - Update iframe documentation about a potential issue with zipping file using python
21
+ - Device Info Brand -> `sos.management.getBrand()`
22
+
7
23
  ## [5.6.0] - 2023-01-10
8
24
  ### Added
9
25
  - Update serial port documentation
@@ -14,7 +30,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
14
30
 
15
31
  ## [5.4.2] - 2022-08-30
16
32
  ### Fixed
17
- - sos.input.onKeyUp did not work corectly on older devices
33
+ - sos.input.onKeyUp did not work correctly on older devices
18
34
 
19
35
  ## [5.4.1] - 2022-07-25
20
36
  ### Fixed