Theseus soft-mode UX: 'Open with...' modal on collision, per-name/per-TLD overrides, live per-tab switcher in the site-info popover, and a Naming section in Settings for policy + reset. Backed by an on-chain root TLD certificate (tlds.bch) that resolver-web.js discovers via fetchBcnrTlds()/isBcnrNativeTld(). Companion pieces: - Argus/src/indexer/ELECTRUM-SOURCE-README.md — the featherweight VPS variant (no BCHN node, no Fulcrum) now live as bns-indexer.service. - Argus/DESIGN-root-tld-cert.md — clarified: NOT a governance workflow, just ordinary key management (single wallet MVP -> 2-of-3 multisig). List gates registration / surgical NRPT / soft-mode classifier — never resolution. - ROADMAP-IDEAS.md — recorded SiaGit/GitHub.sia + user-friendly Sia UI ideas. Full spec: Argus/DESIGN-collision-modes.md (already tracked).
9 lines
515 B
JavaScript
9 lines
515 B
JavaScript
const { contextBridge, ipcRenderer } = require("electron");
|
|
contextBridge.exposeInMainWorld("pop", {
|
|
onData: (cb) => ipcRenderer.on("site-info", (_e, d) => cb(d)),
|
|
close: () => ipcRenderer.invoke("close-site-info"),
|
|
resize: (h) => ipcRenderer.invoke("popover-resize", h),
|
|
// Live switcher: flip the active tab between BCNR and ICANN for this host,
|
|
// optionally remembering the choice per-name / per-TLD.
|
|
switchTo: (choice, remember) => ipcRenderer.invoke("collision-switch", { choice, remember }),
|
|
});
|