pinokiod 3.19.83 → 3.19.84
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 +1 -1
- package/package.json +1 -1
- package/server/index.js +3 -1
package/kernel/bin/cli.js
CHANGED
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -5017,7 +5017,9 @@ class Server {
|
|
|
5017
5017
|
res.json({ success: true })
|
|
5018
5018
|
}))
|
|
5019
5019
|
this.app.get("/pinokio/version", ex(async (req, res) => {
|
|
5020
|
-
|
|
5020
|
+
let version = this.version
|
|
5021
|
+
version.script = this.kernel.schema.replace(/[^0-9.]+/,'')
|
|
5022
|
+
res.json(version)
|
|
5021
5023
|
}))
|
|
5022
5024
|
this.app.get("/pinokio/info", ex(async (req, res) => {
|
|
5023
5025
|
await this.kernel.getInfo(true)
|