pinokiod 3.92.0 → 3.94.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/public/common.js +104 -1
- package/server/views/app.ejs +1 -1
- package/server/views/connect/x.ejs +1 -1
- package/server/views/connect.ejs +1 -1
- package/server/views/container.ejs +1 -1
- package/server/views/download.ejs +1 -1
- package/server/views/explore.ejs +1 -1
- package/server/views/general_editor.ejs +1 -1
- package/server/views/github.ejs +1 -1
- package/server/views/help.ejs +1 -1
- package/server/views/index.ejs +1 -1
- package/server/views/index2.ejs +1 -1
- package/server/views/init/index.ejs +1 -1
- package/server/views/mini.ejs +1 -1
- package/server/views/net.ejs +1 -1
- package/server/views/network.ejs +1 -1
- package/server/views/network2.ejs +1 -1
- package/server/views/old_network.ejs +1 -1
- package/server/views/pro.ejs +1 -1
- package/server/views/prototype/index.ejs +1 -1
- package/server/views/review.ejs +1 -1
- package/server/views/screenshots.ejs +1 -1
- package/server/views/settings.ejs +1 -1
- package/server/views/setup.ejs +1 -1
- package/server/views/shell.ejs +1 -1
- package/server/views/sidebar.ejs +1 -1
- package/server/views/tools.ejs +1 -1
package/package.json
CHANGED
package/server/public/common.js
CHANGED
|
@@ -105,6 +105,11 @@ body.dark .capture-modal-button.secondary{background:rgba(148,163,184,0.2);color
|
|
|
105
105
|
this.overlayHidden = false;
|
|
106
106
|
this.floatingControls = null;
|
|
107
107
|
this.floatingStatus = null;
|
|
108
|
+
this.floatingDrag = null;
|
|
109
|
+
this.onFloatingPointerDown = this.startFloatingDrag.bind(this);
|
|
110
|
+
this.onFloatingPointerMove = this.handleFloatingPointerMove.bind(this);
|
|
111
|
+
this.onFloatingPointerUp = (event) => this.stopFloatingDrag(event);
|
|
112
|
+
this.onFloatingWindowResize = this.handleFloatingResize.bind(this);
|
|
108
113
|
this.resolveFn = null;
|
|
109
114
|
this.rejectFn = null;
|
|
110
115
|
this.colorDefault = '#ddd';
|
|
@@ -991,7 +996,7 @@ body.dark .capture-modal-button.secondary{background:rgba(148,163,184,0.2);color
|
|
|
991
996
|
color:#fff; padding:10px 14px; border-radius:12px;
|
|
992
997
|
box-shadow:0 8px 24px rgba(0,0,0,0.35);
|
|
993
998
|
font-size:14px; font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
|
|
994
|
-
pointer-events:auto;
|
|
999
|
+
pointer-events:auto; cursor:grab; touch-action:none;
|
|
995
1000
|
`;
|
|
996
1001
|
|
|
997
1002
|
const status = document.createElement('div');
|
|
@@ -1012,11 +1017,25 @@ body.dark .capture-modal-button.secondary{background:rgba(148,163,184,0.2);color
|
|
|
1012
1017
|
|
|
1013
1018
|
controls.append(status, stopBtn);
|
|
1014
1019
|
document.body.appendChild(controls);
|
|
1020
|
+
const rect = controls.getBoundingClientRect();
|
|
1021
|
+
const initial = this.clampFloatingPosition(rect);
|
|
1022
|
+
controls.style.left = `${initial.left}px`;
|
|
1023
|
+
controls.style.top = `${initial.top}px`;
|
|
1024
|
+
controls.style.right = 'auto';
|
|
1025
|
+
controls.style.bottom = 'auto';
|
|
1015
1026
|
this.floatingControls = controls;
|
|
1016
1027
|
this.floatingStatus = status;
|
|
1028
|
+
|
|
1029
|
+
controls.addEventListener('pointerdown', this.onFloatingPointerDown);
|
|
1030
|
+
window.addEventListener('resize', this.onFloatingWindowResize, { passive: true });
|
|
1017
1031
|
}
|
|
1018
1032
|
|
|
1019
1033
|
removeFloatingControls() {
|
|
1034
|
+
this.stopFloatingDrag();
|
|
1035
|
+
if (this.floatingControls) {
|
|
1036
|
+
this.floatingControls.removeEventListener('pointerdown', this.onFloatingPointerDown);
|
|
1037
|
+
}
|
|
1038
|
+
window.removeEventListener('resize', this.onFloatingWindowResize);
|
|
1020
1039
|
if (this.floatingControls && this.floatingControls.parentNode) {
|
|
1021
1040
|
this.floatingControls.parentNode.removeChild(this.floatingControls);
|
|
1022
1041
|
}
|
|
@@ -1024,6 +1043,90 @@ body.dark .capture-modal-button.secondary{background:rgba(148,163,184,0.2);color
|
|
|
1024
1043
|
this.floatingStatus = null;
|
|
1025
1044
|
}
|
|
1026
1045
|
|
|
1046
|
+
clampFloatingPosition(rect) {
|
|
1047
|
+
const margin = 8;
|
|
1048
|
+
const maxLeft = Math.max(margin, window.innerWidth - rect.width - margin);
|
|
1049
|
+
const maxTop = Math.max(margin, window.innerHeight - rect.height - margin);
|
|
1050
|
+
const left = Math.min(Math.max(rect.left, margin), maxLeft);
|
|
1051
|
+
const top = Math.min(Math.max(rect.top, margin), maxTop);
|
|
1052
|
+
return { left, top };
|
|
1053
|
+
}
|
|
1054
|
+
|
|
1055
|
+
startFloatingDrag(event) {
|
|
1056
|
+
if (!this.floatingControls || event.button !== 0) return;
|
|
1057
|
+
if (event.target && event.target.closest('button')) return;
|
|
1058
|
+
const rect = this.floatingControls.getBoundingClientRect();
|
|
1059
|
+
const { left, top } = this.clampFloatingPosition(rect);
|
|
1060
|
+
this.floatingControls.style.left = `${left}px`;
|
|
1061
|
+
this.floatingControls.style.top = `${top}px`;
|
|
1062
|
+
this.floatingControls.style.right = 'auto';
|
|
1063
|
+
this.floatingControls.style.bottom = 'auto';
|
|
1064
|
+
|
|
1065
|
+
this.floatingDrag = {
|
|
1066
|
+
pointerId: event.pointerId,
|
|
1067
|
+
startX: event.clientX,
|
|
1068
|
+
startY: event.clientY,
|
|
1069
|
+
baseLeft: left,
|
|
1070
|
+
baseTop: top
|
|
1071
|
+
};
|
|
1072
|
+
|
|
1073
|
+
if (this.floatingControls.setPointerCapture) {
|
|
1074
|
+
try {
|
|
1075
|
+
this.floatingControls.setPointerCapture(event.pointerId);
|
|
1076
|
+
} catch (_) {
|
|
1077
|
+
// Ignore inability to capture pointer (e.g., already captured).
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
this.floatingControls.style.cursor = 'grabbing';
|
|
1081
|
+
window.addEventListener('pointermove', this.onFloatingPointerMove);
|
|
1082
|
+
window.addEventListener('pointerup', this.onFloatingPointerUp);
|
|
1083
|
+
window.addEventListener('pointercancel', this.onFloatingPointerUp);
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
handleFloatingPointerMove(event) {
|
|
1087
|
+
if (!this.floatingDrag || event.pointerId !== this.floatingDrag.pointerId || !this.floatingControls) return;
|
|
1088
|
+
const dx = event.clientX - this.floatingDrag.startX;
|
|
1089
|
+
const dy = event.clientY - this.floatingDrag.startY;
|
|
1090
|
+
const proposed = {
|
|
1091
|
+
left: this.floatingDrag.baseLeft + dx,
|
|
1092
|
+
top: this.floatingDrag.baseTop + dy,
|
|
1093
|
+
width: this.floatingControls.offsetWidth,
|
|
1094
|
+
height: this.floatingControls.offsetHeight
|
|
1095
|
+
};
|
|
1096
|
+
const clamped = this.clampFloatingPosition(proposed);
|
|
1097
|
+
this.floatingControls.style.left = `${clamped.left}px`;
|
|
1098
|
+
this.floatingControls.style.top = `${clamped.top}px`;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
stopFloatingDrag(event) {
|
|
1102
|
+
if (!this.floatingDrag) return;
|
|
1103
|
+
if (event && this.floatingDrag.pointerId !== event.pointerId) return;
|
|
1104
|
+
window.removeEventListener('pointermove', this.onFloatingPointerMove);
|
|
1105
|
+
window.removeEventListener('pointerup', this.onFloatingPointerUp);
|
|
1106
|
+
window.removeEventListener('pointercancel', this.onFloatingPointerUp);
|
|
1107
|
+
if (this.floatingControls && this.floatingControls.releasePointerCapture && this.floatingDrag.pointerId != null) {
|
|
1108
|
+
try {
|
|
1109
|
+
this.floatingControls.releasePointerCapture(this.floatingDrag.pointerId);
|
|
1110
|
+
} catch (_) {
|
|
1111
|
+
// Ignore release errors (e.g., pointer already released).
|
|
1112
|
+
}
|
|
1113
|
+
}
|
|
1114
|
+
if (this.floatingControls) {
|
|
1115
|
+
this.floatingControls.style.cursor = 'grab';
|
|
1116
|
+
}
|
|
1117
|
+
this.floatingDrag = null;
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
handleFloatingResize() {
|
|
1121
|
+
if (!this.floatingControls) return;
|
|
1122
|
+
const rect = this.floatingControls.getBoundingClientRect();
|
|
1123
|
+
const clamped = this.clampFloatingPosition(rect);
|
|
1124
|
+
this.floatingControls.style.left = `${clamped.left}px`;
|
|
1125
|
+
this.floatingControls.style.top = `${clamped.top}px`;
|
|
1126
|
+
this.floatingControls.style.right = 'auto';
|
|
1127
|
+
this.floatingControls.style.bottom = 'auto';
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1027
1130
|
formatDuration(ms) {
|
|
1028
1131
|
const totalSeconds = Math.floor(ms / 1000);
|
|
1029
1132
|
const minutes = String(Math.floor(totalSeconds / 60)).padStart(2, '0');
|
package/server/views/app.ejs
CHANGED
|
@@ -2397,7 +2397,7 @@ body.dark {
|
|
|
2397
2397
|
<body class='<%=theme%>' data-platform="<%=platform%>" data-agent="<%=agent%>">
|
|
2398
2398
|
<header class='navheader grabbable'>
|
|
2399
2399
|
<h1>
|
|
2400
|
-
<a class='home' href="/">
|
|
2400
|
+
<a class='home' href="/home">
|
|
2401
2401
|
<img class='icon' src="/pinokio-black.png">
|
|
2402
2402
|
</a>
|
|
2403
2403
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
@@ -193,7 +193,7 @@ pre {
|
|
|
193
193
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
194
194
|
<header class='navheader grabbable'>
|
|
195
195
|
<h1>
|
|
196
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
196
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
197
197
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
198
198
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
199
199
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/connect.ejs
CHANGED
|
@@ -812,7 +812,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
812
812
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
813
813
|
<header class='navheader grabbable'>
|
|
814
814
|
<h1>
|
|
815
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
815
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
816
816
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
817
817
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
818
818
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -326,7 +326,7 @@ iframe {
|
|
|
326
326
|
-->
|
|
327
327
|
<header class='navheader grabbable'>
|
|
328
328
|
<h1>
|
|
329
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
329
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
330
330
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
331
331
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
332
332
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -121,7 +121,7 @@ body.frozen {
|
|
|
121
121
|
<% } %>
|
|
122
122
|
<header class='grabbable'>
|
|
123
123
|
<h1>
|
|
124
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
124
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
125
125
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
126
126
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
127
127
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/explore.ejs
CHANGED
|
@@ -122,7 +122,7 @@ body main iframe {
|
|
|
122
122
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
123
123
|
<header class='navheader grabbable'>
|
|
124
124
|
<h1>
|
|
125
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
125
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
126
126
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
127
127
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
128
128
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -188,7 +188,7 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|
|
188
188
|
<body class='columns <%=theme%>' data-agent="<%=agent%>">
|
|
189
189
|
<header class='navheader grabbable'>
|
|
190
190
|
<h1>
|
|
191
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
191
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
192
192
|
<%=filepath%>
|
|
193
193
|
</h1>
|
|
194
194
|
<div class='runner'>
|
package/server/views/github.ejs
CHANGED
|
@@ -234,7 +234,7 @@ ol {
|
|
|
234
234
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
235
235
|
<header class='navheader grabbable'>
|
|
236
236
|
<h1>
|
|
237
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
237
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
238
238
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
239
239
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
240
240
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/help.ejs
CHANGED
|
@@ -255,7 +255,7 @@ body.dark .item .tile .badge {
|
|
|
255
255
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
256
256
|
<header class='navheader grabbable'>
|
|
257
257
|
<h1>
|
|
258
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
258
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
259
259
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
260
260
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
261
261
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/index.ejs
CHANGED
|
@@ -417,7 +417,7 @@ body.dark aside .current.selected {
|
|
|
417
417
|
<header class='navheader grabbable'>
|
|
418
418
|
<h1>
|
|
419
419
|
<% if (ishome) { %>
|
|
420
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
420
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
421
421
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
422
422
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
423
423
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/index2.ejs
CHANGED
|
@@ -242,7 +242,7 @@ body.dark .open-menu, body.dark .browse {
|
|
|
242
242
|
<header class='navheader grabbable'>
|
|
243
243
|
<h1>
|
|
244
244
|
<% if (ishome) { %>
|
|
245
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
245
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
246
246
|
<button class='btn2' id='back'><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
247
247
|
<button class='btn2' id='forward'><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
248
248
|
<button class='btn2' id='refresh-page'><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -1520,7 +1520,7 @@ body.dark .ace-editor {
|
|
|
1520
1520
|
<body class='<%=theme%>' data-platform="<%=platform%>" data-agent="<%=agent%>">
|
|
1521
1521
|
<header class='navheader grabbable'>
|
|
1522
1522
|
<h1>
|
|
1523
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
1523
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1524
1524
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1525
1525
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1526
1526
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/mini.ejs
CHANGED
|
@@ -755,7 +755,7 @@ body.dark .appcanvas {
|
|
|
755
755
|
<body class='<%=theme%>' data-platform="<%=platform%>" data-agent="<%=agent%>">
|
|
756
756
|
<header class='navheader grabbable'>
|
|
757
757
|
<h1>
|
|
758
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
758
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
759
759
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
760
760
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
761
761
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/net.ejs
CHANGED
|
@@ -535,7 +535,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
535
535
|
<% } %>
|
|
536
536
|
<header class='navheader grabbable'>
|
|
537
537
|
<h1>
|
|
538
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
538
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
539
539
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
540
540
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
541
541
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/network.ejs
CHANGED
|
@@ -1048,7 +1048,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1048
1048
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
1049
1049
|
<header class='navheader grabbable'>
|
|
1050
1050
|
<h1>
|
|
1051
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
1051
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1052
1052
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1053
1053
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1054
1054
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -418,7 +418,7 @@ table h3 {
|
|
|
418
418
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
419
419
|
<header class='navheader grabbable'>
|
|
420
420
|
<h1>
|
|
421
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
421
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
422
422
|
<button class='btn2' id='back'><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
423
423
|
<button class='btn2' id='forward'><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
424
424
|
<button class='btn2' id='refresh-page'><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -401,7 +401,7 @@ input:checked + .slider:before {
|
|
|
401
401
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
402
402
|
<header class='navheader grabbable'>
|
|
403
403
|
<h1>
|
|
404
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
404
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
405
405
|
<button class='btn2' id='back'><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
406
406
|
<button class='btn2' id='forward'><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
407
407
|
<button class='btn2' id='refresh-page'><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/pro.ejs
CHANGED
|
@@ -184,7 +184,7 @@ body.dark #status-window b {
|
|
|
184
184
|
<% } %>
|
|
185
185
|
<h1>
|
|
186
186
|
<% if (target === "_top") { %>
|
|
187
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
187
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
188
188
|
<% } %>
|
|
189
189
|
<div class='hidden btn run play-btn'>
|
|
190
190
|
<span class='play'><i class="fa-solid fa-play"></i> Start</span>
|
|
@@ -1002,7 +1002,7 @@ body.dark .appcanvas {
|
|
|
1002
1002
|
<body class='<%=theme%>' data-platform="<%=platform%>">
|
|
1003
1003
|
<header class='navheader grabbable'>
|
|
1004
1004
|
<h1>
|
|
1005
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
1005
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1006
1006
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1007
1007
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1008
1008
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/review.ejs
CHANGED
|
@@ -935,7 +935,7 @@ body.dark .top-menu .btn2.selected {
|
|
|
935
935
|
<body class='<%=theme%>' data-platform="<%=platform%>" data-agent="<%=agent%>">
|
|
936
936
|
<header class='navheader grabbable'>
|
|
937
937
|
<h1>
|
|
938
|
-
<a class='home' href="/">
|
|
938
|
+
<a class='home' href="/home">
|
|
939
939
|
<img class='icon' src="/pinokio-black.png">
|
|
940
940
|
</a>
|
|
941
941
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
@@ -708,7 +708,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
708
708
|
-->
|
|
709
709
|
<header class='navheader grabbable'>
|
|
710
710
|
<h1>
|
|
711
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
711
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
712
712
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
713
713
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
714
714
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
|
@@ -373,7 +373,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
373
373
|
-->
|
|
374
374
|
<header class='navheader grabbable'>
|
|
375
375
|
<h1>
|
|
376
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
376
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
377
377
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
378
378
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
379
379
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|
package/server/views/setup.ejs
CHANGED
|
@@ -135,7 +135,7 @@ body {
|
|
|
135
135
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
136
136
|
<header class='grabbable'>
|
|
137
137
|
<h1>
|
|
138
|
-
<a class='home' href="/"><%-logo%></a>
|
|
138
|
+
<a class='home' href="/home"><%-logo%></a>
|
|
139
139
|
<button class='btn2' id='screenshot' data-tippy-content="take a screenshot"><i class="fa-solid fa-camera"></i></button>
|
|
140
140
|
<div class='flexible'></div>
|
|
141
141
|
<a class='btn2' href="/columns" data-tippy-content="split into 2 columns">
|
package/server/views/shell.ejs
CHANGED
|
@@ -1116,7 +1116,7 @@ document.addEventListener("DOMContentLoaded", async () => {
|
|
|
1116
1116
|
<% } %>
|
|
1117
1117
|
<div class='runner'>
|
|
1118
1118
|
<% if (target === "_top") { %>
|
|
1119
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
1119
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1120
1120
|
<% } %>
|
|
1121
1121
|
<div class='hidden btn run play-btn'>
|
|
1122
1122
|
<span class='play'><i class="fa-solid fa-play"></i> Start</span>
|
package/server/views/sidebar.ejs
CHANGED
|
@@ -35,7 +35,7 @@ html, body {
|
|
|
35
35
|
</style>
|
|
36
36
|
</head>
|
|
37
37
|
<body class='<%=theme%>' data-agent="<%=agent%>">
|
|
38
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
38
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
39
39
|
<a class='header-item' href="<%=home%>">
|
|
40
40
|
<img src="<%=rawpath%>/<%=config.icon%>?raw=true"/>
|
|
41
41
|
<div><%=config.title%></div>
|
package/server/views/tools.ejs
CHANGED
|
@@ -1098,7 +1098,7 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
|
1098
1098
|
-->
|
|
1099
1099
|
<header class='navheader grabbable'>
|
|
1100
1100
|
<h1>
|
|
1101
|
-
<a class='home' href="/"><img class='icon' src="/pinokio-black.png"></a>
|
|
1101
|
+
<a class='home' href="/home"><img class='icon' src="/pinokio-black.png"></a>
|
|
1102
1102
|
<button class='btn2' id='back' data-tippy-content="back"><div><i class="fa-solid fa-chevron-left"></i></div></button>
|
|
1103
1103
|
<button class='btn2' id='forward' data-tippy-content="forward"><div><i class="fa-solid fa-chevron-right"></i></div></button>
|
|
1104
1104
|
<button class='btn2' id='refresh-page' data-tippy-content="refresh"><div><i class="fa-solid fa-rotate-right"></i></div></button>
|