@bobfrankston/msger 0.1.174 → 0.1.175

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.
Files changed (3) hide show
  1. package/README.md +10 -0
  2. package/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -679,6 +679,16 @@ For the complete feature comparison and roadmap, see the [shared TODO.md](../msg
679
679
 
680
680
  ## Important Notes
681
681
 
682
+ ### Taskbar Icons
683
+
684
+ **Icon Behavior Differences:**
685
+ - **Window Title Bar**: Shows custom icon from `-icon` flag or JSON config
686
+ - **Windows Taskbar**: Shows the embedded msger.exe icon (cannot be changed at runtime)
687
+
688
+ This is a Windows limitation for native applications. The taskbar icon comes from the executable's embedded resource, not the runtime window icon. In contrast, Electron-based msgview can set taskbar icons dynamically.
689
+
690
+ **Workaround:** The planned `-pin` feature with AppUserModelID will allow each pinned shortcut to have its own taskbar icon.
691
+
682
692
  ### Security
683
693
 
684
694
  ⚠️ **msger is designed for displaying trusted, friendly content** (local apps, your HTML files). It is NOT a secure sandbox for untrusted/hostile web content. Use `-htmlfrom` and `-url` with trusted sources only.
package/cli.js CHANGED
@@ -40,7 +40,7 @@ Options:
40
40
  -load <file> Load options from JSON file (supports comments)
41
41
  -save <file> Save current options to JSON file
42
42
  -noshow Save config without showing message box (use with -save)
43
- -pin [Not yet implemented] Create pinnable taskbar shortcut
43
+ -pin Create pinnable Start Menu shortcut (requires -load)
44
44
  -dev Open DevTools (F12) automatically on startup (for debugging)
45
45
  -debug Return debug info (HTML, size) in result
46
46
  -v, -version, --version Show version number (alone: print and exit; with options: show in title)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.174",
3
+ "version": "0.1.175",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",