summaryrefslogtreecommitdiff
path: root/extension
diff options
context:
space:
mode:
Diffstat (limited to 'extension')
-rw-r--r--extension/README.md15
-rw-r--r--extension/package-lock.json4
-rw-r--r--extension/package.json2
-rw-r--r--extension/react-app/src/components/Layout.tsx2
-rw-r--r--extension/react-app/src/redux/slices/serverStateReducer.ts3
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">
+
+[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](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>
+
![Editing with Continue](https://github.com/continuedev/continue/blob/main/readme.gif?raw=true)
+</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,