projmux 0.4.4 → 0.4.5

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-ko.md +13 -0
  2. package/README.md +14 -0
  3. package/package.json +5 -5
package/README-ko.md CHANGED
@@ -149,6 +149,14 @@ PROJMUX_PROJDIR=/your/path projmux tmux apply
149
149
  env 가 살아있는 첫 실행이 `~/.config/projmux/projdir` 에 값을 기록하므로,
150
150
  이후 새 shell 에서 env 없이도 같은 루트가 유지됩니다.
151
151
 
152
+ 저장된 값은 `projmux settings > Project Picker > Project Root` 에서도 관리할
153
+ 수 있습니다. 이 화면은 현재 effective primary root 와 source
154
+ (`PROJMUX_PROJDIR`, `@projmux_projdir`, saved, not configured)를 보여주고,
155
+ saved 값이 env/tmux 값에 shadow 되는 상황을 따로 표시합니다. 경로를 직접
156
+ 입력하거나 현재 project context 를 저장하거나 saved 값을 지울 수 있습니다.
157
+ Project Root 가 설정되지 않은 경우 직접 입력 prompt 는 `$HOME` 을 수정 가능한
158
+ fallback 으로 채웁니다. 저장하기 전까지는 effective root 로 간주하지 않습니다.
159
+
152
160
  ### 소스에서 빌드
153
161
 
154
162
  ```sh
@@ -230,6 +238,11 @@ root를 depth 3까지 스캔하므로 약한 probe 밖의 프로젝트도 picker
230
238
  탐색 root를 영구적으로 커스터마이즈하려면 Project Picker 섹션의 다음 항목을
231
239
  사용하세요:
232
240
 
241
+ - `Project Root` - saved primary root 를 설정/변경/해제합니다. Project Root 는
242
+ primary project context 로 쓰는 한 개의 루트이며, `PROJMUX_PROJDIR` env 와
243
+ tmux `@projmux_projdir` 값이 있으면 saved 값보다 우선됩니다. root 가
244
+ 설정되지 않았을 때 직접 입력 prompt 는 `$HOME` 을 미리 채워 picker 를 열 수
245
+ 있게 하지만, 저장 전에는 암묵적인 saved root 로 쓰지 않습니다.
233
246
  - `+ Add Workdir...` - 디렉터리 하나를 saved workdirs 목록에 누적 추가.
234
247
  - `Workdirs` - 저장된 workdir 검토/삭제. 환경변수 `PROJMUX_MANAGED_ROOTS` /
235
248
  `TMUX_SESSIONIZER_ROOTS`가 설정되어 있으면 read-only 행으로 함께 표시되어
package/README.md CHANGED
@@ -147,6 +147,15 @@ The first invocation that sees the env var writes
147
147
  `~/.config/projmux/projdir`, so later shells without the env var still
148
148
  resolve the same root.
149
149
 
150
+ You can also manage the saved value interactively with
151
+ `projmux settings > Project Picker > Project Root`. That screen shows the
152
+ effective primary root and source (`PROJMUX_PROJDIR`, `@projmux_projdir`,
153
+ saved, or not configured), shows when a saved value is shadowed by env/tmux,
154
+ and lets you set a path directly, use the current project context, or clear the
155
+ saved value. When no Project Root is configured, the direct-set prompt starts
156
+ with `$HOME` as an editable fallback; it is not treated as the effective root
157
+ until you save it.
158
+
150
159
  ### From source
151
160
 
152
161
  ```sh
@@ -222,6 +231,11 @@ so a project keeps the same tmux session name across launches.
222
231
  For permanent search-root customization, the Project Picker section also
223
232
  includes:
224
233
 
234
+ - `Project Root` - set, change, or clear the saved primary root. This is the
235
+ one root used as the primary project context; env `PROJMUX_PROJDIR` and tmux
236
+ `@projmux_projdir` override the saved value until unset. If no root is
237
+ configured, the direct-set prompt pre-fills `$HOME` so the picker remains
238
+ usable without inventing an implicit saved root.
225
239
  - `+ Add Workdir...` - append a single directory to the saved workdirs list.
226
240
  - `Workdirs` - review and remove saved workdirs. The same picker also surfaces
227
241
  any active `PROJMUX_MANAGED_ROOTS` / `TMUX_SESSIONIZER_ROOTS` env values as
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "projmux",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "description": "tmux project session manager",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/crevissepartners/projmux#readme",
@@ -22,10 +22,10 @@
22
22
  "LICENSE"
23
23
  ],
24
24
  "optionalDependencies": {
25
- "@projmux/darwin-arm64": "0.4.4",
26
- "@projmux/darwin-x64": "0.4.4",
27
- "@projmux/linux-arm64": "0.4.4",
28
- "@projmux/linux-x64": "0.4.4"
25
+ "@projmux/darwin-arm64": "0.4.5",
26
+ "@projmux/darwin-x64": "0.4.5",
27
+ "@projmux/linux-arm64": "0.4.5",
28
+ "@projmux/linux-x64": "0.4.5"
29
29
  },
30
30
  "scripts": {
31
31
  "package:npm": "scripts/package-npm.sh",