4.6 KiB
4.6 KiB
1.1.0
Features:
- Changed the default keymap for triggering inline completion to
Ctrl + \, to avoid conflicts when new UI enabled. - Added a
Check Connectionbutton in settings page to check the connection to the server. - Added notification with error messages when the connection to the server fails.
- Added a loading status indicator when fetching completions in automatic trigger mode.
- Updated the online help links, including online documentation, the Tabby Slack community, and the GitHub repository.
- Added an option to mute warning messages for the slow completion response time.
- Updated the config.toml file to include new configuration options:
server.authandcompletion.timeout. - Added experimental features aimed at fine-tuning completion quality. These features are disabled by default but can be enabled by setting the corresponding config flag to
truein theconfig.tomlfile, include:completion.prompt.experimentalStripAutoClosingCharacters: Strip auto-closing brackets and quotes in prompt suffix, to generate more lines in FIM mode.postprocess.limitScope.indentation.experimentalKeepBlockScopeWhenCompletingLine: Use the block scope instead of line scope when using indentation to limit the completion scope and the completion is continuing the current line.postprocess.limitScope.experimentalSyntax: Use syntax parser to limit the completion scope.postprocess.calculateReplaceRange.experimentalSyntax: Use syntax parser to calculate the completion replace range, to avoid duplicated auto-closing brackets and quotes.
Fixes:
- Fixes a bug causing the CJK characters to be rendered incorrectly on Windows.
1.0.0
Changes:
- Added support for completion replacement. If a completion will replace the suffix characters after the cursor, these characters will be hidden.
- Added auto-closing character check to improve inline completion experience. This improvement ensures proper handling of scenarios involving missing or duplicate closing characters.
- Optimized completion caching for better efficiency, especially when a completion is partially accepted.
- Updated the config.toml template file by removing deprecated options.
0.6.0
Features:
- Added an option to switch between automatic/manual completion trigger mode. This option replaces the old enable/disable inline completion option. You can use the
Alt + \hotkey to trigger inline completion in manual mode. - Added an option to specify the Node.js binary path.
- Added an action to open online help documents quickly in status bar item menu.
Fixes:
- Adjusted notifications for
highCompletionTimeoutRateandslowCompletionResponseTimeto be displayed only once per session. - Improved anonymous usage tracking, reduced the frequency of data submissions. Your contribution in sending anonymous usage data is greatly appreciated. However, if you prefer not to participate, you have the option to opt out of this feature within the plugin settings.
0.5.0
Incompatible Changes:
- Node.js version requirement is now v18+.
- System proxy environment variables are now ignored, including
http_proxy,https_proxy,all_proxyandno_proxy. Before this change, proxy environment variables are processed, but requests will fail due to lack of supporting for https over http proxy and socks proxy.
Fixes:
- Fixed a bug that causes auto-completion requests cannot be cancelled.
- Migrated Tabby cloud authorization tokens and anonymous usage tracking id from the old data directory to the new one.
0.4.0
Features:
- Relocated the user data directory from
$HOME/.tabby/agentto$HOME/.tabby-client/agentto avoid conflicts with Tabby server data. Note that the old data will not be migrated automatically. Please update the config file manually if you have made changes in the old path. - Added a template config file for Tabby client agent located at
$HOME/.tabby-client/agent/config.toml. - Added check for Node.js installation and notify the user if it is not valid.
- Improved code suggestion filtering by indentation context. Suggestions now prioritize completing the current line or logic block, preventing excessively long suggestions.
- Added adaptive completion debouncing for auto-completion requests.
- 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.
Fixes:
- Fixed a bug that caused the plugin throw errors when initializing without user data file.
0.2.0
Features:
- Added support for Tabby Cloud hosted server authorization.
Fixes:
- Fixed inlay text rendering issues.