From 0185e02a923cba85e0ec7e638463ed6fc0b4bdcf Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 1 May 2024 09:14:53 -0700 Subject: [PATCH 1/3] updated favicon paths --- assets/icons/browserconfig.xml | 2 +- assets/icons/site.webmanifest | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/icons/browserconfig.xml b/assets/icons/browserconfig.xml index b3930d0f0..bfefbbfc2 100644 --- a/assets/icons/browserconfig.xml +++ b/assets/icons/browserconfig.xml @@ -2,7 +2,7 @@ - + #da532c diff --git a/assets/icons/site.webmanifest b/assets/icons/site.webmanifest index a1553eb86..123b55bba 100644 --- a/assets/icons/site.webmanifest +++ b/assets/icons/site.webmanifest @@ -3,12 +3,12 @@ "short_name": "", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/assets/icons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-384x384.png", + "src": "/assets/icons/android-chrome-384x384.png", "sizes": "384x384", "type": "image/png" } From 484f7e44c0b68efe17c970fadd1aec4543fbc5bc Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 1 May 2024 09:17:07 -0700 Subject: [PATCH 2/3] Updated HISTORY --- HISTORY.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index ed7cd9b35..9b5859c06 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,11 @@ # Release history +### v0.31.0 + +- Aider is now also AI pair programming in your browser! Use the `--browser` switch to launch am experimental browser based version of aider. +- Switch models during the chat with `/model ` and search the list of available models with `/model `. + ### v0.30.1 - Adding missing `google-generativeai` dependency From 2c0dff52d3f383be27f4ca1be2278e363ee0d0f1 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 1 May 2024 09:17:29 -0700 Subject: [PATCH 3/3] asking for code language in whole edit format confuses some models --- aider/coders/wholefile_prompts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/coders/wholefile_prompts.py b/aider/coders/wholefile_prompts.py index dda10fe3c..e410fdd9c 100644 --- a/aider/coders/wholefile_prompts.py +++ b/aider/coders/wholefile_prompts.py @@ -18,14 +18,14 @@ Once you understand the request you MUST: You MUST use this *file listing* format: path/to/filename.js -{fence[0]}javascript +{fence[0]} // entire file content ... // ... goes in between {fence[1]} Every *file listing* MUST use this format: - First line: the filename with any originally provided path -- Second line: opening {fence[0]} including the code language +- Second line: opening {fence[0]} - ... entire content of the file ... - Final line: closing {fence[1]}