@bobfrankston/msger 0.1.187 → 0.1.189
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -668,10 +668,11 @@ This package is the **Rust/wry-based** implementation. There's also **[@bobfrank
|
|
|
668
668
|
- Need reliable cross-platform rendering
|
|
669
669
|
- Prefer Electron ecosystem
|
|
670
670
|
|
|
671
|
-
###
|
|
672
|
-
Both packages will share a common JavaScript API (`window.msgapi`) for file system access, window manipulation, and bidirectional communication. See [TODO.md](TODO.md) for details.
|
|
671
|
+
### window.msgapi
|
|
673
672
|
|
|
674
|
-
|
|
673
|
+
msger injects `window.msgapi` into loaded pages via `msger-api.js`, providing window control, UDP networking, and HTTP fetch. File system and shell operations are not yet implemented in msger.
|
|
674
|
+
|
|
675
|
+
See **[msgapidefs README](../msgapidefs/README.md)** for the full `window.msgapi` API reference, implementation status, and security notes. APIs are experimental and subject to change.
|
|
675
676
|
|
|
676
677
|
---
|
|
677
678
|
|
|
Binary file
|
|
Binary file
|
|
@@ -64,8 +64,9 @@ function checkSystemDependencies(binaryPath) {
|
|
|
64
64
|
const distro = detectDistro();
|
|
65
65
|
showDependencyInstallCommand(distro);
|
|
66
66
|
}
|
|
67
|
-
} catch {
|
|
68
|
-
|
|
67
|
+
} catch (error) {
|
|
68
|
+
console.warn(`⚠️ Could not check system dependencies (ldd failed): ${error.message}`);
|
|
69
|
+
console.warn(' You may need to install webkit2gtk and gtk3 manually.');
|
|
69
70
|
}
|
|
70
71
|
}
|
|
71
72
|
|