Skip to content

Preview #1930

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 35 commits into from
Aug 5, 2024
Merged

Preview #1930

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
875ab4c
update package.json version
sestinj Jul 9, 2024
ff57b00
🪄 model dropdown, control plane (#1692)
sestinj Jul 9, 2024
1870787
skip extension tests
sestinj Jul 9, 2024
f747fe2
update package.json version
sestinj Jul 9, 2024
3ebd337
handlebars import
sestinj Jul 9, 2024
ed37dcf
cmd+I improvements (#1728)
sestinj Jul 12, 2024
ec2aa19
Dev (#1740)
sestinj Jul 16, 2024
75973ca
update jetbrains build
sestinj Jul 16, 2024
82ac619
jetbrains build update
sestinj Jul 16, 2024
62fa541
Dev (#1780)
sestinj Jul 19, 2024
11a5f78
fix tests (#1781)
sestinj Jul 19, 2024
7df690a
Dev (#1784)
Patrick-Erichsen Jul 19, 2024
e58fddc
test: skip failing tests
Patrick-Erichsen Jul 19, 2024
82db97e
Dev (#1807)
sestinj Jul 23, 2024
805984f
Improved walkDir performance (#1814)
sestinj Jul 23, 2024
9fd9ebf
config loading (#1820)
sestinj Jul 24, 2024
159295f
Improved indexing performance (#1845)
sestinj Jul 26, 2024
b3c484e
proxy updates (#1861)
sestinj Jul 29, 2024
18c4f8e
DeepSeek FIM Support (#1863)
sestinj Jul 29, 2024
9a9d776
update gradle version [skip ci] (#1865)
sestinj Jul 29, 2024
59f54e9
Merge branch 'main' into preview
sestinj Jul 29, 2024
00d19e6
fix: update CodebaseIndexer path (#1870)
alanwu4321 Jul 30, 2024
a5f9a0d
Fix VS Code settings (#1882)
sestinj Aug 1, 2024
579c5cd
Remove .prompts (#1883)
sestinj Aug 1, 2024
21e887d
git rm .prompts
sestinj Aug 1, 2024
eef928f
fix tests (#1884)
sestinj Aug 1, 2024
12205ac
fixes paste bug (#1899)
sestinj Aug 2, 2024
08f3f7b
fix failing test (#1903)
sestinj Aug 2, 2024
b95cfd8
actually skip broken test
sestinj Aug 2, 2024
460b7f7
skip again—succeeding locally
sestinj Aug 2, 2024
03040a0
Pre-release changes (#1927)
sestinj Aug 5, 2024
f733c2e
Pre-release changes (#1928)
sestinj Aug 5, 2024
69808ce
infoPopup (#1929)
sestinj Aug 5, 2024
d9b46ac
Merge branch 'main' into preview
sestinj Aug 5, 2024
78bfecf
merge fixes
sestinj Aug 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -125,19 +125,19 @@ jobs:

# 4. Run tests for the extension
# - name: Install Xvfb for Linux and run tests
# run: |
# sudo apt-get install -y xvfb # Install Xvfb
# Xvfb :99 & # Start Xvfb
# export DISPLAY=:99 # Export the display number to the environment
# cd extensions/vscode
# npm run test
# if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get install -y xvfb # Install Xvfb
Xvfb :99 & # Start Xvfb
export DISPLAY=:99 # Export the display number to the environment
cd extensions/vscode
npm run test
if: matrix.os == 'ubuntu-latest'

# - name: Run extension tests
# run: |
# cd extensions/vscode
# npm run test
# if: matrix.os != 'ubuntu-latest'
- name: Run extension tests
run: |
cd extensions/vscode
npm run test
if: matrix.os != 'ubuntu-latest'

# 5. Package the extension
- name: Package the extension
Expand Down
2 changes: 1 addition & 1 deletion extensions/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "continue",
"icon": "media/icon.png",
"author": "Continue Dev, Inc",
"version": "0.8.44",
"version": "0.9.194",
"repository": {
"type": "git",
"url": "https://github.com/continuedev/continue"
Expand Down
42 changes: 20 additions & 22 deletions gui/src/components/mainInput/TipTapEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -828,29 +828,27 @@ function TipTapEditor(props: TipTapEditorProps) {
event.stopPropagation();
}}
/>
{(isEditorFocused || props.isMainInput) && (
<InputToolbar
showNoContext={optionKeyHeld}
hidden={!(editorFocusedRef.current || props.isMainInput)}
onAddContextItem={() => {
if (editor.getText().endsWith("@")) {
} else {
editor.commands.insertContent("@");
}
}}
onEnter={onEnterRef.current}
onImageFileSelected={(file) => {
handleImageFile(file).then(([img, dataUrl]) => {
const { schema } = editor.state;
const node = schema.nodes.image.create({ src: dataUrl });
editor.commands.command(({ tr }) => {
tr.insert(0, node);
return true;
});
<InputToolbar
showNoContext={optionKeyHeld}
hidden={!(editorFocusedRef.current || props.isMainInput)}
onAddContextItem={() => {
if (editor.getText().endsWith("@")) {
} else {
editor.commands.insertContent("@");
}
}}
onEnter={onEnterRef.current}
onImageFileSelected={(file) => {
handleImageFile(file).then(([img, dataUrl]) => {
const { schema } = editor.state;
const node = schema.nodes.image.create({ src: dataUrl });
editor.commands.command(({ tr }) => {
tr.insert(0, node);
return true;
});
}}
/>
)}
});
}}
/>
{showDragOverMsg &&
modelSupportsImages(
defaultModel.provider,
Expand Down
Loading