shell-mirror 1.5.78 → 1.5.79
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
CHANGED
|
@@ -58,8 +58,10 @@
|
|
|
58
58
|
<header class="dashboard-header">
|
|
59
59
|
<div class="header-content">
|
|
60
60
|
<div class="logo">
|
|
61
|
-
<
|
|
62
|
-
|
|
61
|
+
<a href="/" style="text-decoration: none; color: inherit;">
|
|
62
|
+
<h1>Shell Mirror</h1>
|
|
63
|
+
<span class="subtitle">Dashboard</span>
|
|
64
|
+
</a>
|
|
63
65
|
</div>
|
|
64
66
|
<div class="header-right">
|
|
65
67
|
<div class="user-section" id="user-section">
|
package/public/app/dashboard.js
CHANGED
|
@@ -502,13 +502,13 @@ class ShellMirrorDashboard {
|
|
|
502
502
|
document.getElementById('user-section').innerHTML = `
|
|
503
503
|
<div class="dashboard-controls">
|
|
504
504
|
<span id="connection-status" class="connection-status" style="display: none;"></span>
|
|
505
|
-
<span id="refresh-status" class="refresh-status">
|
|
505
|
+
<span id="refresh-status" class="refresh-status">Loading...</span>
|
|
506
506
|
</div>
|
|
507
507
|
<button class="help-button" onclick="dashboard.showAgentInstructions()" title="How to Use">
|
|
508
508
|
📖 How to Use
|
|
509
509
|
</button>
|
|
510
510
|
<div class="user-info">
|
|
511
|
-
<span class="user-name">${this.user
|
|
511
|
+
<span class="user-name">${this.user?.name || this.user?.email || 'User'}</span>
|
|
512
512
|
<div class="user-dropdown">
|
|
513
513
|
<button class="dropdown-btn">⚙️</button>
|
|
514
514
|
<div class="dropdown-content">
|
package/public/app/terminal.html
CHANGED
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
}
|
|
396
396
|
|
|
397
397
|
.help-section p {
|
|
398
|
-
color: #
|
|
398
|
+
color: #333;
|
|
399
399
|
line-height: 1.6;
|
|
400
400
|
margin-bottom: 8px;
|
|
401
401
|
}
|
|
@@ -408,7 +408,7 @@
|
|
|
408
408
|
|
|
409
409
|
.help-section li {
|
|
410
410
|
padding: 4px 0;
|
|
411
|
-
color: #
|
|
411
|
+
color: #333;
|
|
412
412
|
line-height: 1.6;
|
|
413
413
|
}
|
|
414
414
|
|