feat: scaffold Rabby Rust Tauri terminal
test / core (push) Successful in 1m55s

This commit is contained in:
Tom You
2026-07-06 10:44:47 +00:00
commit 04ef2fe57d
21 changed files with 9460 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
async function loadFeatures(){
const fallback = [
["Terminal", "VT-style surface, tabs, split panes, Unicode"],
["Connections", "Local shell, SSH, Telnet, Serial profile model"],
["UX", "Command palette, shortcuts, quake window, restored sessions"],
["Footprint", "Rust core + Tauri shell instead of Electron"]
];
let rows = fallback;
try {
const { invoke } = window.__TAURI__.core;
rows = (await invoke('workspace_summary')).map(x => [x.feature, x.detail]);
} catch (_) {}
document.getElementById('features').innerHTML = rows.map(([f,d]) => `<li><b>${f}</b>: ${d}</li>`).join('');
}
loadFeatures();