experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: clean up modes, remove overlay, fix IZUI navigation stack

- Remove settings mode and minor modes from codebase
- Clean up vestigial overlay references (renamed to page:show-navbar)
- Filter peek:// URLs from groups UI (only show http/https)
- Fix IZUI stack navigation with targeted focus requests
- Windows now track their ID and parent ID
- Focus requests include target window ID
- Only respond if we're the target or sender is in our nav stack

+4
+4
app/page/page.js
··· 196 196 197 197 // --- IZUI integration --- 198 198 199 + // Initialize IZUI for proper stack navigation 200 + // Web page containers can have children (links opening new windows) 199 201 izui.init({ 200 202 canHaveChildren: true, 201 203 onEscape: () => { ··· 207 209 DEBUG && console.log('[page] ESC: at root, closing'); 208 210 return { handled: false }; 209 211 } 212 + }).catch(err => { 213 + console.error('[page] IZUI init error:', err); 210 214 }); 211 215 212 216 // --- Webview events ---