diff options
Diffstat (limited to 'extension')
-rw-r--r-- | extension/README.md | 15 | ||||
-rw-r--r-- | extension/package-lock.json | 4 | ||||
-rw-r--r-- | extension/package.json | 2 | ||||
-rw-r--r-- | extension/react-app/src/components/Layout.tsx | 2 | ||||
-rw-r--r-- | extension/react-app/src/redux/slices/serverStateReducer.ts | 3 |
5 files changed, 20 insertions, 6 deletions
diff --git a/extension/README.md b/extension/README.md index 69bcb1f9..4a2d7892 100644 --- a/extension/README.md +++ b/extension/README.md @@ -1,9 +1,22 @@ -# Continue +<h1 align="center">Continue</h1> + +<div align="center"> **[Continue](https://continue.dev/docs) is the open-source autopilot for software developmentāa [VS Code extension](https://marketplace.visualstudio.com/items?itemName=Continue.continue) that brings the power of ChatGPT to your IDE** +</div> + +<div align="center"> + +[](https://opensource.org/licenses/Apache-2.0) +<a target="_blank" href="https://discord.gg/vapESyrFmJ" style="background:none"> +<img src="https://img.shields.io/badge/discord-join-continue.svg?labelColor=191937&color=6F6FF7&logo=discord" /> +</a> +  +</div> + ## Task, not tab, auto-complete ### Get possible explainations diff --git a/extension/package-lock.json b/extension/package-lock.json index 9a1baa8e..20165a32 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.282", + "version": "0.0.287", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.282", + "version": "0.0.287", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index c059fb60..bdc3791d 100644 --- a/extension/package.json +++ b/extension/package.json @@ -14,7 +14,7 @@ "displayName": "Continue", "pricing": "Free", "description": "The open-source coding autopilot", - "version": "0.0.282", + "version": "0.0.287", "publisher": "Continue", "engines": { "vscode": "^1.67.0" diff --git a/extension/react-app/src/components/Layout.tsx b/extension/react-app/src/components/Layout.tsx index a2e54173..a3b1946a 100644 --- a/extension/react-app/src/components/Layout.tsx +++ b/extension/react-app/src/components/Layout.tsx @@ -46,7 +46,7 @@ const BottomMessageDiv = styled.div<{ displayOnBottom: boolean }>` padding: 12px; z-index: 100; box-shadow: 0px 0px 2px 0px ${vscForeground}; - max-height: 50vh; + max-height: 35vh; overflow: scroll; `; diff --git a/extension/react-app/src/redux/slices/serverStateReducer.ts b/extension/react-app/src/redux/slices/serverStateReducer.ts index 22f6935e..bd60f1c7 100644 --- a/extension/react-app/src/redux/slices/serverStateReducer.ts +++ b/extension/react-app/src/redux/slices/serverStateReducer.ts @@ -10,7 +10,8 @@ const initialState: FullState = { hide: false, description: `- Highlight code section and ask a question or give instructions - Use \`cmd+m\` (Mac) / \`ctrl+m\` (Windows) to open Continue - - Use \`/help\` to ask questions about how to use Continue`, + - Use \`/help\` to ask questions about how to use Continue + - [Customize Continue](https://continue.dev/docs/customization) (e.g. use your own API key) by typing '/config'.`, system_message: null, chat_context: [], manage_own_chat_context: false, |