@akiojin/gwt 9.18.0 → 9.19.0

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.ja.md CHANGED
@@ -237,6 +237,7 @@ bare リポジトリを作り直し、各 worktree を新レイアウトに再
237
237
  - 背景ドラッグでキャンバスを移動
238
238
  - `Tile` で表示中のウィンドウをグリッド整列
239
239
  - `Stack` でタイトルバーを残したまま重ねて表示
240
+ - `Align` でウィンドウサイズを変えずにグリッド整列
240
241
  - `Cmd/Ctrl+Shift+Right` と `Cmd/Ctrl+Shift+Left` でフォーカス切替
241
242
  - フォーカスされたウィンドウは中央へ寄ります
242
243
 
@@ -254,7 +255,8 @@ Overlay / Drawer モーダル / フローティングウィンドウ の全ク
254
255
 
255
256
  OS の `prefers-color-scheme` に追従しつつ、 Project Bar の **Theme** トグルで
256
257
  `auto → dark → light → auto` を循環できます。 選択はブラウザストレージに
257
- 永続化され、 再起動後も維持されます。 xterm 端末パネルは overall theme に
258
+ 永続化され、 再起動後も維持されます。 xterm の端末本文は可読性のため
259
+ Dark Operator palette に固定し、端末 window の chrome は overall theme に
258
260
  追従します。 `prefers-reduced-motion: reduce` を有効にすると Living Telemetry
259
261
  の pulse rim・Status Strip の ticking・Mission Briefing intro が静止表現に
260
262
  縮退します。 `forced-colors: active` (Windows High Contrast / macOS Increase
package/README.md CHANGED
@@ -239,6 +239,7 @@ confirmation modal with three actions:
239
239
  - Pan the canvas by dragging the background
240
240
  - Use `Tile` to arrange windows on a grid
241
241
  - Use `Stack` to cascade windows with overlap
242
+ - Use `Align` to arrange windows on a grid without changing their size
242
243
  - Use `Cmd/Ctrl+Shift+Right` and `Cmd/Ctrl+Shift+Left` to cycle focus; the
243
244
  focused window is recentered
244
245
 
@@ -258,7 +259,8 @@ single token system that ships in two flagship themes:
258
259
  The active theme follows your OS `prefers-color-scheme`, but the **Theme**
259
260
  toggle in the Project Bar lets you cycle `auto → dark → light → auto`. The
260
261
  choice is persisted in browser storage and survives restarts. xterm terminal
261
- panes follow the overall theme automatically. `prefers-reduced-motion: reduce`
262
+ content stays on the Dark Operator palette for readability, while the terminal
263
+ window chrome follows the overall theme. `prefers-reduced-motion: reduce`
262
264
  disables the Living Telemetry pulse rim, status strip ticking, and Mission
263
265
  Briefing intro reveal so the UI stays usable in motion-sensitive environments.
264
266
  `forced-colors: active` (Windows High Contrast / macOS Increase Contrast)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akiojin/gwt",
3
- "version": "9.18.0",
3
+ "version": "9.19.0",
4
4
  "description": "Desktop GUI for Git worktree management and coding agent launch",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,7 +14,7 @@
14
14
  "test": "cargo test -p gwt-core -p gwt --all-features",
15
15
  "test:frontend-bundle": "node --check crates/gwt/web/app.js && node --check crates/gwt/web/branch-cleanup-modal.js && node --check crates/gwt/web/migration-modal.js && node --check crates/gwt/web/theme-manager.js && node --check crates/gwt/web/hotkey.js && node --check crates/gwt/web/operator-shell.js && node --check crates/gwt/web/focus-trap.js",
16
16
  "test:frontend-smoke": "node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs crates/gwt/web/__tests__/migration-modal.smoke.test.mjs",
17
- "test:frontend-unit": "node --test crates/gwt/web/__tests__/contrast.test.mjs crates/gwt/web/__tests__/theme-manager.test.mjs crates/gwt/web/__tests__/hotkey.test.mjs crates/gwt/web/__tests__/operator-chrome-structure.test.mjs crates/gwt/web/__tests__/board-surface.test.mjs crates/gwt/web/__tests__/focus-trap.test.mjs crates/gwt/web/__tests__/kanban-structure.test.mjs crates/gwt/web/__tests__/kanban-dnd.test.mjs crates/gwt/web/__tests__/kanban-drawer.test.mjs",
17
+ "test:frontend-unit": "node --test crates/gwt/web/__tests__/contrast.test.mjs crates/gwt/web/__tests__/theme-manager.test.mjs crates/gwt/web/__tests__/hotkey.test.mjs crates/gwt/web/__tests__/operator-chrome-structure.test.mjs crates/gwt/web/__tests__/board-surface.test.mjs crates/gwt/web/__tests__/focus-trap.test.mjs crates/gwt/web/__tests__/kanban-structure.test.mjs crates/gwt/web/__tests__/kanban-dnd.test.mjs crates/gwt/web/__tests__/kanban-drawer.test.mjs crates/gwt/web/__tests__/update-button.test.mjs",
18
18
  "test:visual": "playwright test --config crates/gwt/playwright/playwright.config.ts",
19
19
  "test:release-assets": "node scripts/test_release_assets.cjs",
20
20
  "test:release-flow": "bash scripts/check-release-flow.sh",