From 3a2262429ae5e57824aa2fd2c802ad5c686cac38 Mon Sep 17 00:00:00 2001 From: Zhiming Ma Date: Fri, 18 Aug 2023 10:55:57 +0800 Subject: [PATCH] chore: bump VSCode extension version 0.3.0. (#361) --- clients/vscode/CHANGELOG.md | 8 ++++++++ clients/vscode/assets/walkthroughs/codeCompletion.md | 6 +++--- clients/vscode/package.json | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/clients/vscode/CHANGELOG.md b/clients/vscode/CHANGELOG.md index b269b15..c4f8927 100644 --- a/clients/vscode/CHANGELOG.md +++ b/clients/vscode/CHANGELOG.md @@ -1,3 +1,11 @@ +## 0.3.0 + +Features: + +- Added check to see if the editor inline suggestion is enabled. Notifies the user to enable it if it's not. +- Added timeout for auto completion requests. The default timeout is 5 seconds. Added statistics for completion response time and notifies the user if it is too slow. +- Supported setting HTTP request headers in `$HOME/.tabby/agent/config.toml`. The `Authorization` header can be used to set a token for self-hosted servers authorization. + ## 0.2.1 Fixes: diff --git a/clients/vscode/assets/walkthroughs/codeCompletion.md b/clients/vscode/assets/walkthroughs/codeCompletion.md index 96d3310..2ded6c1 100644 --- a/clients/vscode/assets/walkthroughs/codeCompletion.md +++ b/clients/vscode/assets/walkthroughs/codeCompletion.md @@ -14,7 +14,7 @@ When multiple choices are available, you can cycle through them by pressing `Alt You can select a keybinding profile in the [settings](command:tabby.openSettings), or customize your own [keybindings](command:tabby.openKeybindings). -| | Next Line | Full Completion | Next Word | +| | Next Line | Full Completion | Next Word | | :--------------------------------- | :-------- | :-------------- | :---------------- | -| _vscode-style_ | - | Tab | Ctrl + RightArrow | -| _tabby-style_
_(experimental)_ | Tab | Ctrl + Tab | Ctrl + RightArrow | +| _vscode-style_ | - | Tab | Ctrl + RightArrow | +| _tabby-style_
_(experimental)_ | Tab | Ctrl + Tab | Ctrl + RightArrow | diff --git a/clients/vscode/package.json b/clients/vscode/package.json index fd2bd83..c64a3f8 100644 --- a/clients/vscode/package.json +++ b/clients/vscode/package.json @@ -7,7 +7,7 @@ "repository": "https://github.com/TabbyML/tabby", "bugs": "https://github.com/TabbyML/tabby/issues", "license": "Apache-2.0", - "version": "0.2.1", + "version": "0.3.0", "keywords": [ "ai", "autocomplete",