@signageos/front-applet 7.0.0 → 7.1.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 +11 -0
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/docs/management/js-management-management.md +37 -11
- package/docs/management/js-management-native-commands-mdc.md +15 -0
- package/es6/FrontApplet/Iframe/Iframe.d.ts +1 -1
- package/es6/FrontApplet/Management/Management.d.ts +2 -0
- package/es6/FrontApplet/Management/Management.js +17 -0
- package/es6/FrontApplet/Management/Management.js.map +1 -1
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.d.ts +1 -0
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.js +12 -0
- package/es6/FrontApplet/NativeCommands/MDC/Mdc.js.map +1 -1
- package/es6/bundle.d.ts +1 -0
- package/es6/bundle.js +21 -1
- package/es6/bundle.js.map +1 -1
- package/es6/fpath.d.ts +89 -0
- package/es6/fpath.js +132 -0
- package/es6/fpath.js.map +1 -0
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,23 @@ 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.1.0] - 2025-02-11
|
|
8
|
+
### Added
|
|
9
|
+
- Add fpath utility
|
|
10
|
+
- Add support for sending MDC with subcommands on Tizen `sos.native.mdc.sendOneRaw()`
|
|
11
|
+
- Support for changing hardware acceleration `sos.management.setHardwareAcceleration()` and `sos.management.isHardwareAccelerationEnabled()`
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Type `sos.config` object properly
|
|
15
|
+
|
|
7
16
|
## [7.0.0] - 2025-02-06
|
|
8
17
|
### Added
|
|
9
18
|
- Add support for new monitoring commands for testing purposes
|
|
19
|
+
- Add fpath utility
|
|
10
20
|
|
|
11
21
|
### Fixed
|
|
12
22
|
- Incorrect implementation of peer and auto recovery commands
|
|
23
|
+
- Fix sos, frontApplet and monitoring exports in the bundle
|
|
13
24
|
|
|
14
25
|
### Changed
|
|
15
26
|
- Added Typescript interface for every JS API class
|