pinokiod 3.78.0 → 3.80.0
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/package.json +1 -1
- package/server/index.js +4 -3
- package/server/public/style.css +15 -2
- package/server/views/columns.ejs +1 -1
- package/server/views/rows.ejs +1 -1
package/package.json
CHANGED
package/server/index.js
CHANGED
|
@@ -3072,6 +3072,7 @@ class Server {
|
|
|
3072
3072
|
}
|
|
3073
3073
|
console.log(JSON.stringify(bundles, null, 2))
|
|
3074
3074
|
res.render("tools", {
|
|
3075
|
+
current_host: this.kernel.peer.host,
|
|
3075
3076
|
pending,
|
|
3076
3077
|
installs,
|
|
3077
3078
|
bundles,
|
|
@@ -3249,9 +3250,9 @@ class Server {
|
|
|
3249
3250
|
// if (!this.kernel.proto.config) {
|
|
3250
3251
|
// await this.kernel.proto.init()
|
|
3251
3252
|
// }
|
|
3252
|
-
if (!this.kernel.plugin.config) {
|
|
3253
|
-
await this.kernel.plugin.init()
|
|
3254
|
-
}
|
|
3253
|
+
// if (!this.kernel.plugin.config) {
|
|
3254
|
+
// await this.kernel.plugin.init()
|
|
3255
|
+
// }
|
|
3255
3256
|
|
|
3256
3257
|
if (req.query.mode !== "settings" && !home) {
|
|
3257
3258
|
res.redirect("/?mode=settings")
|
package/server/public/style.css
CHANGED
|
@@ -2384,16 +2384,29 @@ body.minimized header .dropdown-content {
|
|
|
2384
2384
|
}
|
|
2385
2385
|
|
|
2386
2386
|
body.minimized.dark header h1 #close-window {
|
|
2387
|
-
background:
|
|
2387
|
+
background: #222;
|
|
2388
2388
|
}
|
|
2389
2389
|
body.minimized header h1 #close-window {
|
|
2390
2390
|
order: 0;
|
|
2391
|
-
background:
|
|
2391
|
+
background: whitesmoke;
|
|
2392
2392
|
border-radius: 0;
|
|
2393
2393
|
position: sticky;
|
|
2394
2394
|
bottom: 0;
|
|
2395
2395
|
z-index: 10000000;
|
|
2396
2396
|
}
|
|
2397
|
+
|
|
2398
|
+
body.minimized.dark header h1 .dropdown {
|
|
2399
|
+
background: #222;
|
|
2400
|
+
}
|
|
2401
|
+
body.minimized header h1 .dropdown {
|
|
2402
|
+
position: sticky;
|
|
2403
|
+
bottom: 38px;
|
|
2404
|
+
background: whitesmoke;
|
|
2405
|
+
border-radius: 0;
|
|
2406
|
+
}
|
|
2407
|
+
|
|
2408
|
+
|
|
2409
|
+
|
|
2397
2410
|
body.minimized header .home {
|
|
2398
2411
|
display: block;
|
|
2399
2412
|
position: sticky;
|
package/server/views/columns.ejs
CHANGED