-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into completion_provider_replacement_diffpattern
- Loading branch information
Showing
477 changed files
with
14,837 additions
and
8,522 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## 0.0.92 - 2025-02-26 | ||
### Fixed | ||
* Off-screen rendering to solve white flash on load and lack of changing cursor type | ||
* OSR-related fixes for non-Mac users | ||
* Fixes for inline edit in JetBrains |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
## 1.0.0 - 2025-02-26 | ||
### Added | ||
* Introduces hub.continue.dev | ||
* Improved theme matching | ||
### Fixed | ||
* Fixes interference between SonarQube and Continue autocomplete | ||
* Numerous reliability improvements |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## 1.0.0 - 2025-02-26 | ||
### Added | ||
* Introduces hub.continue.dev | ||
* Improved apply quality | ||
### Fixed | ||
* Numerous reliability improvements |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
- id: check | ||
working-directory: . | ||
run: | | ||
if [[ "${{ github.event.release.tag_name }}" == v0.9.*-vscode ]]; then | ||
if [[ "${{ github.event.release.tag_name }}" == v1.1.*-vscode ]]; then | ||
echo "should_run=true" >> $GITHUB_OUTPUT | ||
else | ||
echo "should_run=false" >> $GITHUB_OUTPUT | ||
|
@@ -204,7 +204,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
needs: | ||
- build | ||
if: github.event.inputs.publish_build == 'true' | ||
if: github.event_name != 'workflow_dispatch' || github.event.inputs.publish_build == 'true' | ||
permissions: | ||
contents: write | ||
steps: | ||
|
@@ -217,8 +217,8 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
- name: Pull latest changes | ||
run: git pull origin main | ||
- name: Pull latest changes from release | ||
run: git fetch origin ${{ github.ref }} && git checkout ${{ github.ref }} | ||
|
||
# 1. Download the artifacts | ||
- uses: actions/download-artifact@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.