@signageos/front-applet 5.0.1 → 5.2.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 +28 -10
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/docs/js-api/js-api-introduction.md +30 -30
- package/docs/js-api/js-applet-basics.md +2 -1
- package/docs/js-api/js-applet-resources.md +2 -2
- package/docs/js-api/js-browser.md +1 -1
- package/docs/js-api/js-file-system.md +1 -1
- package/docs/js-api/js-input.md +1 -1
- package/docs/js-api/js-loading-fonts.md +1 -1
- package/docs/js-api/js-monitoring-commands.md +1 -1
- package/docs/js-api/js-offline-cache-media-files.md +3 -3
- package/docs/js-api/js-offline-cache-simple-data.md +2 -2
- package/docs/js-api/js-sensors.md +1 -1
- package/docs/js-api/js-sync-playback.md +24 -3
- package/docs/js-api/js-video-inputs-internal-ports.md +1 -1
- package/docs/js-api/js-video-stream.md +2 -2
- package/docs/js-api/js-video.md +1 -1
- package/docs/management-api/10-js-management-application.md +2 -2
- package/docs/management-api/2-js-management-firmware.md +17 -3
- package/docs/management-api/2-js-management-os.md +33 -0
- package/docs/management-api/5-js-management-screen.md +1 -1
- package/docs/management-api/6-js-management-time.md +1 -1
- package/docs/management-api/9-js-management-debug.md +2 -2
- package/es6/FrontApplet/DeviceInfo/DeviceInfo.d.ts +11 -0
- package/es6/FrontApplet/DeviceInfo/DeviceInfo.js +35 -0
- package/es6/FrontApplet/DeviceInfo/DeviceInfo.js.map +1 -0
- package/es6/FrontApplet/DeviceInfo/DeviceInfoHelper.d.ts +8 -0
- package/es6/FrontApplet/DeviceInfo/DeviceInfoHelper.js +3 -0
- package/es6/FrontApplet/DeviceInfo/DeviceInfoHelper.js.map +1 -0
- 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/Management/IOSInfo.d.ts +11 -0
- package/es6/FrontApplet/Management/IOSInfo.js +3 -0
- package/es6/FrontApplet/Management/IOSInfo.js.map +1 -0
- package/es6/FrontApplet/Management/Management.d.ts +2 -0
- package/es6/FrontApplet/Management/Management.js +2 -0
- package/es6/FrontApplet/Management/Management.js.map +1 -1
- package/es6/FrontApplet/Management/OS.d.ts +9 -0
- package/es6/FrontApplet/Management/OS.js +30 -0
- package/es6/FrontApplet/Management/OS.js.map +1 -0
- package/es6/FrontApplet/Sync/IDeviceStatusEvent.d.ts +5 -0
- package/es6/FrontApplet/Sync/IDeviceStatusEvent.js +3 -0
- package/es6/FrontApplet/Sync/IDeviceStatusEvent.js.map +1 -0
- package/es6/FrontApplet/Sync/Sync.d.ts +7 -1
- package/es6/FrontApplet/Sync/Sync.js +15 -1
- package/es6/FrontApplet/Sync/Sync.js.map +1 -1
- package/es6/Monitoring/FileSystem/fileSystemCommands.d.ts +163 -0
- package/es6/Monitoring/FileSystem/fileSystemCommands.js +33 -0
- package/es6/Monitoring/FileSystem/fileSystemCommands.js.map +1 -0
- package/es6/Monitoring/Montoring.d.ts +1 -0
- package/es6/Monitoring/Montoring.js +117 -0
- package/es6/Monitoring/Montoring.js.map +1 -1
- package/es6/Monitoring/Offline/Cache/offlineCacheCommands.d.ts +37 -0
- package/es6/Monitoring/Offline/Cache/offlineCacheCommands.js +6 -0
- package/es6/Monitoring/Offline/Cache/offlineCacheCommands.js.map +1 -1
- package/package.json +29 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.2.0] - 2022-04-06
|
|
8
|
+
### Added
|
|
9
|
+
- Method onStatus in sos.sync - return connected devices in sync group
|
|
10
|
+
- Device info category: Methods to get location and organization tags
|
|
11
|
+
- Add new filesystem and offline cache methods into monitoring for SDK
|
|
12
|
+
- OS version info API (Windows 10 -> 10, WebOS 4 -> 4, etc)
|
|
13
|
+
|
|
14
|
+
## [5.1.1] - 2022-02-08
|
|
15
|
+
### Fixed
|
|
16
|
+
- Fixed applet basics links
|
|
17
|
+
|
|
18
|
+
## [5.1.0] - 2022-01-27
|
|
19
|
+
### Added
|
|
20
|
+
- Update firmware guide with new methods
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
- fix backlinks from old to new Docs
|
|
24
|
+
|
|
7
25
|
## [5.0.1] - 2022-01-25
|
|
8
26
|
### Fixed
|
|
9
27
|
- adjusted documentation to better reflect naming of JS SDK
|
|
@@ -142,7 +160,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
142
160
|
### Added
|
|
143
161
|
- File System API supports copyFile, writeFile, readFile
|
|
144
162
|
- File System moveFile supports optional overwrite destination
|
|
145
|
-
- New Management JS API (https://docs.signageos.io/api/js/management/1-js-management)
|
|
163
|
+
- New Management JS API (https://sdk.docs.signageos.io/api/js/management/1-js-management)
|
|
146
164
|
- Video API supports video playing in the background with HTML content in the foreground
|
|
147
165
|
- Video API supports 4K video
|
|
148
166
|
- getTimers and unsetTimer of management power API
|
|
@@ -195,7 +213,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
195
213
|
|
|
196
214
|
## [2.1.0] - 2018-12-04
|
|
197
215
|
### Added
|
|
198
|
-
- New API for decompress (extract) ZIP (or other formats) files: https://docs.signageos.io/api/sos-applet-api/#Decompress_file_ZIP
|
|
216
|
+
- New API for decompress (extract) ZIP (or other formats) files: https://sdk.docs.signageos.io/api/sos-applet-api/#Decompress_file_ZIP
|
|
199
217
|
|
|
200
218
|
### Fixed
|
|
201
219
|
- import lib in typescript using `import * as sos from '@signageos/front-applet';`
|
|
@@ -203,13 +221,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
203
221
|
|
|
204
222
|
## [2.0.0] - 2018-09-17
|
|
205
223
|
### Added
|
|
206
|
-
- List offline files/contents (https://docs.signageos.io/api/sos-applet-api/#List_all_files)
|
|
207
|
-
- Delete offline files/contents (https://docs.signageos.io/api/sos-applet-api/#Delete_file)
|
|
224
|
+
- List offline files/contents (https://sdk.docs.signageos.io/api/sos-applet-api/#List_all_files)
|
|
225
|
+
- Delete offline files/contents (https://sdk.docs.signageos.io/api/sos-applet-api/#Delete_file)
|
|
208
226
|
- Allow use any npm module file imported as ES6 module (ex.: `import Video from '@signageos/front-applet/dist/FrontApplet/Video/Video'`)
|
|
209
|
-
- Binding of dispatched commands to REST API (https://docs.signageos.io/api/sos-applet-api/#Command_Receiving)
|
|
210
|
-
- New monitoring applet commands dispatching about `timing loaded`, `html snapshot`, `console logs`, `offline cache changes`, `video state changes` when monitoring is enabled by timing configuration `sos.config.sosMonitoring = true` or by dispatching command to device `sos.Monitoring.EnableMonitoring` (https://docs.signageos.io/api/sos-applet-api/#Monitoring_Commands)
|
|
211
|
-
- Methods for getting file checksum MD5: https://docs.signageos.io/api/sos-applet-api/#Checksum_file_md5
|
|
212
|
-
- Font face generator (https://docs.signageos.io/api/sos-applet-api/#Loading_fonts)
|
|
227
|
+
- Binding of dispatched commands to REST API (https://sdk.docs.signageos.io/api/sos-applet-api/#Command_Receiving)
|
|
228
|
+
- New monitoring applet commands dispatching about `timing loaded`, `html snapshot`, `console logs`, `offline cache changes`, `video state changes` when monitoring is enabled by timing configuration `sos.config.sosMonitoring = true` or by dispatching command to device `sos.Monitoring.EnableMonitoring` (https://sdk.docs.signageos.io/api/sos-applet-api/#Monitoring_Commands)
|
|
229
|
+
- Methods for getting file checksum MD5: https://sdk.docs.signageos.io/api/sos-applet-api/#Checksum_file_md5
|
|
230
|
+
- Font face generator (https://sdk.docs.signageos.io/api/sos-applet-api/#Loading_fonts)
|
|
213
231
|
|
|
214
232
|
### Fixed
|
|
215
233
|
- Applet Commands type can has length 100 characters now
|
|
@@ -228,9 +246,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
228
246
|
|
|
229
247
|
## [1.3.0] - 2018-05-30
|
|
230
248
|
### Added
|
|
231
|
-
- Remote control Key UP binding (https://docs.signageos.io/api/sos-applet-api/#input)
|
|
249
|
+
- Remote control Key UP binding (https://sdk.docs.signageos.io/api/sos-applet-api/#input)
|
|
232
250
|
|
|
233
251
|
## [1.2.0] - 2018-05-09
|
|
234
252
|
### Added
|
|
235
253
|
- Changelog file containing all changes in current project
|
|
236
|
-
- @signageos/front-applet library is also published to public npm registry registry.npmjs.org https://docs.signageos.io/api/sos-applet-api/
|
|
254
|
+
- @signageos/front-applet library is also published to public npm registry registry.npmjs.org https://sdk.docs.signageos.io/api/sos-applet-api/
|