@kenkaiiii/ggcoder 4.2.37 → 4.2.38

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.
@@ -198,8 +198,8 @@ export function InputArea({ onSubmit, onAbort, disabled = false, isActive = true
198
198
  }
199
199
  return;
200
200
  }
201
- // Ctrl+I — paste image from clipboard
202
- if (key.ctrl && input === "i") {
201
+ // Ctrl+V — paste image from clipboard
202
+ if (key.ctrl && input === "v") {
203
203
  getClipboardImage().then((img) => {
204
204
  if (img)
205
205
  setImages((prev) => [...prev, img]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kenkaiiii/ggcoder",
3
- "version": "4.2.37",
3
+ "version": "4.2.38",
4
4
  "type": "module",
5
5
  "description": "CLI coding agent with OAuth authentication for Anthropic and OpenAI",
6
6
  "license": "MIT",
@@ -36,8 +36,8 @@
36
36
  "string-width": "^8.2.0",
37
37
  "wrap-ansi": "^10.0.0",
38
38
  "zod": "^4.3.6",
39
- "@kenkaiiii/gg-ai": "4.2.37",
40
- "@kenkaiiii/gg-agent": "4.2.37"
39
+ "@kenkaiiii/gg-agent": "4.2.38",
40
+ "@kenkaiiii/gg-ai": "4.2.38"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/node": "^25.5.0",