pinokiod 8.0.55 → 8.0.57
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/index.js +2 -2
- package/kernel/vault/automatic_scans.js +313 -666
- package/kernel/vault/constants.js +1 -5
- package/kernel/vault/hash_worker.js +3 -4
- package/kernel/vault/index.js +40 -46
- package/kernel/vault/registry.js +5 -1
- package/kernel/vault/registry_core.js +245 -31
- package/kernel/vault/sweeper.js +34 -101
- package/package.json +1 -1
- package/server/index.js +23 -1
- package/server/public/app-vault-mode.js +37 -0
- package/server/public/layout.js +35 -27
- package/server/public/vault.css +69 -0
- package/server/public/vault.js +171 -42
- package/server/views/app.ejs +54 -10
- package/server/views/layout.ejs +0 -8
- package/server/views/partials/app_autolaunch_modal_helpers.ejs +1 -1
- package/server/views/vault.ejs +1 -1
- package/test/launch-requirements-browser.test.js +4 -4
- package/test/vault-automatic-scan-ui.test.js +108 -9
- package/test/vault-automatic-scans.test.js +920 -1481
- package/test/vault-sweep.test.js +136 -5
- package/test/vault-ui.test.js +374 -44
package/kernel/index.js
CHANGED
|
@@ -157,7 +157,7 @@ class Kernel {
|
|
|
157
157
|
const pending = automaticScans[method](launchPath)
|
|
158
158
|
if (pending && typeof pending.catch === "function") {
|
|
159
159
|
pending.catch((error) => {
|
|
160
|
-
console.warn("[Vault Automatic
|
|
160
|
+
console.warn("[Vault Automatic Check] " + JSON.stringify({
|
|
161
161
|
time: new Date().toISOString(),
|
|
162
162
|
event: "lifecycle-error",
|
|
163
163
|
method,
|
|
@@ -166,7 +166,7 @@ class Kernel {
|
|
|
166
166
|
})
|
|
167
167
|
}
|
|
168
168
|
} catch (error) {
|
|
169
|
-
console.warn("[Vault Automatic
|
|
169
|
+
console.warn("[Vault Automatic Check] " + JSON.stringify({
|
|
170
170
|
time: new Date().toISOString(),
|
|
171
171
|
event: "lifecycle-error",
|
|
172
172
|
method,
|