This commit is contained in:
Elijah R 2024-08-05 01:03:10 -04:00
parent 56f34bd580
commit 44f5f47d2d
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "@computernewb/superqemu", "name": "@computernewb/superqemu",
"version": "0.2.1", "version": "0.2.2",
"description": "A simple and easy to use QEMU supervision runtime for Node.js", "description": "A simple and easy to use QEMU supervision runtime for Node.js",
"exports": "./dist/index.js", "exports": "./dist/index.js",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",

View file

@ -90,6 +90,7 @@ export class QemuVM extends EventEmitter {
this.display = new QemuDisplay({ this.display = new QemuDisplay({
host: this.definition.vncHost || '127.0.0.1', host: this.definition.vncHost || '127.0.0.1',
port: this.definition.vncPort || 5900, port: this.definition.vncPort || 5900,
path: null
}) })
} else { } else {
this.display = new QemuDisplay({ this.display = new QemuDisplay({