From bf25c1f6d9a84c991e90ab90997c8c56aed58a0b Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 19 Sep 2023 17:19:07 +0000 Subject: ci: 🏷 Update PyPI version [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- continuedev/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/continuedev/pyproject.toml b/continuedev/pyproject.toml index 0cea8343..40be7bb5 100644 --- a/continuedev/pyproject.toml +++ b/continuedev/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "continuedev" -version = "0.1.33" +version = "0.1.34" description = "" authors = ["Nate Sesti "] readme = "README.md" -- cgit v1.2.3-70-g09d2 From 5a9819bcfc5c8a472d3df65a797044dbb8449d5d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 19 Sep 2023 17:30:41 +0000 Subject: ci: 💚 Update package.json version [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- extension/package-lock.json | 4 ++-- extension/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/extension/package-lock.json b/extension/package-lock.json index c6611b74..f3478cf4 100644 --- a/extension/package-lock.json +++ b/extension/package-lock.json @@ -1,12 +1,12 @@ { "name": "continue", - "version": "0.0.393", + "version": "0.0.394", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "continue", - "version": "0.0.393", + "version": "0.0.394", "license": "Apache-2.0", "dependencies": { "@electron/rebuild": "^3.2.10", diff --git a/extension/package.json b/extension/package.json index 3ff186fe..895b5b2a 100644 --- a/extension/package.json +++ b/extension/package.json @@ -1,7 +1,7 @@ { "name": "continue", "icon": "media/terminal-continue.png", - "version": "0.0.393", + "version": "0.0.394", "repository": { "type": "git", "url": "https://github.com/continuedev/continue" -- cgit v1.2.3-70-g09d2 From 807b016fd6ce505c8c7470e9e3ed018ebde5ceb3 Mon Sep 17 00:00:00 2001 From: Joseph Mearman Date: Wed, 20 Sep 2023 10:08:30 +0100 Subject: The shebang must be on the first line. Delete blanks and move comments. See SC1128. (#495) * The shebang must be on the first line. Delete blanks and move comments. See SC1128. https://github.com/koalaman/shellcheck/wiki/SC1128 * In POSIX sh, 'source' in place of '.' is undefined. https://github.com/koalaman/shellcheck/wiki/SC2039 --- build.sh | 2 +- install-dependencies.sh | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/build.sh b/build.sh index d7e5aeda..c9dd60f6 100644 --- a/build.sh +++ b/build.sh @@ -8,7 +8,7 @@ rm -rf continuedev/.venv # 2. Create a new virtual environment and activate it python3 -m venv env -source env/bin/activate +. env/bin/activate # 3. Install the required packages pip install -r continuedev/requirements.txt diff --git a/install-dependencies.sh b/install-dependencies.sh index b6060a98..ba350dea 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -1,4 +1,3 @@ - #!/bin/bash # This is used in a task in .vscode/tasks.json # Start developing with: -- cgit v1.2.3-70-g09d2 From 3c1dce7defdfc7ddb1b90f1d24190cbaf33c1da4 Mon Sep 17 00:00:00 2001 From: LangLangBart <92653266+LangLangBart@users.noreply.github.com> Date: Wed, 20 Sep 2023 11:20:34 +0200 Subject: docs: note for JRE (#494) * docs: note for JRE use the note/warning syntax for colored symbols https://github.com/orgs/community/discussions/16925 * chore: use line breaks for limit of 90 chars for both notes --- continuedev/README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/continuedev/README.md b/continuedev/README.md index 542274b5..b6f87cb0 100644 --- a/continuedev/README.md +++ b/continuedev/README.md @@ -23,7 +23,11 @@ Start it by running the following commands: Once you've validated that this works, you'll often want to use a debugger, in which case we've provided a launch configuration for VS Code in `.vscode/launch.json`. To start the debugger in VS Code, ensure that the workspace directory is the root of the `continue` repo, then press F5. -> Note: To start the debugger, you'll have to select the poetry Python interpreter (`/path-to-poetry-venv/bin/python3`) in the bottom right of the VS Code window. If you don't see this, you may have to install the [Python extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python). +> [!NOTE] +> To start the debugger, you'll have to select the poetry Python interpreter +> (`/path-to-poetry-venv/bin/python3`) in the bottom right of the VS Code window. If you +> don't see this, you may have to install the [Python +> extension](https://marketplace.visualstudio.com/items?itemName=ms-python.python). ## Scripts @@ -65,6 +69,15 @@ Run this command to use the install script cd continue/extension/scripts && python3 install_from_source.py ``` +> [!IMPORTANT] +> Ensure you have a Java Runtime Environment (JRE) installed. Verify this by typing `java +> -version` in your command prompt or terminal. If a version number appears, you're set. +> If not, download and install a JRE from Oracle's website or through a package manager, +> for example Homebrew. +> ```sh +> brew install openjdk@11 +> ``` + # Understanding the codebase - [Continue Server README](./README.md): learn about the core of Continue, which can be downloaded as a [PyPI package](https://pypi.org/project/continuedev/) -- cgit v1.2.3-70-g09d2