@bobfrankston/msger 0.1.349 → 0.1.351

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.349",
3
+ "version": "0.1.351",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",
package/shower.d.ts CHANGED
@@ -37,7 +37,8 @@ export interface MessageBoxOptions {
37
37
  fullscreen?: boolean; /** Start window in fullscreen mode (F11 to toggle, Escape to exit) */
38
38
  escapeCloses?: boolean; /** Allow Escape key to close window (default: true). Always exits fullscreen first. */
39
39
  reset?: boolean; /** Clear localStorage on startup (default: false) */
40
- icon?: string; /** Path to window icon (PNG file). Default: icon.png in current directory */
40
+ icon?: string; /** Path to window icon. Decoded for the runtime title-bar / taskbar icon. PNG decodes most reliably; the `image` crate's ICO+PNG path is fragile. */
41
+ relaunchIcon?: string; /** Optional path forwarded to `PKEY_AppUserModel_RelaunchIconResource` so pinned taskbar shortcuts get the app's own icon. Must be a `.ico`. Path is consumed verbatim (no decode). */
41
42
  dev?: boolean; /** Open DevTools automatically on startup (default: false) */
42
43
  debug?: boolean; /** Return debug information (HTML, size) in result (default: false) */
43
44
  showVersion?: boolean; /** Show version in window title (default: false) */