pinokiod 3.310.0 → 3.311.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/kernel/peer.js CHANGED
@@ -31,7 +31,9 @@ class PeerDiscovery {
31
31
  let result = await this._refresh(host)
32
32
  if (!result) {
33
33
  this.peers.delete(host)
34
- delete this.info[host]
34
+ if (this.info) {
35
+ delete this.info[host]
36
+ }
35
37
  }
36
38
  }
37
39
  }
package/kernel/shell.js CHANGED
@@ -54,6 +54,7 @@ class Shell {
54
54
  this.nudgeReleaseTimer = null
55
55
  this.lastInputAt = 0
56
56
  this.canNudge = true
57
+ this.enableNudge = false
57
58
  this.awaitingIdleNudge = false
58
59
  this.idleNudgeTimer = null
59
60
  this.idleNudgeDelay = 100
@@ -1378,6 +1379,9 @@ class Shell {
1378
1379
  }
1379
1380
  }
1380
1381
  maybeNudgeForSequences(chunk = '') {
1382
+ if (!this.enableNudge) {
1383
+ return
1384
+ }
1381
1385
  if (!chunk || typeof chunk !== 'string') {
1382
1386
  return
1383
1387
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.310.0",
3
+ "version": "3.311.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {