@signageos/front-applet 5.10.1 → 5.11.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 +12 -0
- package/dist/bundle.js +2 -2
- package/dist/bundle.js.map +1 -1
- package/es6/FrontApplet/Management/AutoRecovery.d.ts +10 -0
- package/es6/FrontApplet/Management/AutoRecovery.js +35 -0
- package/es6/FrontApplet/Management/AutoRecovery.js.map +1 -0
- package/es6/FrontApplet/Management/IAutoRecovery.d.ts +14 -0
- package/es6/FrontApplet/Management/IAutoRecovery.js +15 -0
- package/es6/FrontApplet/Management/IAutoRecovery.js.map +1 -0
- package/es6/FrontApplet/Management/IPeerRecovery.d.ts +14 -0
- package/es6/FrontApplet/Management/IPeerRecovery.js +15 -0
- package/es6/FrontApplet/Management/IPeerRecovery.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/PeerRecovery.d.ts +3 -2
- package/es6/FrontApplet/Management/PeerRecovery.js +8 -12
- package/es6/FrontApplet/Management/PeerRecovery.js.map +1 -1
- package/es6/FrontApplet/Management/Power.js +11 -1
- package/es6/FrontApplet/Management/Power.js.map +1 -1
- package/es6/FrontApplet/Sync/Sync.js +1 -0
- package/es6/FrontApplet/Sync/Sync.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.11.0] - 2023-05-15
|
|
8
|
+
### Added
|
|
9
|
+
- Methods to control and monitor Auto recovery process
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Peer recovery methods unified with Auto recovery
|
|
13
|
+
- `sos.sync.onStatus` won't be also called anytime broadcast value is received
|
|
14
|
+
|
|
15
|
+
## [5.10.2] - 2023-05-05
|
|
16
|
+
### Fixed
|
|
17
|
+
- Try delete proprietary timers with proper delete method (backward compatiblility is kept)
|
|
18
|
+
|
|
7
19
|
## [5.10.1] - 2023-04-26
|
|
8
20
|
### Fixed
|
|
9
21
|
- Validations of proprietary timer API (remove extra warning)
|