补充 INI 面板默认文件映射覆盖

结论:INI 面板会话加载日志现在展示默认 OPFS 参数文件和刀具表映射,浏览器 smoke 验证该 UI 入口仍通过 LinuxCNC-backed SDK/OPFS 边界加载。
This commit is contained in:
2026-06-08 10:00:59 +08:00
parent e141b4fc69
commit bc60575651
3 changed files with 16 additions and 2 deletions

View File

@@ -216,7 +216,9 @@ document.getElementById("load-session").addEventListener("click", async () => {
[
"Loaded machine session into the interpreter WASM filesystem.",
`INI: ${loadedSession.ini.opfsPath} -> ${loadedSession.ini.wasmPath}`,
`Parameter file: ${loadedSession.parameters.opfsPath} -> ${loadedSession.parameters.wasmPath}`,
`Parameters: ${loadedSession.parameters.result.trim()}`,
`Tool table file: ${loadedSession.toolTable.opfsPath} -> ${loadedSession.toolTable.wasmPath}`,
`Tool table: ${loadedSession.toolTable.result.trim()}`,
].join("\n"),
);