pinokiod 6.0.6 → 6.0.8

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.
@@ -4,7 +4,7 @@ const { rimraf } = require('rimraf')
4
4
  const decompress = require('decompress');
5
5
  class Ffmpeg {
6
6
  cmd() {
7
- return "ffmpeg gdk-pixbuf=2.44.2"
7
+ return "ffmpeg"
8
8
  }
9
9
  async install(req, ondata) {
10
10
  await this.kernel.bin.exec({
@@ -17,8 +17,8 @@ class Ffmpeg {
17
17
  async installed() {
18
18
  console.log("conda_versions", this.kernel.bin.installed.conda_versions)
19
19
  if (this.kernel.bin.installed.conda && this.kernel.bin.installed.conda_versions) {
20
- let version = this.kernel.bin.installed.conda_versions["gdk-pixbuf"]
21
- if (version !== "2.44.2") {
20
+ let version = this.kernel.bin.installed.conda_versions.ffmpeg
21
+ if (version !== "7.0.2") {
22
22
  return false
23
23
  }
24
24
  }
@@ -26,7 +26,7 @@ class Ffmpeg {
26
26
  }
27
27
  async uninstall(req, ondata) {
28
28
  await this.kernel.bin.exec({
29
- message: "conda remove ffmpeg gdk-pixbuf",
29
+ message: "conda remove ffmpeg",
30
30
  }, ondata)
31
31
  }
32
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pinokiod",
3
- "version": "6.0.6",
3
+ "version": "6.0.8",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {