Skip to content

Commit 9ed1ed6

Browse files
authored
Merge branch 'main' into fix-styled-div-layout
2 parents f71f856 + 2eafdff commit 9ed1ed6

File tree

16 files changed

+116
-42
lines changed

16 files changed

+116
-42
lines changed
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## 0.0.53 - 2024-07-10
2+
### Added
3+
* Support for .prompt files
4+
* New onboarding experience
5+
### Fixed
6+
* Indexing fixes from VS Code versions merged into IntelliJ
7+
* Improved codebase indexing reliability and testing
8+
* Fixes for autocomplete text positioning and timing
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
## 0.0.54 - 2024-07-13
2+
### Added
3+
* Partial autocomplete acceptance
4+
* Autocomplete status bar spinner
5+
### Fixed
6+
* Fixed duplicate completion bug and others

.changes/extensions/vscode/0.8.40.md

-12
This file was deleted.

.changes/extensions/vscode/0.8.42.md

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## 0.8.42 - 2024-07-02
2+
3+
### Added
4+
5+
- Support for Gemini 1.5 Pro
6+
- Link to code in the sidebar when using codebase retrieval
7+
- Smoother onboarding experience
8+
- .prompt files, a way of saving and sharing slash commands
9+
- Support for Claude 3.5 Sonnet, Deepseek Coder v2, and other new models
10+
- Support for comments in config.json
11+
- Specify multiple autocomplete models and switch between them
12+
- Improved bracket matching strategy reduces noisy completions
13+
14+
### Fixed
15+
16+
- Numerous reliability upgrades to codebase indexing

.changes/extensions/vscode/0.8.43.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.8.43 - 2024-07-08
2+
### Added
3+
* Improved indexing reliability and testing
4+
* Quick Actions: use CodeLens to quickly take common actions like adding docstrings

.changes/server/v0.1.104.md

-9
This file was deleted.

.changes/server/v0.1.99.md

-5
This file was deleted.

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
extensions/vscode/continue_rc_schema.json
2-
**/.continueignore
2+
**/.continueignore
3+
CHANGELOG.md

docs/docs/changelog.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ hide_table_of_contents: true
88
import VSCodeChangelog from "../../extensions/vscode/CHANGELOG.md";
99
import IntelliJChangelog from "../../extensions/intellij/CHANGELOG.md";
1010

11-
Below are the changelogs for the latest releases of the VSCode and IntelliJ extensions.
11+
Below are the changelogs for the latest releases of the VSCode and IntelliJ extensions. Prior to 2024-07-02, the changelogs do not reflect all updates.
1212

1313
import TOCInline from "@theme/TOCInline";
1414

docs/docs/setup/select-model.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ _We currently recommend the following open-source models:_
2121
- Unlimited GPU: `llama3-70b`
2222
- Limited GPU: `llama3-8B`
2323

24-
#### DeepSeek Coder from DeepSeek
24+
#### DeepSeek Coder v2 from DeepSeek
2525

26-
- Unlimited GPU: `deepseek-coder-33b`
27-
- Limited GPU: `deepseek-coder-6.7b`
26+
- Unlimited GPU: `deepseek-coder-v2:236b`
27+
- Limited GPU: `deepseek-coder-v2:16b`
2828

2929
_You can also use other open-source chat models by adding them to your `config.json`._
3030

@@ -61,10 +61,10 @@ Our current recommendation for autocomplete, if you are able to choose any model
6161

6262
_We currently recommend the following open-source models:_
6363

64-
#### DeepSeek Coder from DeepSeek
64+
#### DeepSeek Coder v2 from DeepSeek
6565

66-
- Unlimited GPU: `deepseek-coder-6.7b`
67-
- Limited GPU: `deepseek-coder-1.3b`
66+
- Unlimited GPU: `deepseek-coder-v2:16b`
67+
- Limited GPU: `deepseek-coder:6.7b` or `deepseek-coder:1.3b`
6868

6969
#### StarCoder 2 from Hugging Face
7070

extensions/intellij/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
55
and is generated by [Changie](https://github.com/miniscruff/changie).
66

7+
8+
## 0.0.54 - 2024-07-13
9+
10+
### Added
11+
12+
- Partial autocomplete acceptance
13+
- Autocomplete status bar spinner
14+
15+
### Fixed
16+
17+
- Fixed duplicate completion bug and others
18+
19+
## 0.0.53 - 2024-07-10
20+
21+
### Added
22+
23+
- Support for .prompt files
24+
- New onboarding experience
25+
26+
### Fixed
27+
28+
- Indexing fixes from VS Code versions merged into IntelliJ
29+
- Improved codebase indexing reliability and testing
30+
- Fixes for autocomplete text positioning and timing
31+
732
## 0.0.42 - 2024-04-12
833

934
### Added

extensions/vscode/CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
44
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
55
and is generated by [Changie](https://github.com/miniscruff/changie).
66

7-
## 0.8.40 - 2024-07-02
7+
## 0.8.43 - 2024-07-08
8+
9+
### Added
10+
11+
- Improved indexing reliability and testing
12+
- Quick Actions: use CodeLens to quickly take common actions like adding docstrings
13+
14+
## 0.8.42 - 2024-07-02
815

916
### Added
1017

extensions/vscode/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/vscode/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "continue",
33
"icon": "media/icon.png",
4-
"version": "0.9.186",
4+
"version": "0.8.43",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/continuedev/continue"
@@ -81,7 +81,7 @@
8181
},
8282
"continue.enableQuickActions": {
8383
"type": "boolean",
84-
"default": true,
84+
"default": false,
8585
"markdownDescription": "Enable the experimental Quick Actions feature. Read our walkthrough to learn about configuration and how to share feedback: [continue.dev › Walkthrough: Quick Actions (experimental)](https://docs.continue.dev/walkthroughs/quick-actions)"
8686
},
8787
"continue.enableTabAutocomplete": {
@@ -285,13 +285,13 @@
285285
"command": "continue.quickEditHistoryUp",
286286
"mac": "up",
287287
"key": "up",
288-
"when": "continue.quickEditHistoryFocused"
288+
"when": "false && continue.quickEditHistoryFocused"
289289
},
290290
{
291291
"command": "continue.quickEditHistoryDown",
292292
"mac": "down",
293293
"key": "down",
294-
"when": "continue.quickEditHistoryFocused"
294+
"when": "false && continue.quickEditHistoryFocused"
295295
},
296296
{
297297
"command": "continue.acceptVerticalDiffBlock",

extensions/vscode/src/commands.ts

-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ async function addHighlightedCodeToContext(
9191
if (selection.isEmpty) {
9292
return;
9393
}
94-
9594
// adjust starting position to include indentation
9695
const start = new vscode.Position(selection.start.line, 0);
9796
const range = new vscode.Range(start, selection.end);
+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import styled, { css, keyframes } from "styled-components";
2+
3+
const DEFAULT_DIAMETER = 6;
4+
5+
const blink = keyframes`
6+
0%, 100% {
7+
transform: scale(1);
8+
opacity: 1;
9+
}
10+
50% {
11+
opacity: 0.25;
12+
}
13+
`;
14+
15+
const blinkAnimation = css`
16+
animation: ${blink} 3s infinite;
17+
`;
18+
19+
const BlinkingDot = styled.div<{
20+
color: string;
21+
diameter?: number;
22+
shouldBlink?: boolean;
23+
}>`
24+
background-color: ${(props) => props.color};
25+
box-shadow: 0px 0px 2px 1px ${(props) => props.color};
26+
width: ${(props) => props.diameter ?? DEFAULT_DIAMETER}px;
27+
height: ${(props) => props.diameter ?? DEFAULT_DIAMETER}px;
28+
border-radius: 50%;
29+
border: 1px solid rgba(255, 255, 255, 0.75);
30+
margin: 0 2px;
31+
${(props) => (props.shouldBlink ?? false) && blinkAnimation};
32+
`;
33+
34+
export default BlinkingDot;

0 commit comments

Comments
 (0)