@bobfrankston/msger 0.1.91 → 0.1.92
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 +6 -0
- package/TODO.md +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -264,6 +264,12 @@ Keyboard Shortcuts:
|
|
|
264
264
|
- Ctrl+Wheel/Plus/Minus: Zoom in/out
|
|
265
265
|
- Ctrl+0: Reset zoom to 100%
|
|
266
266
|
|
|
267
|
+
Debug Mode:
|
|
268
|
+
- Set environment variable MSGER_DEBUG=1 for diagnostic output
|
|
269
|
+
- Shows: startup info, keyboard events, IPC messages, button clicks
|
|
270
|
+
- Example (PowerShell): $env:MSGER_DEBUG=1; msger "Test"
|
|
271
|
+
- Zero performance impact when disabled
|
|
272
|
+
|
|
267
273
|
Notes:
|
|
268
274
|
- If no options provided, all non-option arguments are concatenated as message
|
|
269
275
|
- Press ESC to dismiss (returns button: "dismissed")
|
package/TODO.md
CHANGED
|
@@ -2,7 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
## Recent Session (2025-11-12) - Hash Option, F11 Fix, Button Response, Debug Mode
|
|
4
4
|
|
|
5
|
-
**Status:** ✅ COMPLETED - Version 0.1.
|
|
5
|
+
**Status:** ✅ COMPLETED - Version 0.1.91 (published to npm)
|
|
6
|
+
|
|
7
|
+
### Installation Status:
|
|
8
|
+
- ✅ Windows build successful (0.1.91)
|
|
9
|
+
- ✅ Published to npm as @bobfrankston/msger@0.1.91
|
|
10
|
+
- ⚠️ WSL Linux build failed (Rust compile error E0432)
|
|
11
|
+
- ⚠️ Global install pending (npm needs time to propagate new version)
|
|
12
|
+
- Note: WSL build issue needs investigation, Windows version fully functional
|
|
13
|
+
|
|
14
|
+
### Next Steps:
|
|
15
|
+
1. Wait ~5-10 minutes for npm to propagate version 0.1.91
|
|
16
|
+
2. Run `npm install -g @bobfrankston/msger` to install globally on Windows
|
|
17
|
+
3. Investigate WSL build error (likely missing import or dependency issue)
|
|
18
|
+
4. Optional: Manually install in WSL with `wsl npm install -g @bobfrankston/msger`
|
|
6
19
|
|
|
7
20
|
### What Was Implemented:
|
|
8
21
|
|