diff --git a/README.md b/README.md index 8ec354b..cae8030 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,17 @@ Must be using Git and it must be in your path. ## Extension Settings -See the Contributions tab above +|Name | Description +|-----|------------ +|_gitlens.blame.annotation.style_|Specifies the style of the blame annotations. Compact - groups annotations to limit the repetition and also adds author and date when possible. Expanded - shows an annotation on every line +|_gitlens.blame.annotation.sha_|Specifies whether the commit sha will be shown in the blame annotations. Applies only to the Expanded annotation style +|_gitlens.blame.annotation.author_|Specifies whether the committer will be shown in the blame annotations. Applies only to the Expanded annotation style +|_gitlens.blame.annotation.date_|Specifies whether the commit date will be shown in the blame annotations. Applies only to the Expanded annotation style +|_gitlens.blame.annotation.useCodeActions_|Specifies whether code actions (Diff with Working, Diff with Previous) will be provided for the selected line, when annotating. Not required as context menu options are always provided +|_gitlens.codeLens.recentChange.enabled_|Specifies whether the recent change CodeLens is shown +|_gitlens.codeLens.recentChange.command_|Specifies the command executed when the recent change CodeLens is clicked. Annotate - toggles blame annotations. Explorer - opens the blame explorer. History - opens a file history picker, which requires the Git History (git log) extension +|_gitlens.codeLens.authors.enabled_|Specifies whether the authors CodeLens is shown +|_gitlens.codeLens.authors.command_|Specifies the command executed when the authors CodeLens is clicked. Annotate - toggles blame annotations. Explorer - opens the blame explorer. History - opens a file history picker, which requires the Git History (git log) extension ## Known Issues @@ -30,6 +40,14 @@ See the Contributions tab above ## Release Notes +### 0.2.0 + + - Fixes [#1](https://github.com/eamodio/vscode-gitlens/issues/1) - Support blame on files outside the workspace repository + - Replaces blame regex parsing with a more robust parser + - Fixes failures with Diff with Previous command + - Fixes issues with blame explorer CodeLens when dealing with previous commits + - Fixes display issues with compact blame annotations (now skips blank lines) + ### 0.1.3 - Improved blame annotations, now with sha and author by default diff --git a/package.json b/package.json index 15501f3..8fa4e02 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gitlens", - "version": "0.1.3", + "version": "0.2.0", "author": { "name": "Eric Amodio", "email": "eamodio@gmail.com" @@ -162,10 +162,10 @@ "lodash": "^4.15.0", "moment": "^2.15.0", "spawn-rx": "^2.0.1", - "tmp": "^0.0.28" + "tmp": "^0.0.29" }, "devDependencies": { - "typescript": "^2.0.0", + "typescript": "^2.0.2", "vscode": "^0.11.17" }, "scripts": {