ā What Works: localStorage-based persistence API, F11 fullscreen toggle ā What's Broken: All window controls via JavaScript (IPC crashes) š§ How to Close: Click the X button (top-right corner) or press Alt+F4
ā ļø Window Controls Disabled
Due to a wry library bug, all window operations via JavaScript crash the app.
Configure window at startup using CLI flags: -size 800,600 -title "My App" F11 Note: F11 now works using HTML5 Fullscreen API (press F11 to toggle, Esc to exit)
Data Storage (Native localStorage)
Recommendation: Use native localStorage for compatibility. Works in any browser context, not just msger.
The msger storage API is just a thin convenience wrapper around localStorage - native API is preferred.
Try saving simple text or complex objects
Manage Storage
Click to list or clear data
Window Controls (ā ļø Currently Broken)
These buttons demonstrate the broken IPC window controls. They will log errors but not crash.
Click any button to see why window controls don't work
Why broken: wry 0.47.2 has a bug where window.ipc.postMessage() crashes with "InvalidUri" error. Workarounds: Use CLI flags (-size, -title), F11 for fullscreen, X button to close, or Alt+F4.
Download Files (Browser Blob API)
Download content as a file using the browser's standard Blob + download API. No msger API needed - this is just a standard web feature!