Skip to content

Commit a21da95

Browse files
committed
0.2.0
1 parent aa678a9 commit a21da95

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

README.md

Lines changed: 16 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@ Automated git commit messages using GPT models via [gptcommit][1] for VS Code.
1111

1212
Note: Do NOT install `gptcommit` hook via `gptcommit install` under the root of your git repo.
1313

14+
## Supported Versions
15+
16+
| Extension Version | VS Code Version | gptcommit Version |
17+
| ----------------- | --------------- | ----------------- |
18+
| < 0.1.0 | 1.75+ | 0.1.16 |
19+
| 0.1.x | 1.70+ | 0.1.16 |
20+
| 0.2.0 | 1.70+ | 0.3.0 |
21+
1422
## Commands
1523

1624
Run via `Ctrl+Shift+P` or `Cmd+Shift+P`:
@@ -21,8 +29,11 @@ Run via `Ctrl+Shift+P` or `Cmd+Shift+P`:
2129
- `GPTCommit: Setup OpenAI API Key`
2230
Setup the OpenAI API Key. You can get the API key from [OpenAI][3]
2331

24-
- `GPTCommit: Try a different OpenAI model`
25-
Try a different OpenAI model. For a list of public OpenAI models, checkout the [OpenAI docs][4].
32+
- `GPTCommit: Use a different OpenAI model`
33+
Use a different OpenAI model. For a list of public OpenAI models, checkout the [OpenAI docs][4]. Default is now `gpt-3.5-turbo`.
34+
35+
- `GPTCommit: Set output language`
36+
Set the output language. Default is `en`.
2637

2738
## Extension Settings
2839

@@ -36,7 +47,9 @@ Run via `Ctrl+Shift+P` or `Cmd+Shift+P`:
3647

3748
## Advanced configuration
3849

39-
The configuration is saved at `~/.config/gptcommit/config.json`. You can edit it manually, but it's recommended to use commands inside VS Code to edit the configuration, unless you know what you are doing.
50+
Note that now all the configuration via the extension is saved in the `.git/gptcommit.toml` file. If you have to change advanced configuration, you can edit the `.git/gptcommit.toml` file directly, but make sure you know what you are doing.
51+
52+
If you want to use the configuration globally, you can copy the `.git/gptcommit.toml` file to `~/.config/gptcommit/config.toml`, or just the sections of the configuration you want to be used globally.
4053

4154
Also refer to the [gptcommit][1] documentation for more information.
4255

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "gptcommit",
33
"displayName": "vscode-gptcommit",
44
"description": "Automated git commit messages using GPT models",
5-
"version": "0.1.1",
5+
"version": "0.2.0",
66
"repository": {
77
"url": "https://github.com/pwwang/vscode-gptcommit"
88
},
@@ -44,7 +44,7 @@
4444
},
4545
{
4646
"command": "gptcommit.setOutputLanguage",
47-
"title": "GPTCommit: Set output language (default: en)"
47+
"title": "GPTCommit: Set output language"
4848
}
4949
],
5050
"menus": {

0 commit comments

Comments
 (0)