Skip to content

Commit

Permalink
chore(intellij): bump intellij plugin version 1.2.0. (#1157)
Browse files Browse the repository at this point in the history
  • Loading branch information
icycodes authored Jan 3, 2024
1 parent 20e6211 commit 0977b78
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 63 deletions.
25 changes: 25 additions & 0 deletions clients/intellij/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## 1.2.0

### Features:

- Added support for partially accepting a completion.
- Use `Ctrl + Right` to accept the next word, use `Ctrl + Tab` to accept the next line.
- Keymap scheme can be selected or customized in the plugin settings page.
- Added support for setting Tabby server token in the plugin settings page.
- You can still configure the token in the agent config file, but the token set in plugin settings page will take precedence.
- A notification will now be displayed when the server requires a token.
- Removed support for automatically opening the authentication page and fetching the token when using Tabby Cloud.
- To connect to Tabby Cloud server, you need to manually set the token instead. The token already in use will remain usable.

### Fixes:

- Corrected invalid online documentation links.
- Resolved a bug that resulted in empty log files being generated even when the logging level is set to `silent`.
- Fixed bugs related to the experimental syntax-based post-processing.

## 1.1.2

### Fixes:

- Added support for IntelliJ Platform IDEs version 2023.3.x.

## 1.1.1

### Fixes:
Expand Down
2 changes: 1 addition & 1 deletion clients/intellij/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Tabby IntelliJ Platform plugin works with all [IntelliJ Platform IDEs](https://p
4. Open the settings by clicking on the Tabby plugin status bar item and select `Open Settings...`.
1. Fill in the server endpoint URL to connect the plugin to your Tabby server.
- If you are using default port `http://localhost:8080`, you can skip this step.
2. If your Tabby server requires an authentication token, set it in the [config file](https://tabby.tabbyml.com/docs/extensions/configurations).
2. If your Tabby server requires an authentication token, set your token in settings. Alternatively, you can set it in the [config file](https://tabby.tabbyml.com/docs/extensions/configurations).
3. Enter the node binary path into the designated field
- If node binary is already accessible via your `PATH` environment variable, you can skip this step.
- Remember to save the settings and restart the IDE if you made changes to this option.
Expand Down
2 changes: 1 addition & 1 deletion clients/intellij/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = "com.tabbyml"
version = "1.2.0-dev"
version = "1.2.0"

repositories {
mavenCentral()
Expand Down
120 changes: 60 additions & 60 deletions clients/intellij/node_scripts/tabby-agent.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion clients/intellij/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "intellij-tabby",
"version": "1.1.1",
"version": "1.2.0",
"description": "IntelliJ plugin for Tabby AI coding assistant.",
"repository": "https://github.com/TabbyML/tabby",
"scripts": {
Expand Down

0 comments on commit 0977b78

Please sign in to comment.