@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.
- package/README.md +10 -0
- package/cli.js +1 -1
- 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
|
|
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)
|