pear-electron 1.7.4 → 1.7.6

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/runtime.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pear-electron",
3
- "version": "1.7.4",
3
+ "version": "1.7.6",
4
4
  "description": "Pear User-Interface Library for Electron",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -20,7 +20,7 @@
20
20
  "pear": {
21
21
  "assets": {
22
22
  "ui": {
23
- "link": "pear://0.2742.goowesg5dga9j1ryx47rsk9o4zms4541me4zerxsnbu8u99duh4o",
23
+ "link": "pear://0.2748.goowesg5dga9j1ryx47rsk9o4zms4541me4zerxsnbu8u99duh4o",
24
24
  "name": "Pear Runtime",
25
25
  "only": [
26
26
  "/boot.bundle",
@@ -74,8 +74,8 @@
74
74
  "iambus": "^1.0.3",
75
75
  "localdrive": "^1.12.1",
76
76
  "paparam": "^1.6.1",
77
- "pear-api": "^1.22.2",
78
- "pear-ipc": "^6.3.0",
77
+ "pear-api": "^1.27.0",
78
+ "pear-ipc": "^6.4.0",
79
79
  "script-linker": "^2.5.3",
80
80
  "streamx": "^2.20.2",
81
81
  "url-file-url": "^1.0.4",
package/runtime.js CHANGED
@@ -13,6 +13,10 @@ const plink = require('pear-api/link')
13
13
  const Logger = require('pear-api/logger')
14
14
  const { ERR_INVALID_APPLING, ERR_INVALID_PROJECT_DIR, ERR_INVALID_CONFIG } = require('pear-api/errors')
15
15
 
16
+ // cutover stops replaying & relaying subscriber streams between clients
17
+ // set to false to stop run flow from auto cutover, so we can cutover at end of ui init
18
+ Pear.constructor.CUTOVER = false
19
+
16
20
  const run = require('pear-api/cmd/run')
17
21
  const pear = require('pear-api/cmd')
18
22
  const pkg = require('./package.json')