Skip to content

Commit

Permalink
Add missing vscode command to configure the extension (f.e. the api key)
Browse files Browse the repository at this point in the history
  • Loading branch information
soerenuhrbach committed Feb 26, 2024
1 parent 49b09e6 commit 07d5e18
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to the "vscode-deepl" extension will be documented in this f

The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### 1.0.13

- Add missing vscode command to configure the extension (f.e. the api key)

### 1.0.12

- Use official 'deepl-node' package to interact with the DeepL api.
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,10 @@ Dont use this extension if you dont agree with their privacy policy!

## Release Notes

### 1.0.13

- Add missing vscode command to configure the extension (f.e. the api key)

### 1.0.12

- Use official 'deepl-node' package to interact with the DeepL api.
Expand Down
12 changes: 5 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-deepl",
"displayName": "Translate with DeepL for Visual Studio Code",
"description": "Easily translate into more than 25 languages directly from your visual studio code editor using DeepL.",
"version": "1.0.12",
"version": "1.0.13",
"keywords": [
"DeepL",
"Translate",
Expand Down Expand Up @@ -42,12 +42,6 @@
{
"title": "DeepL",
"properties": {
"deepl.apiKey": {
"type": "string",
"default": "",
"deprecationMessage": "For security reasons the api key will no longer be stored in the configuration. Configured api keys will be automatically migrated to the vscode secret store and removed from the config. The config option will be removed in future releases!",
"markdownDescription": "The key is used to authenticate with the DeepL API. [See offical documentation](https://www.deepl.com/docs-api/accessing-the-api/authentication/)"
},
"deepl.formality": {
"type": "string",
"default": "default",
Expand Down Expand Up @@ -198,6 +192,10 @@
"command": "deepl.translateBelow",
"title": "DeepL: Translate from ... to ... below the original text",
"shortTitle": "Translate below the original ..."
},
{
"command": "deepl.configure",
"title": "DeepL: Configure extension"
}
],
"menus": {
Expand Down

0 comments on commit 07d5e18

Please sign in to comment.