@signageos/front-applet 6.4.2 → 6.5.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 +4 -0
- package/README.md +1 -1
- package/dist/bundle.js +1 -1
- package/dist/bundle.js.map +1 -1
- package/docs/content/js-command.md +5 -5
- package/docs/index.md +2 -2
- package/docs/management/js-management-monitoring-commands.md +1 -1
- package/docs/management/js-management-native-commands-mdc.md +74 -0
- package/docs/management/js-management-screen.md +1 -1
- package/es6/FrontApplet/FrontApplet.d.ts +2 -0
- package/es6/FrontApplet/FrontApplet.js +2 -0
- package/es6/FrontApplet/FrontApplet.js.map +1 -1
- package/es6/FrontApplet/Native/MDC/CodesMDC.d.ts +149 -0
- package/es6/FrontApplet/Native/MDC/CodesMDC.js +154 -0
- package/es6/FrontApplet/Native/MDC/CodesMDC.js.map +1 -0
- package/es6/FrontApplet/Native/MDC/Mdc.d.ts +20 -0
- package/es6/FrontApplet/Native/MDC/Mdc.js +49 -0
- package/es6/FrontApplet/Native/MDC/Mdc.js.map +1 -0
- package/es6/FrontApplet/Native/Native.d.ts +10 -0
- package/es6/FrontApplet/Native/Native.js +16 -0
- package/es6/FrontApplet/Native/Native.js.map +1 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ 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
|
+
## [6.5.0] - 2024-03-20
|
|
8
|
+
### Added
|
|
9
|
+
- Add support for sending MDC commands on Tizen
|
|
10
|
+
|
|
7
11
|
## [6.4.2] - 2024-01-26
|
|
8
12
|
### Fixed
|
|
9
13
|
- Documentation on several pages is now readable again due to fixes in MD files
|
package/README.md
CHANGED
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
|
|
3
3
|
Javascript SDK for Applet development.
|
|
4
4
|
|
|
5
|
-
For more info, read the [documentation in the `docs` directory](docs/
|
|
5
|
+
For more info, read the [documentation in the `docs` directory](docs/applet-basics.md) (_exposed at https://developers.signageos.io/sdk/_)
|