@signageos/front-display 11.3.2 → 12.0.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 CHANGED
@@ -4,6 +4,25 @@ 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
+ ## [12.0.0] - 2023-03-31
8
+ ### Changed
9
+ - Renamed ISynchronizer method `init` to `joinGroup` and changed it to named args
10
+ - Renamed ISynchronizer method `setValue` to `broadcastValue` and changed it to named args
11
+
12
+ ### Added
13
+ - Production config
14
+ - Minor update only for development purposes
15
+ - P2PSynchronizer support of broadcastValue
16
+ - Polymorphic synchronizer that can be used for both P2P and server synchronizer
17
+
18
+ ### Fixed
19
+ - P2PSynchronizer support of broadcastValue
20
+
21
+ ## [11.4.0] - 2023-03-22
22
+ ### Added
23
+ - Handler for sending info about remote debug to FA
24
+ - Handler for refreshing applet from FA
25
+
7
26
  ## [11.3.2] - 2023-03-15
8
27
  ### Fixed
9
28
  - The regex for index_db is compatible with ES5 and works on displays*
package/README.md CHANGED
@@ -5,6 +5,7 @@ On top of that, it contains the Emulator implementation of display that can be e
5
5
 
6
6
  ## Developing
7
7
  ```bash
8
+ cp -n config/env.\{amy\}.json config/env.dev.json
8
9
  npm run develop
9
10
  ```
10
11