pinokiod 3.19.76 → 3.19.77

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/bin/cli.js CHANGED
@@ -2,7 +2,7 @@ const path = require('path')
2
2
  const semver = require('semver')
3
3
  const Util = require('../util')
4
4
  class CLI {
5
- version = ">=0.0.10"
5
+ version = ">=0.0.11"
6
6
  async install(req, ondata) {
7
7
  await this.kernel.exec({
8
8
  message: "npm install -g pterm@latest --force",
package/kernel/util.js CHANGED
@@ -481,6 +481,9 @@ function push(params) {
481
481
  if (params.image && !params.contentImage) {
482
482
  params.contentImage = params.image
483
483
  }
484
+ if (!params.title) {
485
+ params.title = "Pinokio"
486
+ }
484
487
  console.log("Notifier.notify", params)
485
488
  notifier.notify(params)
486
489
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "3.19.76",
3
+ "version": "3.19.77",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {