projmux 0.6.2 → 0.6.4
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 +3 -3
- package/docs/agent-workflow.md +22 -9
- package/docs/architecture.md +24 -0
- package/docs/cli.md +23 -19
- package/docs/configuration.md +71 -53
- package/docs/globalization.md +244 -0
- package/docs/hooks.md +7 -5
- package/docs/install.md +14 -11
- package/docs/keybindings.md +159 -309
- package/docs/native-picker-no-fzf-poc.md +8 -4
- package/docs/native-picker-parity.md +4 -4
- package/docs/notify-queue.md +8 -6
- package/docs/session-restore.md +20 -1
- package/docs/settings-ia.md +22 -5
- package/docs/statusbar.md +25 -12
- package/docs/testing.md +3 -2
- package/docs/theme-palette.md +105 -0
- package/docs/tmux-surface-inventory.md +794 -0
- package/docs/usage-tracking.md +4 -4
- package/package.json +5 -5
package/docs/usage-tracking.md
CHANGED
|
@@ -124,10 +124,10 @@ Output degrades through six tiers as `--max-width` shrinks:
|
|
|
124
124
|
5. Single-letter labels (`C 5h:80% weekly:30%`).
|
|
125
125
|
6. Hard rune-truncate with trailing `…`.
|
|
126
126
|
|
|
127
|
-
The age indicator
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
report).
|
|
127
|
+
The age indicator stays muted as data gets older: dim grey below 1h, then
|
|
128
|
+
muted grey at 1h and beyond. Warning and critical colors are reserved for
|
|
129
|
+
usage thresholds rather than cache age. Codex opts out of the indicator
|
|
130
|
+
because the rollout file is always near-current (no throttle gap to report).
|
|
131
131
|
|
|
132
132
|
### Statusbar usage popup
|
|
133
133
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projmux",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.4",
|
|
4
4
|
"description": "tmux project session manager",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/crevissepartners/projmux#readme",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"LICENSE"
|
|
25
25
|
],
|
|
26
26
|
"optionalDependencies": {
|
|
27
|
-
"@projmux/darwin-arm64": "0.6.
|
|
28
|
-
"@projmux/darwin-x64": "0.6.
|
|
29
|
-
"@projmux/linux-arm64": "0.6.
|
|
30
|
-
"@projmux/linux-x64": "0.6.
|
|
27
|
+
"@projmux/darwin-arm64": "0.6.4",
|
|
28
|
+
"@projmux/darwin-x64": "0.6.4",
|
|
29
|
+
"@projmux/linux-arm64": "0.6.4",
|
|
30
|
+
"@projmux/linux-x64": "0.6.4"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"package:npm": "scripts/package-npm.sh",
|