@a83/orbiter-admin 0.3.3 → 0.3.4

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@a83/orbiter-admin",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Standalone admin server for Orbiter CMS",
5
5
  "type": "module",
6
6
  "main": "./src/server.js",
package/public/sidebar.js CHANGED
@@ -96,7 +96,8 @@
96
96
  var parts = [];
97
97
  if (info.adminVersion) parts.push('Orbiter v' + info.adminVersion);
98
98
  if (info.formatVersion) parts.push('pod v' + info.formatVersion);
99
- podVersionEl.textContent = parts.join(' · ');
99
+ var label = parts.join(' · ');
100
+ podVersionEl.innerHTML = '<a href="https://github.com/aeon022/orbiter/releases" target="_blank" rel="noopener noreferrer">' + label + '</a>';
100
101
  }
101
102
  })
102
103
  .catch(function () {});
package/public/style.css CHANGED
@@ -906,7 +906,9 @@ a:hover { color: var(--heading); }
906
906
  .pod-name { color: var(--text); font-size: 12px; font-weight: 500; margin-bottom: 3px; display: flex; align-items: center; gap: 5px; }
907
907
  .pod-name::before { content: "◆"; font-size: 6px; color: var(--gold); }
908
908
  .pod-info { font-size: 10px; color: var(--muted); margin-bottom: 2px; }
909
- .pod-version { font-size: 10px; color: var(--muted); opacity: 0.6; margin-bottom: 4px; }
909
+ .pod-version { font-size: 10px; color: var(--muted); opacity: 0.75; margin-bottom: 4px; }
910
+ .pod-version a { color: inherit; text-decoration: none; }
911
+ .pod-version a:hover { color: var(--text); }
910
912
  .pod-status { display: flex; align-items: center; margin-top: 8px; }
911
913
  .pod-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--jade); margin-right: 5px; flex-shrink: 0; animation: pulse 2.5s ease-in-out infinite; }
912
914
  @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }