From e580a33780c01a2588cec934a913a3a2f613ed8f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 9 Aug 2024 14:48:09 -0300 Subject: [PATCH] copy --- HISTORY.md | 10 ++++++++++ aider/website/HISTORY.md | 10 ++++++++++ aider/website/docs/usage/commands.md | 2 +- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index a1062cb40..0337b1d1c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,16 @@ # Release history +### main branch + +- New `/clipboard` command to paste images or text from the clipboard, replaces `/add-clipboard-image`. +- Can now send `/commands` when [scripting aider](https://aider.chat/docs/scripting.html). +- Aider in docker image now provides correct command to update to latest version. +- Improved retries on API errors (was easy to test during Sonnet outage). +- Performance improvements for repo map calculation. +- `/tokens` now shows the active model. + + ### Aider v0.48.1 - Added `openai/gpt-4o-2024-08-06`. diff --git a/aider/website/HISTORY.md b/aider/website/HISTORY.md index cc612d201..05aaeab67 100644 --- a/aider/website/HISTORY.md +++ b/aider/website/HISTORY.md @@ -16,6 +16,16 @@ cog.out(text) # Release history +### main branch + +- New `/clipboard` command to paste images or text from the clipboard, replaces `/add-clipboard-image`. +- Can now send `/commands` when [scripting aider](https://aider.chat/docs/scripting.html). +- Aider in docker image now provides correct command to update to latest version. +- Improved retries on API errors (was easy to test during Sonnet outage). +- Performance improvements for repo map calculation. +- `/tokens` now shows the active model. + + ### Aider v0.48.1 - Added `openai/gpt-4o-2024-08-06`. diff --git a/aider/website/docs/usage/commands.md b/aider/website/docs/usage/commands.md index dda9b64c1..576cc3085 100644 --- a/aider/website/docs/usage/commands.md +++ b/aider/website/docs/usage/commands.md @@ -18,7 +18,7 @@ cog.out(get_help_md()) | **/ask** | Ask questions about the code base without editing any files | | **/chat-mode** | Switch to a new chat mode | | **/clear** | Clear the chat history | -| **/clipboard** | Add content from the clipboard to the chat (supports both text and images) | +| **/clipboard** | Add image/text from the clipboard to the chat (optionally provide a name for the image) | | **/commit** | Commit edits to the repo made outside the chat (commit message optional) | | **/diff** | Display the diff of the last aider commit | | **/drop** | Remove files from the chat session to free up context space |