@akiojin/gwt 9.32.0 → 9.33.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
@@ -221,13 +221,14 @@ Agent session の隔離と再現性のため、gwt は各プロジェクトを
221
221
  └── .gwt/project.toml # gwt が管理するプロジェクトメタデータ
222
222
  ```
223
223
 
224
- Project Picker の `Clone from GitHub...` から clone した場合は自動でこの構成に
225
- なります。Clone modal では GitHub HTTPS / SSH URL を直接入力するか、`gh search
226
- repos` による repository 検索から候補を選択し、保存先の親フォルダを指定します。
227
- 新しいプロジェクトは `<parent>/<project>/` に作成され、`<project>.git/` bare
228
- リポジトリと initial worktree が配置されます。remote に `develop` が存在する
229
- 場合は `develop` worktree を作成し、存在しない場合は remote default branch を
230
- 使います。
224
+ Project Picker の `Clone from GitHub...` (タブ未選択時の全画面ピッカー) と、
225
+ トップツールバーの `Open Project ▾` split-button ドロップダウン (アクティブな
226
+ プロジェクトがある状態でも到達可能) のどちらからでも clone を開始できます。
227
+ clone modal では GitHub HTTPS / SSH URL を直接入力するか、`gh search repos`
228
+ による repository 検索から候補を選択し、保存先の親フォルダを指定します。新しい
229
+ プロジェクトは `<parent>/<project>/` に作成され、`<project>.git/` bare リポジトリ
230
+ と initial worktree が配置されます。remote に `develop` が存在する場合は
231
+ `develop` worktree を作成し、存在しない場合は remote default branch を使います。
231
232
 
232
233
  既存の Normal Git リポジトリ(プロジェクト直下に `.git/` がある通常レイアウト)
233
234
  は検出され、要望に応じて Nested Bare + Worktree 構成へマイグレーションできます。
package/README.md CHANGED
@@ -227,11 +227,13 @@ For isolation and repeatable agent sessions, gwt can manage each project as a
227
227
  └── .gwt/project.toml # gwt-managed project metadata
228
228
  ```
229
229
 
230
- `gwt` auto-creates this layout when you choose `Clone from GitHub...` in the
231
- Project Picker. The clone modal accepts a GitHub HTTPS/SSH URL or lets you
232
- search repositories through `gh search repos`, then asks for a destination
233
- parent folder. The new project is created at `<parent>/<project>/`, with a
234
- bare `<project>.git/` repository and an initial worktree on `develop` when it
230
+ `gwt` auto-creates this layout when you choose `Clone from GitHub...` from
231
+ either the Project Picker (shown when no tab is open) or the top toolbar's
232
+ `Open Project ▾` split-button dropdown (always reachable from an active
233
+ project). The clone modal accepts a GitHub HTTPS/SSH URL or lets you search
234
+ repositories through `gh search repos`, then asks for a destination parent
235
+ folder. The new project is created at `<parent>/<project>/`, with a bare
236
+ `<project>.git/` repository and an initial worktree on `develop` when it
235
237
  exists, otherwise on the remote default branch.
236
238
 
237
239
  Existing Normal Git repositories (`.git/` directly under the project
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akiojin/gwt",
3
- "version": "9.32.0",
3
+ "version": "9.33.0",
4
4
  "description": "Desktop GUI for Git worktree management and coding agent launch",
5
5
  "type": "module",
6
6
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "build": "cargo build --release -p gwt --bin gwt --bin gwtd",
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/project-clone-modal.js && node --check crates/gwt/web/board-surface.js && node --check crates/gwt/web/workspace-kanban-surface.js && node --check crates/gwt/web/theme-manager.js && node --check crates/gwt/web/theme-toggle.js && node --check crates/gwt/web/hotkey.js && node --check crates/gwt/web/operator-shell.js && node --check crates/gwt/web/focus-trap.js && node --check crates/gwt/web/window-docking.js && node --check crates/gwt/web/update-cta.js && node --check crates/gwt/web/terminal-context-menu.js && node --check crates/gwt/web/custom-agent-env-editor.js",
16
- "test:frontend-smoke": "node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs crates/gwt/web/__tests__/migration-modal.smoke.test.mjs crates/gwt/web/__tests__/project-clone-modal.smoke.test.mjs",
16
+ "test:frontend-smoke": "node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs crates/gwt/web/__tests__/migration-modal.smoke.test.mjs crates/gwt/web/__tests__/project-clone-modal.smoke.test.mjs crates/gwt/web/__tests__/open-project-split-button.smoke.test.mjs",
17
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__/theme-segmented.test.mjs crates/gwt/web/__tests__/hotkey.test.mjs crates/gwt/web/__tests__/index-settings-panel.test.mjs crates/gwt/web/__tests__/index-status-controller.test.mjs crates/gwt/web/__tests__/operator-chrome-structure.test.mjs crates/gwt/web/__tests__/operator-shell-runtime.test.mjs crates/gwt/web/__tests__/operator-shell-hover-reveal.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__/workspace-kanban-surface.test.mjs crates/gwt/web/__tests__/update-button.test.mjs crates/gwt/web/__tests__/window-docking.test.mjs crates/gwt/web/__tests__/terminal-context-menu.test.mjs crates/gwt/web/__tests__/terminal-viewport-reflow.test.mjs crates/gwt/web/__tests__/custom-agent-env-editor.test.mjs crates/gwt/web/__tests__/settings-system-tab.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",