From 07d5e18f58b3294fdbadd44803c7b27b5f39331a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Uhrbach?= Date: Mon, 26 Feb 2024 10:22:59 +0100 Subject: [PATCH] Add missing vscode command to configure the extension (f.e. the api key) --- CHANGELOG.md | 4 ++++ README.md | 4 ++++ package.json | 12 +++++------- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da4c2e0..bd0d722 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index cc9c83c..d03aafc 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/package.json b/package.json index 6b0d8cb..3ade019 100644 --- a/package.json +++ b/package.json @@ -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", @@ -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", @@ -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": {