From f87522f106fc8471a864328cf1b484d27490a51b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sat, 14 Dec 2024 14:52:49 +0000 Subject: [PATCH 1/3] chore: update commit hash to f27f7bba5132346db18e70e514a6a6202d6ab634 --- app/commit.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/commit.json b/app/commit.json index 4f74a3ba..1fa201c1 100644 --- a/app/commit.json +++ b/app/commit.json @@ -1 +1 @@ -{ "commit": "4f02887565e13eeaabbfb6f699cbe089e802338f" } +{ "commit": "f27f7bba5132346db18e70e514a6a6202d6ab634" } From 5cb693c4158e25c581db519a4dc62e79be160b86 Mon Sep 17 00:00:00 2001 From: Ed McConnell Date: Sat, 14 Dec 2024 10:42:05 -0500 Subject: [PATCH 2/3] update readme --- README.md | 1 + app/commit.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 51264377..44852f61 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,7 @@ https://thinktank.ottomator.ai - ✅ Better prompt enhancing (@SujalXplores) - ✅ Attach images to prompts (@atrokhym) - ✅ Detect package.json and commands to auto install and run preview for folder and git import (@wonderwhy-er) +- ✅ Selection tool to target changes visually (@emcconnell) - ⬜ **HIGH PRIORITY** - Prevent Bolt from rewriting files as often (file locking and diffs) - ⬜ **HIGH PRIORITY** - Better prompting for smaller LLMs (code window sometimes doesn't start) - ⬜ **HIGH PRIORITY** - Run agents in the backend as opposed to a single model call diff --git a/app/commit.json b/app/commit.json index 1fa201c1..6f1b1111 100644 --- a/app/commit.json +++ b/app/commit.json @@ -1 +1 @@ -{ "commit": "f27f7bba5132346db18e70e514a6a6202d6ab634" } +{ "commit": "f87522f106fc8471a864328cf1b484d27490a51b" } From 483189ab46f5a91f13bd4baa6f251c0c3b24be78 Mon Sep 17 00:00:00 2001 From: Ed McConnell Date: Sat, 14 Dec 2024 10:42:28 -0500 Subject: [PATCH 3/3] update readme --- app/commit.json | 2 +- app/components/chat/BaseChat.tsx | 6 ++++-- app/lib/stores/workbench.ts | 1 - 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/app/commit.json b/app/commit.json index 6f1b1111..16c45399 100644 --- a/app/commit.json +++ b/app/commit.json @@ -1 +1 @@ -{ "commit": "f87522f106fc8471a864328cf1b484d27490a51b" } +{ "commit": "5cb693c4158e25c581db519a4dc62e79be160b86" } diff --git a/app/components/chat/BaseChat.tsx b/app/components/chat/BaseChat.tsx index 0ed6a30b..adbc06ca 100644 --- a/app/components/chat/BaseChat.tsx +++ b/app/components/chat/BaseChat.tsx @@ -425,15 +425,17 @@ export const BaseChat = React.forwardRef( } event.preventDefault(); - + if (isStreaming) { handleStop?.(); return; } + // ignore if using input method engine if (event.nativeEvent.isComposing) { - return + return; } + handleSendMessage?.(event); } }} diff --git a/app/lib/stores/workbench.ts b/app/lib/stores/workbench.ts index bbd537d4..0d46057d 100644 --- a/app/lib/stores/workbench.ts +++ b/app/lib/stores/workbench.ts @@ -297,7 +297,6 @@ export class WorkbenchStore { const action = artifact.runner.actions.get()[data.actionId]; - if (!action || action.executed) { return; }