pinokiod 7.5.26 → 7.5.27
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/sysinfo.js +2 -2
- package/package.json +1 -1
- package/server/public/style.css +16 -0
- package/server/public/task-launcher.css +11 -0
- package/server/views/app.ejs +2 -2
package/kernel/sysinfo.js
CHANGED
|
@@ -12,8 +12,8 @@ class Sysinfo {
|
|
|
12
12
|
// await this.refresh()
|
|
13
13
|
}
|
|
14
14
|
async static() {
|
|
15
|
-
//await Promise.all([this.gpus(), this.system(), this.cpu(), this.os(), this.audio(), this.env()])
|
|
16
|
-
await Promise.all([this.gpus(), this.system(), this.cpu(), this.os(), this.audio(), this.
|
|
15
|
+
//await Promise.all([this.gpus(), this.system(), this.cpu(), this.os(), this.audio(), this.env(), this.memory()])
|
|
16
|
+
await Promise.all([this.gpus(), this.system(), this.cpu(), this.os(), this.audio(), this.memory()])
|
|
17
17
|
// await this.gpus()
|
|
18
18
|
// await this.system()
|
|
19
19
|
// await this.cpu()
|
package/package.json
CHANGED
package/server/public/style.css
CHANGED
|
@@ -451,6 +451,14 @@ body.dark .swal2-popup.pinokio-input-modal .swal2-html-container .pinokio-input-
|
|
|
451
451
|
background: var(--pinokio-input-modal-surface-muted) !important;
|
|
452
452
|
color: var(--pinokio-input-modal-text) !important;
|
|
453
453
|
}
|
|
454
|
+
body.dark .swal2-popup.pinokio-input-modal .swal2-html-container select.pinokio-input-modal-control option {
|
|
455
|
+
background: #ffffff;
|
|
456
|
+
color: #111827;
|
|
457
|
+
}
|
|
458
|
+
body.dark select.pinokio-modal-input option {
|
|
459
|
+
background: #ffffff;
|
|
460
|
+
color: #111827;
|
|
461
|
+
}
|
|
454
462
|
|
|
455
463
|
.swal2-popup.pinokio-input-modal .swal2-html-container .pinokio-input-modal-control::placeholder {
|
|
456
464
|
color: var(--pinokio-input-modal-muted);
|
|
@@ -5552,6 +5560,10 @@ body.dark .logs-session-picker select {
|
|
|
5552
5560
|
background: rgba(255,255,255,0.07);
|
|
5553
5561
|
color: rgba(248, 250, 252, 0.82);
|
|
5554
5562
|
}
|
|
5563
|
+
body.dark .logs-session-picker select option {
|
|
5564
|
+
background: #ffffff;
|
|
5565
|
+
color: #111827;
|
|
5566
|
+
}
|
|
5555
5567
|
.logs-review-file-list {
|
|
5556
5568
|
display: flex;
|
|
5557
5569
|
flex-direction: column;
|
|
@@ -5633,6 +5645,10 @@ body.dark .logs-section-mode {
|
|
|
5633
5645
|
background: rgba(255,255,255,0.07);
|
|
5634
5646
|
color: rgba(248, 250, 252, 0.82);
|
|
5635
5647
|
}
|
|
5648
|
+
body.dark .logs-section-mode option {
|
|
5649
|
+
background: #ffffff;
|
|
5650
|
+
color: #111827;
|
|
5651
|
+
}
|
|
5636
5652
|
.logs-review-file,
|
|
5637
5653
|
.logs-review-empty {
|
|
5638
5654
|
min-width: 0;
|
|
@@ -1344,6 +1344,17 @@ body.dark .task-badge-warning {
|
|
|
1344
1344
|
box-shadow: 0 0 0 4px color-mix(in srgb, var(--task-accent) 18%, transparent);
|
|
1345
1345
|
}
|
|
1346
1346
|
|
|
1347
|
+
body.dark .task-select option {
|
|
1348
|
+
background: #ffffff;
|
|
1349
|
+
color: #111827;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1352
|
+
body.dark.settings-page .item select option,
|
|
1353
|
+
body.dark.settings-page .debug-shell-controls select option {
|
|
1354
|
+
background: #ffffff;
|
|
1355
|
+
color: #111827;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1347
1358
|
.task-textarea {
|
|
1348
1359
|
min-height: 160px;
|
|
1349
1360
|
resize: vertical;
|
package/server/views/app.ejs
CHANGED
|
@@ -4730,8 +4730,8 @@ body.dark .swal2-html-container input[type="text"] {
|
|
|
4730
4730
|
}
|
|
4731
4731
|
|
|
4732
4732
|
body.dark .swal2-html-container option {
|
|
4733
|
-
background: #
|
|
4734
|
-
color:
|
|
4733
|
+
background: #ffffff;
|
|
4734
|
+
color: #111827;
|
|
4735
4735
|
}
|
|
4736
4736
|
|
|
4737
4737
|
/* Checkbox styling for dark mode */
|